# HG changeset patch # User Pascal Bellard # Date 1381579473 0 # Node ID 8267887ae7af56438074d87964ecbc8446fdb63d # Parent e5384ace4df269467c0afcfc616b8c306e4f6397 Add wimlib diff -r e5384ace4df2 -r 8267887ae7af apache-mod-perl/receipt --- a/apache-mod-perl/receipt Fri Oct 04 09:55:59 2013 +0000 +++ b/apache-mod-perl/receipt Sat Oct 12 12:04:33 2013 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="apache-mod-perl" -VERSION="2.0.5" +VERSION="2.0.7" CATEGORY="network" SHORT_DESC="PERL module for Apache" MAINTAINER="erjo@slitaz.org" @@ -18,8 +18,11 @@ compile_rules() { cd $src - perl Makefile.PL MP_APXS=/usr/bin/apxs && \ - make && \ + sed -i 's/c->remote_ip/r->useragent_ip/' \ + src/modules/perl/modperl_interp.c + perl Makefile.PL MP_APXS=/usr/bin/apxs \ + MP_APR_CONFIG=/usr/bin/apr-1-config && + make && make DESTDIR=$DESTDIR install } diff -r e5384ace4df2 -r 8267887ae7af memtest/stuff/pack --- a/memtest/stuff/pack Fri Oct 04 09:55:59 2013 +0000 +++ b/memtest/stuff/pack Sat Oct 12 12:04:33 2013 +0000 @@ -29,7 +29,7 @@ compress() { - xz -z -e --format=lzma --lzma1=mode=normal --stdout + xz -z -e --format=lzma --lzma1=mf=bt2 --stdout } main() diff -r e5384ace4df2 -r 8267887ae7af wimlib/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wimlib/receipt Sat Oct 12 12:04:33 2013 +0000 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="wimlib" +VERSION="1.5.1" +CATEGORY="utilities" +SHORT_DESC="Library to create, extract, and modify Windows Imaging (WIM) files." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL3" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://sourceforge.net/projects/wimlib/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="libxml2 fuse ntfs-3g libcrypto zlib mtools cdrkit syslinux cabextract" +BUILD_DEPENDS="pkg-config libxml2-dev fuse-dev ntfs-3g-dev openssl-dev \ +attr-dev mtools cdrkit syslinux cabextract" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr $CONFIGURE_ARGS && + make && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +}