Changeset 18977
- Timestamp:
- Aug 8, 2008, 3:12:17 PM (18 years ago)
- Location:
- trunk/psconfig
- Files:
-
- 2 edited
-
INSTALL (modified) (4 diffs)
-
psconfig.bash.in (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/INSTALL
r17404 r18977 45 45 if [ -f /home/kiawe/eugene/psconfig/psconfig.csh ]; then 46 46 alias psconfig='source /home/kiawe/eugene/psconfig/psconfig.bash' 47 # In bash, can't use an alias in the same file that defines it, so need to 48 # expand it here explicitly to make 'controller host add' work in pantasks 49 source /home/kiawe/eugene/psconfig/psconfig.bash default 47 50 else 48 51 alias psconfig='echo psconfig not available' 49 52 fi 50 psconfig default53 51 54 52 55 Though, in your case, "/home/kiawe/eugene/psconfig/" will be replaced … … 88 91 at: 89 92 90 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2. 5.tgz91 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2. 5.tgz93 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2.6.1.tgz 94 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2.6.1.tgz 92 95 93 96 These should be installed so they will be available in the user's … … 103 106 Perl modules, and can be used to install them in the appropriate user 104 107 location in the psconfig system. The command defaults to the latest 105 perl installation table (eg, tagsets/ipp-2. 5.perl).108 perl installation table (eg, tagsets/ipp-2.6.1.perl). 106 109 107 110 pscheckperl … … 135 138 external libraries and perl modules from: 136 139 137 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2. 5.tgz138 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2. 5.tgz140 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2.6.1.tgz 141 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2.6.1.tgz 139 142 140 143 It should be possible to build the full IPP installation by issuing -
trunk/psconfig/psconfig.bash.in
r16124 r18977 7 7 8 8 if (( $# == 0 )); then 9 /bin/csh $PSCONFDIR/psconfig.csh9 /bin/csh -f $PSCONFDIR/psconfig.csh 10 10 return 0 11 11 fi … … 17 17 18 18 if [[ "$1" == "--list" ]]; then 19 /bin/csh $PSCONFDIR/psconfig.csh --list19 /bin/csh -f $PSCONFDIR/psconfig.csh --list 20 20 return 0 21 21 fi 22 22 23 23 version=$1 24 psconfigure=`/bin/csh $PSCONFDIR/psconfig.csh --psconfigure $version`25 psautogen=`/bin/csh $PSCONFDIR/psconfig.csh --psautogen $version`26 psperlbuild=`/bin/csh $PSCONFDIR/psconfig.csh --psperlbuild $version`24 psconfigure=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfigure $version` 25 psautogen=`/bin/csh -f $PSCONFDIR/psconfig.csh --psautogen $version` 26 psperlbuild=`/bin/csh -f $PSCONFDIR/psconfig.csh --psperlbuild $version` 27 27 alias psconfigure=$psconfigure 28 28 alias psautogen=$psautogen … … 30 30 31 31 # psconfig env variables 32 export PSCONFDIR=`/bin/csh $PSCONFDIR/psconfig.csh --psconfdir $version`33 export PSVERSION=`/bin/csh $PSCONFDIR/psconfig.csh --psversion $version`32 export PSCONFDIR=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfdir $version` 33 export PSVERSION=`/bin/csh -f $PSCONFDIR/psconfig.csh --psversion $version` 34 34 35 35 # environment variables 36 export PATH=`/bin/csh $PSCONFDIR/psconfig.csh --path $version`37 export ARCH=`/bin/csh $PSCONFDIR/psconfig.csh --arch $version`38 export LD_LIBRARY_PATH=`/bin/csh $PSCONFDIR/psconfig.csh --ld_library_path $version`39 export PKG_CONFIG_PATH=`/bin/csh $PSCONFDIR/psconfig.csh --pkg_config_path $version`40 export ACLOCAL_FLAGS=`/bin/csh $PSCONFDIR/psconfig.csh --aclocal_flags $version`41 export PERL5LIB=`/bin/csh $PSCONFDIR/psconfig.csh --perl5lib $version`36 export PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --path $version` 37 export ARCH=`/bin/csh -f $PSCONFDIR/psconfig.csh --arch $version` 38 export LD_LIBRARY_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --ld_library_path $version` 39 export PKG_CONFIG_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --pkg_config_path $version` 40 export ACLOCAL_FLAGS=`/bin/csh -f $PSCONFDIR/psconfig.csh --aclocal_flags $version` 41 export PERL5LIB=`/bin/csh -f $PSCONFDIR/psconfig.csh --perl5lib $version`
Note:
See TracChangeset
for help on using the changeset viewer.
