# HG changeset patch # User Christophe Lincoln # Date 1335301571 -7200 # Node ID 1ae652afef60915600b45319acb88eba0fcc49d5 # Parent 19ade3a2cc9c7bb1826966348b69e99851cfa54b Up: xorg-libXrender diff -r 19ade3a2cc9c -r 1ae652afef60 xorg-libXrender-dev/receipt --- a/xorg-libXrender-dev/receipt Tue Apr 24 22:35:37 2012 +0200 +++ b/xorg-libXrender-dev/receipt Tue Apr 24 23:06:11 2012 +0200 @@ -1,6 +1,7 @@ # SliTaz package receipt. + PACKAGE="xorg-libXrender-dev" -VERSION="0.9.6" +VERSION="0.9.7" CATEGORY="development" SHORT_DESC="Xorg RENDER extensions library devel files." MAINTAINER="pankso@slitaz.org" @@ -8,12 +9,12 @@ WANTED="xorg-libXrender" SOURCE="libXrender" WEB_SITE="http://www.x.org/" + # 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 + cp -a $install/usr/lib/*.*a* $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 19ade3a2cc9c -r 1ae652afef60 xorg-libXrender/receipt --- a/xorg-libXrender/receipt Tue Apr 24 22:35:37 2012 +0200 +++ b/xorg-libXrender/receipt Tue Apr 24 23:06:11 2012 +0200 @@ -1,31 +1,33 @@ # SliTaz package receipt. PACKAGE="xorg-libXrender" -VERSION="0.9.6" +VERSION="0.9.7" CATEGORY="x-window" SHORT_DESC="Xorg RENDER extensions library." MAINTAINER="pankso@slitaz.org" SOURCE="libXrender" TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/lib/$TARBALL" + DEPENDS="xorg-libX11" BUILD_DEPENDS="xorg-libX11-dev xorg-renderproto" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/lib/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --sysconfdir=/etc \ - --mandir=/usr/share/man --localstatedir=/var \ - $CONFIGURE_ARGS && - make && - make DESTDIR=$PWD/_pkg install + cd $src + ./configure \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && make 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 + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }