build_fontconfig() { . ./expat-sc.inc HERE=`pwd` BUILDEPS="compiletc.tcz libtool.tcz libtool-dev.tcz freetype_base-dev.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" export CPPFLAGS="-I$PKGPATH/include" export PATH="$PKGPATH/localbin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" echo LD_LIBRARY_PATH="$PKGPATH/lib" if [ ! -f "$TMPDIR"/expat ]; then build_expat "$PKGPATH" || exit 1 fi ldconfig tar xvf fontconfig-2.10.1.tar.bz2 || exit 1 cd fontconfig-2.10.1 || exit 1 libtoolize -f autoreconf -f ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/fontconfig }