# HG changeset patch # User Christophe Lincoln # Date 1197982132 -3600 # Node ID 8e5c96401d01741d248da8461d852efccc4ac3d3 # Parent ad5e33e4dad7702860100910470d30be609812dd Add : jpeg, libpng, tiff-* and xterm diff -r ad5e33e4dad7 -r 8e5c96401d01 jpeg-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jpeg-dev/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="jpeg-dev" +VERSION="6b" +CATEGORY="x-window" +SHORT_DESC="JPEG images libs." +MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://www.ijg.org/" +WANTED="jpeg" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/include + cp -a $src/libjpeg.la $fs/usr/lib + cp -a $src/libjpeg.a $fs/usr/lib + cp -a $src/jconfig.h $fs/usr/include + cp -a $src/jerror.h $fs/usr/include + cp -a $src/jmorecfg.h $fs/usr/include + cp -a $src/jpegint.h $fs/usr/include + cp -a $src/jpeglib.h $fs/usr/include +} diff -r ad5e33e4dad7 -r 8e5c96401d01 jpeg/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jpeg/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="jpeg" +VERSION="6b" +CATEGORY="x-window" +SHORT_DESC="JPEG images libs." +MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://www.ijg.org/" +TARBALL="jpegsrc.v6b.tar.gz" +WGET_URL="http://www.ijg.org/files/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --enable-shared --prefix=/usr \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/bin + cp -a $src/.libs/*.so* $fs/usr/lib + cp $src/.libs/cjpeg $fs/usr/bin + cp $src/.libs/djpeg $fs/usr/bin + cp $src/.libs/jpegtran $fs/usr/bin + strip -s $fs/usr/*/* +} diff -r ad5e33e4dad7 -r 8e5c96401d01 libpng-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libpng-dev/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="libpng-dev" +VERSION="1.2.20" +CATEGORY="x-window" +SHORT_DESC="PNG images library devel files." +MAINTAINER="pankso@slitaz.org" +WANTED="libpng" +WEB_SITE="http://libpng.org/pub/png/libpng.html" + +# 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 ad5e33e4dad7 -r 8e5c96401d01 libpng/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libpng/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="libpng" +VERSION="1.2.20" +CATEGORY="x-window" +SHORT_DESC="PNG images library." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://libpng.org/pub/png/libpng.html" +WGET_URL="$SF_MIRROR/libpng/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --enable-shared --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/bin $fs/usr/lib + cp -a $_pkg/usr/lib/libpng12.so* $fs/usr/lib + cp -a $_pkg/usr/bin/libpng12* $fs/usr/bin + strip -s $fs/usr/lib/*.so* +} diff -r ad5e33e4dad7 -r 8e5c96401d01 tiff-apps/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tiff-apps/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="tiff-apps" +VERSION="3.8.2" +CATEGORY="x-window" +SHORT_DESC="TIFF images manipulation cli applications. (Check tiff for libs)." +MAINTAINER="pankso@slitaz.org" +WANTED="tiff" +WEB_SITE="http://www.remotesensing.org/libtiff/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} diff -r ad5e33e4dad7 -r 8e5c96401d01 tiff-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tiff-dev/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="tiff-dev" +VERSION="3.8.2" +CATEGORY="x-window" +SHORT_DESC="TIFF images libs devel files. (Check tiff-apps for utilities)." +MAINTAINER="pankso@slitaz.org" +WANTED="tiff" +WEB_SITE="http://www.remotesensing.org/libtiff/" + +# 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/include $fs/usr +} diff -r ad5e33e4dad7 -r 8e5c96401d01 tiff/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tiff/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="tiff" +VERSION="3.8.2" +CATEGORY="x-window" +SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.remotesensing.org/libtiff/" +WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$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 + strip --strip-unneeded $fs/usr/lib/*.so* +} diff -r ad5e33e4dad7 -r 8e5c96401d01 xterm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xterm/receipt Tue Dec 18 13:48:52 2007 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="xterm" +VERSION="229" +CATEGORY="x-window" +SHORT_DESC="X Terminal emulator." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg" +TARBALL="$PACKAGE-$VERSION.tgz" +WEB_SITE="http://invisible-island.net/xterm/" +WGET_URL="ftp://invisible-island.net/xterm/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --sysconfdir=/etc \ + --mandir=/usr/share/man --localstatedir=/var \ + --with-app-defaults=/usr/share/X11/app-defaults \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/X11 $fs/usr/share + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + strip -s $fs/usr/bin/* +}