# HG changeset patch # User Christophe Lincoln # Date 1197981794 -3600 # Node ID 04d4bd7596676709a5013f2b433819e35fe60fb8 # Parent dc2dd4d7fffb20679ed9dfb08f4d52d61f8d7c87 Add : fontconfig and freetype diff -r dc2dd4d7fffb -r 04d4bd759667 fontconfig-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fontconfig-dev/receipt Tue Dec 18 13:43:14 2007 +0100 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="fontconfig-dev" +VERSION="2.4.2" +CATEGORY="devel" +SHORT_DESC="Font configuration utilities and library devel files." +MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://www.fontconfig.org/wiki/" +WANTED="fontconfig" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r dc2dd4d7fffb -r 04d4bd759667 fontconfig/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fontconfig/receipt Tue Dec 18 13:43:14 2007 +0100 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="fontconfig" +VERSION="2.4.2" +CATEGORY="x-window" +SHORT_DESC="Font configuration utilities and library." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.fontconfig.org/wiki/" +WGET_URL="http://fontconfig.org/release/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --sysconfdir=/etc --prefix=/usr \ + --mandir=/usr/share/man --localstatedir=/var \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/etc $fs + cp -a $_pkg/var $fs + # Strip cmds. + strip -s $fs/usr/bin/* + strip -s $fs/usr/lib/* +} diff -r dc2dd4d7fffb -r 04d4bd759667 freetype-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/freetype-dev/receipt Tue Dec 18 13:43:14 2007 +0100 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="freetype-dev" +VERSION="2.3.5" +CATEGORY="devel" +SHORT_DESC="Freetype font engine devel files." +MAINTAINER="pankso@slitaz.org" +WANTED="freetype" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/share $fs/usr +} diff -r dc2dd4d7fffb -r 04d4bd759667 freetype/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/freetype/receipt Tue Dec 18 13:43:14 2007 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="freetype" +VERSION="2.3.5" +CATEGORY="x-window" +SHORT_DESC="Freetype font engine." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.freetype.org/" +WGET_URL="http://download.savannah.gnu.org/releases/freetype/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --sysconfdir=/etc --prefix=/usr \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + strip -s $fs/usr/lib/*.so* +}