# HG changeset patch # User Eric Joseph-Alexandre # Date 1226151074 0 # Node ID 148182ebcbeaf3a810e5f506c3f462aff2e9e5bd # Parent bcbd2a8e11a16d31b0c69cb55512b8d60a7e94c5 Add babl, babl-dev, gegl, gegl-dev. Pave the road to Gimp 2.6 diff -r bcbd2a8e11a1 -r 148182ebcbea babl-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/babl-dev/receipt Sat Nov 08 13:31:14 2008 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="babl-dev" +VERSION="0.0.22" +CATEGORY="development" +SHORT_DESC="pixel format translation library dev files." +MAINTAINER="erjo@slitaz.org" +DEPENDS="babl" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://gegl.org/babl/" +WANTED="babl" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} + diff -r bcbd2a8e11a1 -r 148182ebcbea babl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/babl/receipt Sat Nov 08 13:31:14 2008 +0000 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="babl" +VERSION="0.0.22" +CATEGORY="system-tools" +SHORT_DESC="pixel format translation library§." +MAINTAINER="erjo@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://gegl.org/babl/" +WGET_URL="ftp://ftp.gtk.org/pub/babl/0.0/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --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/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/babl-0.0 $fs/usr/lib +} + diff -r bcbd2a8e11a1 -r 148182ebcbea gegl-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gegl-dev/receipt Sat Nov 08 13:31:14 2008 +0000 @@ -0,0 +1,25 @@ +# SliTaz package receipt. + +PACKAGE="gegl-dev" +VERSION="0.0.20" +CATEGORY="development" +SHORT_DESC="Generic Graphics Library dev files" +MAINTAINER="erjo@slitaz.org" +DEPENDS="gegl" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://gegl.org/" +WANTED="gegl" + + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/gegl-0.0 + + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/lib/gegl-0.0/*.*a $fs/usr/lib/gegl-0.0 + cp -a $_pkg/usr/include $fs/usr +} + diff -r bcbd2a8e11a1 -r 148182ebcbea gegl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gegl/receipt Sat Nov 08 13:31:14 2008 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="gegl" +VERSION="0.0.20" +CATEGORY="system-tools" +SHORT_DESC="Generic Graphics Library" +MAINTAINER="erjo@slitaz.org" +DEPENDS="babl" +BUILD_DEPENDS="babl-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://gegl.org/" +WGET_URL="ftp://ftp.gimp.org/pub/gegl/0.0/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --disable-docs \ + $CONFIGURE_ARGS && \ + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/gegl + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/gegl-0.0/*.so* $fs/usr/lib/gegl + +} +