build_beaver() { HERE=`pwd` BUILDDEPS="compiletc.tcz intltool.tcz docbook_xsl.tcz automake.tcz libxml2-bin.tcz libxslt.tcz libtool.tcz libtool-dev.tcz gettext.tcz Xorg-7.6-dev.tcz Xorg-7.6-lib.tcz" #DEPS= for I in `echo "$BUILDDEPS"`; do su tc -c "tce-load -i "$I"" || su tc -c "tce-load -iw "$I"" done PKGPATH=$1 export LDFLAGS="-L$PKGPATH/lib -L/apps/gtk2/lib" export CPPFLAGS="-I$PKGPATH/include -I/apps/gtk2/include" export PATH="$PKGPATH/bin:/apps/gtk2/bin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:/apps/gtk2/lib/pkgconfig" if [ ! -f "$TMPDIR"/beaver-gtk1 ]; then tar xvf beaver-0.4.1.tar.bz2 || exit 1 cd beaver-0.4.1 || exit 1 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/beaver fi }