# HG changeset patch # User Christophe Lincoln # Date 1335304849 -7200 # Node ID 00cd21f54df1948256c2b95dda468d873f7cf409 # Parent 467c84f5e5df05da3c8e5759e82d374f66bc61dd Up: xorg-libXi (1.5.0) + clean receipt diff -r 467c84f5e5df -r 00cd21f54df1 xorg-libXi-dev/receipt --- a/xorg-libXi-dev/receipt Tue Apr 24 23:59:55 2012 +0200 +++ b/xorg-libXi-dev/receipt Wed Apr 25 00:00:49 2012 +0200 @@ -1,19 +1,19 @@ # SliTaz package receipt. + PACKAGE="xorg-libXi-dev" -VERSION="1.4.2" +VERSION="1.5.0" CATEGORY="development" SHORT_DESC="Xorg library and devel files for the X Input Extension." MAINTAINER="pankso@slitaz.org" DEPENDS="xorg-libXext-dev xorg-libXi" WANTED="xorg-libXi" -SOURCE="libXi" 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 467c84f5e5df -r 00cd21f54df1 xorg-libXi/receipt --- a/xorg-libXi/receipt Tue Apr 24 23:59:55 2012 +0200 +++ b/xorg-libXi/receipt Wed Apr 25 00:00:49 2012 +0200 @@ -1,31 +1,33 @@ # SliTaz package receipt. PACKAGE="xorg-libXi" -VERSION="1.4.2" +VERSION="1.5.0" CATEGORY="x-window" SHORT_DESC="Xorg library for the X Input Extension." MAINTAINER="pankso@slitaz.org" SOURCE="libXi" TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/lib/$TARBALL" + DEPENDS="xorg-libXext" BUILD_DEPENDS="xorg-libXext-dev" -WEB_SITE="http://www.x.org/" -WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/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 + cp -a $install/usr/lib/*.so* $fs/usr/lib }