build_libxcb() { HERE=`pwd` BUILDDEPS="compiletc.tcz libpthread-stubs.tcz libxslt.tcz" #DEPS= su tc -c "scm-load -iw python-2.7.scm" for I in `echo "$BUILDDEPS"`; do su tc -c "tce-load -i "$I"" || su tc -c "tce-load -iw "$I"" done . ./xcb-proto-sc.inc || exit 1 PKGPATH=$1 export LDFLAGS="-L$PKGPATH/lib" export CPPFLAGS="-I$PKGPATH/include" export PATH="$PKGPATH/localbin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" ldconfig if [ ! -f "$TMPDIR"/xcb-proto ]; then build_xcb-proto "$PKGPATH" || exit 1 fi tar xvf libxcb-1.9.tar.bz2 || exit 1 cd libxcb-1.9 || exit 1 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/libxcb }