# HG changeset patch # User Eric Joseph-Alexandre # Date 1203816589 -3600 # Node ID f808fda230ba6daeb8d52a861d7b12449efd9032 # Parent 39ab194bbbef1bfb062e93505720955a38994b20 ADD: lzo, lzo-dev, startup-notification, startup-notification-dev diff -r 39ab194bbbef -r f808fda230ba inkscape/receipt --- a/inkscape/receipt Fri Feb 22 14:36:45 2008 +0100 +++ b/inkscape/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -6,7 +6,7 @@ SHORT_DESC="Vector drawing application." MAINTAINER="pankso@slitaz.org" DEPENDS="gc gtk+ libxslt libsigc++ glibmm gtkmm libxml2 libpng popt" -BUILD_DEPENDS="gc-dev gtk+-dev libxslt-dev libsigc++-dev glibmm-dev gtkmm-dev" +BUILD_DEPENDS="gc-dev gtk+-dev libxslt-dev libsigc++-dev glibmm-dev gtkmm-dev popt-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.inkscape.org/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" diff -r 39ab194bbbef -r f808fda230ba linux/receipt --- a/linux/receipt Fri Feb 22 14:36:45 2008 +0100 +++ b/linux/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -14,15 +14,14 @@ { cd $src # lzma and boot patch from pascal - patch -p1 < ../stuff/boot-kernel.u - patch -p1 < ../stuff/$PACKAGE-lzma-$VERSION.u - patch -p1 < ../stuff/decompress_unlzma.u + patch -Np1 < ../stuff/boot-kernel.u + patch -Np1 < ../stuff/$PACKAGE-lzma-$VERSION.u + patch -Np1 < ../stuff/decompress_unlzma.u make mrproper - cp ../stuff/$PACKAGE-$VERSION-slitaz.config .config - patch -p1 < ../stuff/config-acpi-$VERSION.u - make oldconfig - make bzImage - make modules + cp ../stuff/$PACKAGE-$VERSION-slitaz-acpi.config .config + make oldconfig && \ + make bzImage && \ + make modules &&\ make INSTALL_MOD_PATH=$PWD/_pkg modules_install } diff -r 39ab194bbbef -r f808fda230ba lzo-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lzo-dev/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -0,0 +1,22 @@ +# SliTaz package receipt. + +PACKAGE="lzo" +VERSION="2.02" +CATEGORY="system-tools" +SHORT_DESC="Data compression developpement library " +MAINTAINER="Erjo " +DEPENDS="lzo" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WANTED="lzo" +WEB_SITE="http://www.oberhumer.com/opensource/lzo/download/" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + strip -s $fs/usr/lib/*.a +} + diff -r 39ab194bbbef -r f808fda230ba lzo/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lzo/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="lzo" +VERSION="2.02" +CATEGORY="system-tools" +SHORT_DESC="Data compression library" +MAINTAINER="Erjo " +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.oberhumer.com/opensource/lzo/download/" +WGET_URL="http://www.oberhumer.com/opensource/lzo/download/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --enable-shared $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 -s $fs/usr/lib/*.so* +} + diff -r 39ab194bbbef -r f808fda230ba portmap/receipt --- a/portmap/receipt Fri Feb 22 14:36:45 2008 +0100 +++ b/portmap/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -1,16 +1,15 @@ # SliTaz package receipt. PACKAGE="portmap" -VERSION="5beta" +VERSION="6.0" CATEGORY="network" SHORT_DESC="RPC portmapper" MAINTAINER="Erjo " DEPENDS="" -TARBALL="${PACKAGE}_${VERSION}.tar.gz" -WEB_SITE="http://www.linuxfromscratch.org/blfs/view/stable/basicnet/portmap.html" -WGET_URL="ftp://ftp.porcupine.org/pub/security/${TARBALL}" +TARBALL="${PACKAGE}-${VERSION}.tgz" +WEB_SITE="http://neil.brown.name/portmap/" +WGET_URL="http://neil.brown.name/portmap/$TARBALL" -src=${PACKAGE}_${VERSION} # rules to configure and make the package. compile_rules() @@ -20,14 +19,9 @@ src=${PACKAGE}_${VERSION} cd $src - # Applying some patches - # see Beyond Linux From Scratch for details. - patch -Np1 -i ../stuff/portmap-5beta-compilation_fixes-3.patch - patch -Np1 -i ../stuff/portmap-5beta-glibc_errno_fix-1.patch - patch -Np1 -i ../stuff/portmap-5beta-disable-tcp_wrapper.patch - # Build - make + # Disabling TCP_WRAPPER with NO_TCP_WRAPPER variable + NO_TCP_WRAPPER=1 make } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -41,22 +35,18 @@ cp -a $src/pmap_dump $fs/usr/sbin cp -a $src/pmap_set $fs/usr/sbin cp -a $src/portmap $fs/usr/sbin + strip -s $fs/usr/sbin/* - mkdir -p $fs/etc - cp -a stuff/init.d $fs/etc + mkdir -p $fs/etc/init.d + install -g root -o root -m 0755 stuff/init.d/portmap $fs/etc/init.d + + } post_install() { - local root - root=$1 - echo "Processing some post-install commands..." - - chown root.root $root/etc/init.d/portmap - chmod 0755 $root/etc/init.d/portmap - # Post message when installing. echo -e "\nTo starts $PACKAGE server you can run :\n" echo "/etc/init.d/$PACKAGE start" diff -r 39ab194bbbef -r f808fda230ba startup-notification-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/startup-notification-dev/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -0,0 +1,25 @@ +# SliTaz package receipt. + +PACKAGE="startup-notification-dev" +VERSION="0.9" +CATEGORY="x-windows" +SHORT_DESC="Startup notification protocol developpement files" +MAINTAINER="Erjo " +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WANTED="startup-notification" +WEB_SITE="http://freedesktop.org/software/startup-notification/releases/" + + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/include + + 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 + + strip -s $fs/usr/lib/*.a +} diff -r 39ab194bbbef -r f808fda230ba startup-notification/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/startup-notification/receipt Sun Feb 24 02:29:49 2008 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="startup-notification" +VERSION="0.9" +CATEGORY="x-windows" +SHORT_DESC="Startup notification protocol" +MAINTAINER="Erjo " +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://freedesktop.org/software/startup-notification/releases/" +WGET_URL="http://freedesktop.org/software/startup-notification/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure -C --prefix=/usr $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 -s $fs/usr/lib/*.so* +} +