#!/usr/bin/perl -w # # Project Builder configuration file # For project pb ;-) # # $Id$ # use strict; use Exporter(); use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); @ISA = qw(Exporter); # global vars are here @EXPORT_OK = qw(%defpkgdir %extpkgdir %versions &pb_init); use vars @EXPORT_OK; sub pb_init { # Root of the project to build # needs at least 2 levels of dir as in the upper # other dirs will be created and used $ENV{'PBROOT'}="$ENV{'HOME'}/pb/svn/devel"; # If CVS, gives the way to login #$ENV{'CVSVAR'}=":pserver:anonymous@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe"; # Optional CVS login if project managed under CVS #$ENV{'CVSVAR'}=":pserver:anonymous@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe"; # List of pkg to build by default %defpkgdir = { "projectbuilder" => "pb", "projectbuilder-doc" => "pb-doc", } # List of additional pkg to build when all is called %extpkgdir = { } # Valid version names %version = {}; } 1;