openpkg/dot.bash_login

Sun, 29 May 2011 16:29:06 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sun, 29 May 2011 16:29:06 +0200
changeset 344
e33c1efbd60f
child 428
f880f219c566
permissions
-rw-r--r--

Update, correct, improve build configuration and packaging logic.
Update to new version of vendor software, bump copyright date, remove implicit
gcc dependency, add comments for Trolltech bug tracking, correct enforced
dynamic library linkage, and install mysterious process stub binary.

     1 ##
     2 ##  @l_prefix@/.bash_login -- Local Bash Login Script
     3 ##
     5 #   provide user and host information in default prompt
     6 PS1="\u@\h\$ "
     8 #   environment permissions
     9 umask 022
    10 ulimit -c 16384
    12 #   history functionality
    13 shopt -s histappend
    14 HISTSIZE=100
    15 HISTFILESIZE=100
    17 #   various additional variables
    18 export TMPDIR=/tmp
    19 export BLOCKSIZE=1024
    21 #   activate the bootstrapping Bourne-Shell
    22 #   environment of the OpenPKG hierarchy
    23 eval `@l_prefix@/bin/openpkg rc --eval openpkg env`
    25 #   make sure some non-standard but usually
    26 #   important executable directories are active
    27 test -d /usr/ccs/bin   && PATH="$PATH:/usr/ccs/bin"
    28 test -d /usr/local/bin && PATH="$PATH:/usr/local/bin"
    30 #   initially adjust $PWD to symbolic path
    31 cd $HOME
    33 #   path to bash environment init script
    34 BASH_ENV=$HOME/.bashrc
    36 #   source the standard environment script
    37 . $BASH_ENV

mercurial