# HG changeset patch # User Mallory MOLLO # Date 1240412897 -7200 # Node ID 637e958c066cb45d7d12fb6f8cf460e70b2b79eb # Parent 2ff1cea175be0d1ed509511aa069908e82693e3f Add: libev diff -r 2ff1cea175be -r 637e958c066c cairo/receipt --- a/cairo/receipt Wed Apr 22 13:49:02 2009 +0200 +++ b/cairo/receipt Wed Apr 22 17:08:17 2009 +0200 @@ -20,6 +20,7 @@ --prefix=/usr \ --mandir=/usr/share/man \ --with-html-dir=/usr/share/doc \ + --enable-xcb \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install diff -r 2ff1cea175be -r 637e958c066c firefox/receipt --- a/firefox/receipt Wed Apr 22 13:49:02 2009 +0200 +++ b/firefox/receipt Wed Apr 22 17:08:17 2009 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="firefox" -VERSION="3.0.8" +VERSION="3.0.9" CATEGORY="network" SHORT_DESC="User friendly, secure and fast web browser." MAINTAINER="pankso@slitaz.org" diff -r 2ff1cea175be -r 637e958c066c firefox/stuff/firefox.mozconfig --- a/firefox/stuff/firefox.mozconfig Wed Apr 22 13:49:02 2009 +0200 +++ b/firefox/stuff/firefox.mozconfig Wed Apr 22 17:08:17 2009 +0200 @@ -1,3 +1,5 @@ +. $topsrcdir/browser/config/mozconfig + export MOZILLA_OFFICIAL="1" export BUILD_OFFICIAL="1" export MOZ_PHOENIX=1 @@ -38,7 +40,7 @@ ac_add_options --with-pthreads #ac_add_options --enable-svg #ac_add_options --enable-svg-renderer=cairo -ac_add_options --enable-application=browser +#ac_add_options --enable-application=browser ac_add_options --disable-negotiateauth ac_add_options --disable-jsd #ac_add_options --disable-printing diff -r 2ff1cea175be -r 637e958c066c libev-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libev-dev/receipt Wed Apr 22 17:08:17 2009 +0200 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="libev-dev" +VERSION="3.53" +CATEGORY="development" +SHORT_DESC="libev development files" +MAINTAINER="mallory@sweetpeople.org" +WANTED="libev" +WEB_SITE="http://software.schmorp.de/pkg/libev.html" + + +# 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 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} + diff -r 2ff1cea175be -r 637e958c066c libev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libev/receipt Wed Apr 22 17:08:17 2009 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libev" +VERSION="3.53" +CATEGORY="system-tools" +SHORT_DESC="A full-featured and high-performance (see benchmark) event loop that is loosely modelled after libevent, but without its limitations and bugs." +MAINTAINER="mallory@sweetpeople.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://software.schmorp.de/pkg/libev.html" +WGET_URL="http://dist.schmorp.de/libev/$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 +} + diff -r 2ff1cea175be -r 637e958c066c xorg-xproto/receipt --- a/xorg-xproto/receipt Wed Apr 22 13:49:02 2009 +0200 +++ b/xorg-xproto/receipt Wed Apr 22 17:08:17 2009 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="xorg-xproto" -VERSION="7.0.10" +VERSION="7.0.11" CATEGORY="development" SHORT_DESC="Xorg server module." MAINTAINER="pankso@slitaz.org" diff -r 2ff1cea175be -r 637e958c066c zip/receipt --- a/zip/receipt Wed Apr 22 13:49:02 2009 +0200 +++ b/zip/receipt Wed Apr 22 17:08:17 2009 +0200 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="zip" -VERSION="2.32" +VERSION="3.0" CATEGORY="utilities" SHORT_DESC="Compressor utilities compatible with the DOS PKZIP." MAINTAINER="pankso@slitaz.org" -TARBALL="zip232.tar.gz" +TARBALL="zip30.tgz" WEB_SITE="http://www.info-zip.org/" -WGET_URL="ftp://ftp.dante.de/tex-archive/tools/zip/info-zip/src/$TARBALL" +WGET_URL="ftp://ftp.info-zip.org/pub/infozip/src/$TARBALL" # Rules to configure and make the package. compile_rules() { + mv zip30 zip-3.0 cd $src make -f unix/Makefile generic_gcc }