build_gegl() { HERE=`pwd` NAME=gegl VER=0.1.8 BUILDDEPS="compiletc.tcz" #DEPS= . ./babl-sc.inc || exit 1 if [ ! -f gegl-0.1.8.tar.bz2 ]; then wget ftp://ftp.gtk.org/pub/gegl/0.1/gegl-0.1.8.tar.bz2 || exit 1 fi 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"/babl ]; then build_babl "$PKGPATH" || exit 1 fi tar xvf gegl-0.1.8.tar.bz2 || exit 1 cd gegl-0.1.8 || exit 1 ./configure --prefix="$PKGPATH" || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/gegl }