#NEEDS=libffi-sc.inc build_atk() { HERE=`pwd` NAME=atk VER=2.2.0 BUILDDEPS="perl5.tcz python.tcz compiletc.tcz gettext.tcz" #DEPS="libffi . ./glib2-sc.inc || exit 1 . ./libffi-sc.inc || exit 1 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/localbin:$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 ldconfig tar xvf atk-2.6.0.tar.xz || exit 1 cd atk-2.6.0 || exit 1 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/atk }