Changeset 3586
- Timestamp:
- 03/04/09 07:10:30 (12 months ago)
- Location:
- pcbsd/trunk/system-overlay/PCBSD
- Files:
-
- 3 added
- 1 modified
-
Scripts/runports.sh (modified) (1 diff)
-
images/runports.png (added)
-
local/kde4/share/applications/kde4/pcbsdmakeports.desktop (added)
-
local/kde4/share/applications/kde4/pcbsdrunports.desktop (added)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/system-overlay/PCBSD/Scripts/runports.sh
r3566 r3586 1 1 #!/bin/tcsh 2 # Helper script which can be sourced when we need to work with the 2 # Helper script which can be sourced when we need to work with the 3 3 # the default FreeBSD Ports tree 4 4 ############################################################################ 5 5 6 setenv PATH "/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/local/kde4/bin" 6 setenv PATH "/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/local/kde4/bin" 7 7 8 8 unsetenv LD_ELF_HINTS_PATH 9 9 10 10 alias h history 25 11 alias j jobs -l 12 alias la ls -a 13 alias lf ls -FA 14 alias ll ls -lA 15 alias ls ls -G 11 alias j jobs -l 12 alias la ls -a 13 alias lf ls -FA 14 alias ll ls -lA 15 alias ls ls -G 16 16 17 17 # A righteous umask 18 umask 22 18 umask 22 19 19 20 20 setenv CLICOLOR true 21 setenv EDITOR vi 22 setenv PAGER more 21 setenv EDITOR vi 22 setenv PAGER more 23 23 setenv BLOCKSIZE K 24 24 25 25 26 clear 27 echo "You may now run 'make' or use programs in the FreeBSD Ports tree" 28 29 /bin/tcsh -f 26 clear 27 setenv USER `whoami` 28 if ( $USER != "root" ) then 29 echo "Running as user $USER. You may now run programs in the FreeBSD Ports tree" 30 else 31 echo "Running as 'root'. You may now run 'make' n the FreeBSD Ports tree" 32 endif
