Wed, 14 Jan 2009 15:59:12 +0100
Correct and improve many buildconf and code logic blocks. In particular:
1. Document potential problems building with current binutils releases.
2. Document the flawed webkit and explain its temporary exclusion.
3. Document the edition of Qt which is built and installed.
4. Remove the Solaris x11_supdir logic as it is no longer found.
5. Correct several .pr[io] files including QMAKE_CXXFLAGS and INCPATH,
which previously caused preexisting Qt installations to deliver
erroneous old include and library logic instead of relying on
that of the currently building package. -I/opkg/include is now
placed at the end of the compile statements.
6. Don't trust the QMAKE_[INC|LIB]DIR_X11 identifiers in qmake.conf.
7. Allow more 64-bit builds and more properly identify the platform.
8. Place plugins (which are shared objects) in lib instead of share.
9. Build components as plugins when possible if with_shared is enabled.
10. Translate German text to English to be more consistent.
11. Instead of removing the pkgconfig directory of with_shared builds,
place it in a child directory useful for shared building.
12. Document the nonstandard shared build directory structure,
including using the hidden pkgconfig directory (PKG_CONFIG_PATH.)
13. Change %doc to specify files rather than directories in the RPM DB.
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