#NEEDS=libffi-sc.inc build_atk() { HERE=`pwd` NAME=atk VER=2.3.3 BUILDDEPS="perl5.tcz python.tcz compiletc.tcz gettext.tcz" #DEPS="libffi if [ ! -f atk-2.3.3.tar.xz ]; then wget http://ftp.gnome.org/pub/gnome/sources/atk/2.3/atk-2.3.3.tar.xz fi . ./glib2-sc.inc . ./libffi-sc.inc 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" export CPPFLAGS="-I$PKGPATH/include" export PATH="$PKGPATH/bin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" if [ ! -f "$TMPDIR"/libffi ]; then build_libffi "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/glib2 ]; then build_glib2 "$PKGPATH" || exit 1 fi tar xvf atk-2.3.3.tar.xz || exit 1 cd atk-2.3.3 || exit 1 ./configure --prefix="$PKGPATH" || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/atk }