# HG changeset patch # User Aleksej Bobylev # Date 1369961887 0 # Node ID a09e9d64e4c93a3bbe4ce0b2846f31012fb196c7 # Parent 120fb0e1840c129457e82059daf7992253d58802 Xorg marathon. Day 1. (Carefully check versions, (build-)depends, pretty-print receipts) diff -r 120fb0e1840c -r a09e9d64e4c9 autoconf/receipt --- a/autoconf/receipt Wed May 29 01:40:09 2013 +0000 +++ b/autoconf/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,17 +1,19 @@ # SliTaz package receipt. PACKAGE="autoconf" -VERSION="2.68" +VERSION="2.69" CATEGORY="development" -SHORT_DESC="Tool to automatically configure software source code." +SHORT_DESC="A GNU tool for automatically configuring source code" MAINTAINER="pankso@slitaz.org" -TARBALL="$PACKAGE-$VERSION.tar.bz2" +LICENSE="GPL3" WEB_SITE="http://www.gnu.org/software/autoconf/" +TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" DEPENDS="m4 perl" BUILD_DEPENDS="m4 perl" +# Rules to compile & install the temporary toolchain. cook_tmp_toolchain() { cd $src @@ -21,15 +23,16 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/autoconf $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/autoconf $fs/usr/share + rm -f $fs/usr/share/autoconf/INSTALL } diff -r 120fb0e1840c -r a09e9d64e4c9 automake/receipt --- a/automake/receipt Wed May 29 01:40:09 2013 +0000 +++ b/automake/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="automake" -VERSION="1.11.3" +VERSION="1.13.2" CATEGORY="development" -SHORT_DESC="Tool for automatically generating 'Makefile.in'." +SHORT_DESC="A GNU tool for automatically creating Makefiles" MAINTAINER="pankso@slitaz.org" -TARBALL="$PACKAGE-$VERSION.tar.gz" +LICENSE="GPL2" WEB_SITE="http://www.gnu.org/software/automake/" +TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" DEPENDS="autoconf" -BUILD_DEPENDS="autoconf" +BUILD_DEPENDS="autoconf bison flex" # Rules to compile & install the temporary toolchain. cook_tmp_toolchain() @@ -22,20 +23,16 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/aclocal-1.11 $fs/usr/share - cp -a $_pkg/usr/share/automake-1.11 $fs/usr/share - ln -sf automake-1.11 $fs/usr/bin/automake-1.10 - ln -sf aclocal-1.11 $fs/usr/bin/aclocal-1.10 - ln -sf aclocal-1.11 $fs/usr/share/aclocal-1.10 - ln -sf automake-1.11 $fs/usr/share/automake-1.10 + cp -a $install/* $fs + ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal + ln -sf automake-${VERSION%.*} $fs/usr/bin/automake + rm -rf $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/man } diff -r 120fb0e1840c -r a09e9d64e4c9 libxcb-dev/receipt --- a/libxcb-dev/receipt Wed May 29 01:40:09 2013 +0000 +++ b/libxcb-dev/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,7 +3,7 @@ PACKAGE="libxcb-dev" VERSION="1.9" CATEGORY="development" -SHORT_DESC="libxcb development files" +SHORT_DESC="Development files for libxcb" MAINTAINER="mallory@sweetpeople.org" LICENSE="other" WEB_SITE="http://xcb.freedesktop.org/" @@ -16,8 +16,7 @@ { mkdir -p $fs/usr/lib cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/*.la $fs/usr/lib cp -a $install/usr/lib/pkgconfig $fs/usr/lib sed -i 's|pthread-stubs||' $fs/usr/lib/pkgconfig/xcb.pc } - diff -r 120fb0e1840c -r a09e9d64e4c9 libxcb/receipt --- a/libxcb/receipt Wed May 29 01:40:09 2013 +0000 +++ b/libxcb/receipt Fri May 31 00:58:07 2013 +0000 @@ -11,17 +11,19 @@ WGET_URL="${WEB_SITE}dist/$TARBALL" DEPENDS="glibc-base xorg-libXau xorg-libXdmcp" -# autoconf and automake in bdeps breaks build (but, see warnings in log) -BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev" +BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev \ +autoconf automake libtool" # Rules to configure and make the package. compile_rules() { # http://www.linuxfromscratch.org/blfs/view/svn/x/libxcb.html sed -i "s|pthread-stubs||" $src/configure.ac && + autoreconf -fi && ./configure \ --enable-xinput \ --disable-build-docs \ + --disable-static \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install diff -r 120fb0e1840c -r a09e9d64e4c9 xcb-proto/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-proto/description.txt Fri May 31 00:58:07 2013 +0000 @@ -0,0 +1,3 @@ +The X protocol C-language Binding (XCB) is a replacement for Xlib featuring +a small footprint, latency hiding, direct access to the protocol, improved +threading support, and extensibility. diff -r 120fb0e1840c -r a09e9d64e4c9 xcb-proto/receipt --- a/xcb-proto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xcb-proto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,33 +1,36 @@ # SliTaz package receipt. PACKAGE="xcb-proto" -VERSION="1.7.1" -CATEGORY="x-window" -SHORT_DESC="XCB protocol." +VERSION="1.8" +CATEGORY="development" +SHORT_DESC="X protocol descriptions for XCB" MAINTAINER="mallory@sweetpeople.org" +LICENSE="other" +WEB_SITE="http://xcb.freedesktop.org/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="${WEB_SITE}dist/$TARBALL" + DEPENDS="python" -BUILD_DEPENDS="python-dev" -TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://xcb.freedesktop.org" -WGET_URL="$WEB_SITE/dist/$TARBALL" +BUILD_DEPENDS="python-dev libxml2-tools" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --localstatedir=/var \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $_pkg/usr/share $fs/usr - cp -a $_pkg/usr/lib $fs/usr + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + # cook removes *.pyc *.pyo files by itself, but they leaves in files.list + find $fs -name '*.py?' -delete } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-bigreqsproto/receipt --- a/xorg-bigreqsproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-bigreqsproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-bigreqsproto" -VERSION="1.1.1" +VERSION="1.1.2" CATEGORY="development" -SHORT_DESC="Xorg proto." +SHORT_DESC="BigReqs extension headers" MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -SOURCE="bigreqsproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-compositeproto/receipt --- a/xorg-compositeproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-compositeproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,33 @@ PACKAGE="xorg-compositeproto" VERSION="0.4.2" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="Composite extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-fixesproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="compositeproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-damageproto/receipt --- a/xorg-damageproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-damageproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,34 @@ PACKAGE="xorg-damageproto" VERSION="1.2.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="Damage extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-fixesproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="damageproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-dmxproto/receipt --- a/xorg-dmxproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-dmxproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,13 +1,13 @@ # SliTaz package receipt. PACKAGE="xorg-dmxproto" -VERSION="2.3" +VERSION="2.3.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="DMX extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="dmxproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" DEPENDS="xorg-util-macros" @@ -16,18 +16,19 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-dri2proto/receipt --- a/xorg-dri2proto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-dri2proto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-dri2proto" -VERSION="2.6" +VERSION="2.8" CATEGORY="development" -SHORT_DESC="Xorg DRI protocol files." +SHORT_DESC="DRI2 extension headers" MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -SOURCE="dri2proto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-evieext/receipt --- a/xorg-evieext/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-evieext/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,32 @@ PACKAGE="xorg-evieext" VERSION="1.1.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="EvIE extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg" -SOURCE="evieext" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-util-macros" +BUILD_DEPENDS="xorg-util-macros" + # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-fixesproto/receipt --- a/xorg-fixesproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-fixesproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,33 @@ PACKAGE="xorg-fixesproto" VERSION="5.0" CATEGORY="development" -SHORT_DESC="Xorg server fixes protocol." +SHORT_DESC="X Fixes extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-xextproto xorg-xproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="fixesproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-fontcacheproto/receipt --- a/xorg-fontcacheproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-fontcacheproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,27 +3,32 @@ PACKAGE="xorg-fontcacheproto" VERSION="0.1.3" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="Fontcache extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="fontcacheproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-util-macros xorg-libX11-dev" +BUILD_DEPENDS="xorg-util-macros" + # 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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-fontsproto/receipt --- a/xorg-fontsproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-fontsproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,30 +3,33 @@ PACKAGE="xorg-fontsproto" VERSION="2.1.2" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="Fonts extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-xproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="fontsproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-glproto/receipt --- a/xorg-glproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-glproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,32 +1,34 @@ # SliTaz package receipt. PACKAGE="xorg-glproto" -VERSION="1.4.15" +VERSION="1.4.16" CATEGORY="development" -SHORT_DESC="Xorg server fixes protocol." +SHORT_DESC="GL extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-xproto mesa-dev" BUILD_DEPENDS="xorg-util-macros" -SOURCE="glproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-inputproto/receipt --- a/xorg-inputproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-inputproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,34 @@ # SliTaz package receipt. PACKAGE="xorg-inputproto" -VERSION="2.2" +VERSION="2.3" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="Input extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-xproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="inputproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ - $CONFIGURE_ARGS && - make && make install + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-kbproto/receipt --- a/xorg-kbproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-kbproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,30 +3,33 @@ PACKAGE="xorg-kbproto" VERSION="1.0.6" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="KB extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-xproto xorg-libxkbfile-dev" BUILD_DEPENDS="xorg-util-macros" -SOURCE="kbproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXau-dev/receipt --- a/xorg-libXau-dev/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXau-dev/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,17 +3,18 @@ PACKAGE="xorg-libXau-dev" VERSION="1.0.7" CATEGORY="development" -SHORT_DESC="Xorg authorization routines devel files." +SHORT_DESC="Development files for libXau" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-xproto xorg-libXau" +WEB_SITE="http://www.x.org/" + +DEPENDS="xorg-libXau xorg-xproto" WANTED="xorg-libXau" -WEB_SITE="http://www.x.org/" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a* $fs/usr/lib + cp -a $install/usr/include $fs/usr cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.la $fs/usr/lib } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXau/receipt --- a/xorg-libXau/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXau/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,34 @@ PACKAGE="xorg-libXau" VERSION="1.0.7" CATEGORY="x-window" -SHORT_DESC="Xorg authorization routines." +SHORT_DESC="X authorization file management libary" MAINTAINER="pankso@slitaz.org" -SOURCE="libXau" -TARBALL="$SOURCE-$VERSION.tar.bz2" -BUILD_DEPENDS="pkg-config xorg-xproto" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/lib/$TARBALL" +DEPENDS="glibc-base" +BUILD_DEPENDS="xorg-xproto" + # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ + --disable-static \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib + mkdir -p \ + $fs/usr/share/licenses \ + $fs/usr/lib + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt cp -a $install/usr/lib/*.so* $fs/usr/lib } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXcursor-dev/receipt --- a/xorg-libXcursor-dev/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXcursor-dev/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="xorg-libXcursor-dev" -VERSION="1.1.14" +VERSION="1.1.13" CATEGORY="development" -SHORT_DESC="Xorg module devel files." +SHORT_DESC="Development files for libXcursor" MAINTAINER="pankso@slitaz.org" WANTED="xorg-libXcursor" SOURCE="libXcursor" WEB_SITE="http://www.x.org/" -DEPENDS="xorg-libXcursor xorg-libXrender-dev xorg-libXfixes-dev" +DEPENDS="xorg-libXcursor xorg-xproto xorg-libX11-dev xorg-libXrender-dev \ +xorg-libXfixes-dev" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - + 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 120fb0e1840c -r a09e9d64e4c9 xorg-libXcursor/receipt --- a/xorg-libXcursor/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXcursor/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,24 +1,25 @@ # SliTaz package receipt. PACKAGE="xorg-libXcursor" -VERSION="1.1.14" +VERSION="1.1.13" CATEGORY="x-window" -SHORT_DESC="X cursors library." +SHORT_DESC="X Cursor Library" MAINTAINER="pankso@slitaz.org" SOURCE="libXcursor" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.x.org/" WGET_URL="$XORG_MIRROR/lib/$TARBALL" -DEPENDS="xorg-libXrender xorg-libXfixes" +DEPENDS="glibc-base libxcb xorg-libX11 xorg-libXau xorg-libXdmcp \ +xorg-libXfixes xorg-libXrender" BUILD_DEPENDS="xorg-libXrender-dev xorg-libXfixes-dev" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --sysconfdir=/etc \ - --mandir=/usr/share/man --localstatedir=/var \ + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXdmcp-dev/receipt --- a/xorg-libXdmcp-dev/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXdmcp-dev/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,18 +3,18 @@ PACKAGE="xorg-libXdmcp-dev" VERSION="1.1.1" CATEGORY="development" -SHORT_DESC="Xorg module devel files." +SHORT_DESC="Development files for libXdmcp" MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://www.x.org/" + DEPENDS="xorg-libXdmcp xorg-xproto" WANTED="xorg-libXdmcp" -SOURCE="libXdmcp" -WEB_SITE="http://www.x.org/" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a* $fs/usr/lib + cp -a $install/usr/include $fs/usr cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.la $fs/usr/lib } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXdmcp/receipt --- a/xorg-libXdmcp/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXdmcp/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,30 +3,34 @@ PACKAGE="xorg-libXdmcp" VERSION="1.1.1" CATEGORY="x-window" -SHORT_DESC="Xorg server module." +SHORT_DESC="X Display Manager Control Protocol library" MAINTAINER="pankso@slitaz.org" -SOURCE="libXdmcp" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/lib/$TARBALL" -BUILD_DEPENDS="pkg-config xorg-xproto" +DEPENDS="glibc-base" +BUILD_DEPENDS="xorg-xproto" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ - $CONFIGURE_ARGS - make && make install + --disable-static \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib + mkdir -p \ + $fs/usr/share/licenses \ + $fs/usr/lib + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt cp -a $install/usr/lib/*.so* $fs/usr/lib } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXext-dev/receipt --- a/xorg-libXext-dev/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXext-dev/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="xorg-libXext-dev" -VERSION="1.3.2" +VERSION="1.3.1" CATEGORY="development" -SHORT_DESC="Common X extensions library devel files." +SHORT_DESC="Development files for libXext" MAINTAINER="pankso@slitaz.org" WANTED="xorg-libXext" SOURCE="libXext" WEB_SITE="http://www.x.org/" -DEPENDS="xorg-libXext xorg-libX11-dev" +DEPENDS="xorg-libXext xorg-xextproto xorg-libX11-dev" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXext/receipt --- a/xorg-libXext/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXext/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,28 +1,27 @@ # SliTaz package receipt. PACKAGE="xorg-libXext" -VERSION="1.3.2" +VERSION="1.3.1" CATEGORY="x-window" -SHORT_DESC="Common X extensions library." +SHORT_DESC="Misc X Extension Library" MAINTAINER="pankso@slitaz.org" SOURCE="libXext" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.x.org/" WGET_URL="$XORG_MIRROR/lib/$TARBALL" -DEPENDS="xorg-libX11" +DEPENDS="glibc-base libxcb xorg-libX11 xorg-libXau xorg-libXdmcp" BUILD_DEPENDS="xorg-libX11-dev" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-libXfixes-dev/receipt --- a/xorg-libXfixes-dev/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXfixes-dev/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,20 +1,21 @@ # SliTaz package receipt. + PACKAGE="xorg-libXfixes-dev" -VERSION="5.0.1" +VERSION="5.0" CATEGORY="development" -SHORT_DESC="Xorg module devel files." +SHORT_DESC="Development files for libXfixes" MAINTAINER="pankso@slitaz.org" WANTED="xorg-libXfixes" SOURCE="libXfixes" WEB_SITE="http://www.x.org/" -DEPENDS="xorg-libXfixes xorg-fixesproto xorg-libX11-dev" +DEPENDS="xorg-libXfixes xorg-xproto xorg-fixesproto xorg-libX11-dev" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - + 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 120fb0e1840c -r a09e9d64e4c9 xorg-libXfixes/receipt --- a/xorg-libXfixes/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-libXfixes/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,24 +1,24 @@ # SliTaz package receipt. PACKAGE="xorg-libXfixes" -VERSION="5.0.1" +VERSION="5.0" CATEGORY="x-window" -SHORT_DESC="Xorg server module." +SHORT_DESC="X Fixes Library" MAINTAINER="pankso@slitaz.org" SOURCE="libXfixes" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.x.org/" WGET_URL="$XORG_MIRROR/lib/$TARBALL" -DEPENDS="xorg-libX11" +DEPENDS="glibc-base libxcb xorg-libX11 xorg-libXau xorg-libXdmcp" BUILD_DEPENDS="xorg-fixesproto xorg-libX11-dev" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --sysconfdir=/etc \ - --mandir=/usr/share/man --localstatedir=/var \ + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-makedepend/receipt --- a/xorg-makedepend/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-makedepend/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,30 +1,34 @@ # SliTaz package receipt. PACKAGE="xorg-makedepend" -VERSION="1.0.3" -CATEGORY="x-window" -SHORT_DESC="X makedepend utility." +VERSION="1.0.4" +CATEGORY="development" +SHORT_DESC="Create dependencies in makefiles" MAINTAINER="gokhlayeh@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/util/$TARBALL" + +DEPENDS="glibc-base xorg-xproto" BUILD_DEPENDS="xorg-xproto" -SOURCE="makedepend" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/util/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --mandir=/usr/share/man \ - $CONFIGURE_ARGS - make - make DESTDIR=$PWD/_pkg install - chmod +x $PWD/_pkg/usr/bin/* + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/usr/bin $fs/usr } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-printproto/receipt --- a/xorg-printproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-printproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,33 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-printproto" -SOURCE="printproto" VERSION="1.0.5" CATEGORY="development" -SHORT_DESC="Xorg server devel module." +SHORT_DESC="Print extension headers" MAINTAINER="rcx@zoominternet.net" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-fontsproto xorg-libX11-dev xorg-libXau-dev" BUILD_DEPENDS="xorg-util-macros" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --localstatedir=/var \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs - cp -a $_pkg/usr $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/man } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-randrproto/receipt --- a/xorg-randrproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-randrproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-randrproto" -VERSION="1.3.2" -#VERSION="1.3.1" +VERSION="1.4.0" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="Randr extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-renderproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="randrproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-recordproto/receipt --- a/xorg-recordproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-recordproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,11 +3,11 @@ PACKAGE="xorg-recordproto" VERSION="1.14.2" CATEGORY="development" -SHORT_DESC="Xorg record protol." +SHORT_DESC="Record extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="recordproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" DEPENDS="xorg-util-macros" @@ -16,17 +16,20 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-renderproto/receipt --- a/xorg-renderproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-renderproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,33 @@ PACKAGE="xorg-renderproto" VERSION="0.11.1" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="Render extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-xproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="renderproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="http://xorg.freedesktop.org/releases/individual/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-resourceproto/receipt --- a/xorg-resourceproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-resourceproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-resourceproto" -VERSION="1.1.1" +VERSION="1.2.0" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="Resource extension headers" MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -SOURCE="resourceproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-scrnsaverproto/receipt --- a/xorg-scrnsaverproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-scrnsaverproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-scrnsaverproto" -VERSION="1.2.1" +VERSION="1.2.2" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="ScrnSaver extension headers" MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -SOURCE="scrnsaverproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-trapproto/receipt --- a/xorg-trapproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-trapproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,27 +3,34 @@ PACKAGE="xorg-trapproto" VERSION="3.4.3" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="Trap extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="trapproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-libX11-dev xorg-server-dev xorg-xproto" +# /usr/include/X11/extensions/xtraplib.h: #include ? +# /usr/lib/pkgconfigtrapproto.pc: Requires: xt.pc ? +BUILD_DEPENDS="xorg-util-macros" + # 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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-util-macros/receipt --- a/xorg-util-macros/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-util-macros/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,27 +3,31 @@ PACKAGE="xorg-util-macros" VERSION="1.17" CATEGORY="development" -SHORT_DESC="X.Org Autotools macros" +SHORT_DESC="A set of autoconf project macros for X.Org modules" MAINTAINER="gokhlayeh@slitaz.org" -SOURCE="util-macros" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/util/$TARBALL" +DEPENDS="m4 pkg-config" + # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-videoproto/receipt --- a/xorg-videoproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-videoproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,33 @@ PACKAGE="xorg-videoproto" VERSION="2.3.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="Video extension headers" MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-libX11-dev xorg-xproto" BUILD_DEPENDS="xorg-util-macros" -SOURCE="videoproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xcmiscproto/receipt --- a/xorg-xcmiscproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xcmiscproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="xorg-xcmiscproto" -VERSION="1.2.1" +VERSION="1.2.2" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="XCMisc extension headers" MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -SOURCE="xcmiscproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xextproto/receipt --- a/xorg-xextproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xextproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,33 @@ PACKAGE="xorg-xextproto" VERSION="7.2.1" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="XExt extension headers" MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -SOURCE="xextproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xf86bigfontproto/receipt --- a/xorg-xf86bigfontproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xf86bigfontproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,27 +3,32 @@ PACKAGE="xorg-xf86bigfontproto" VERSION="1.2.0" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="XF86BigFont extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xf86bigfontproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-util-macros" +BUILD_DEPENDS="xorg-util-macros" + # 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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xf86dgaproto/receipt --- a/xorg-xf86dgaproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xf86dgaproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,27 +3,33 @@ PACKAGE="xorg-xf86dgaproto" VERSION="2.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="XF86DGA extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xf86dgaproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-util-macros" +# /usr/include/X11/extensions/xf86dga.h: #include ? +BUILD_DEPENDS="xorg-util-macros" + # 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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xf86driproto/receipt --- a/xorg-xf86driproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xf86driproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,32 @@ PACKAGE="xorg-xf86driproto" VERSION="2.1.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="XF86DRI extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xf86driproto" -DEPENDS="xorg-util-macros" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-util-macros libdrm-dev" BUILD_DEPENDS="xorg-util-macros" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xf86miscproto/receipt --- a/xorg-xf86miscproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xf86miscproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,27 +3,32 @@ PACKAGE="xorg-xf86miscproto" VERSION="0.9.3" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="XF86Misc extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xf86miscproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-xproto" +BUILD_DEPENDS="xorg-util-macros" + # 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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xf86rushproto/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xf86rushproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xf86rushproto" +VERSION="1.1.2" +CATEGORY="development" +SHORT_DESC="XF86Rush extension headers" +MAINTAINER="pankso@slitaz.org" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + +DEPENDS="xorg-videoproto" +BUILD_DEPENDS="xorg-util-macros" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs +} diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xf86vidmodeproto/receipt --- a/xorg-xf86vidmodeproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xf86vidmodeproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,28 +3,32 @@ PACKAGE="xorg-xf86vidmodeproto" VERSION="2.3.1" CATEGORY="development" -SHORT_DESC="Xorg server protocol." +SHORT_DESC="XF86VidMode extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xf86vidmodeproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-xproto" +BUILD_DEPENDS="xorg-util-macros" + # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xineramaproto/receipt --- a/xorg-xineramaproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xineramaproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -3,29 +3,32 @@ PACKAGE="xorg-xineramaproto" VERSION="1.2.1" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="Xinerama extension headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xineramaproto" +LICENSE="other" +WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/proto/$TARBALL" + DEPENDS="xorg-util-macros" BUILD_DEPENDS="xorg-util-macros" -TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://www.x.org/" -WGET_URL="$XORG_MIRROR/proto/$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 + ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + + cp -a $install/* $fs } - diff -r 120fb0e1840c -r a09e9d64e4c9 xorg-xproto/receipt --- a/xorg-xproto/receipt Wed May 29 01:40:09 2013 +0000 +++ b/xorg-xproto/receipt Fri May 31 00:58:07 2013 +0000 @@ -1,13 +1,13 @@ # SliTaz package receipt. PACKAGE="xorg-xproto" -VERSION="7.0.23" +VERSION="7.0.24" CATEGORY="development" -SHORT_DESC="Xorg server module." +SHORT_DESC="Xproto headers" MAINTAINER="pankso@slitaz.org" -SOURCE="xproto" -TARBALL="$SOURCE-$VERSION.tar.bz2" +LICENSE="other" WEB_SITE="http://www.x.org/" +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/proto/$TARBALL" DEPENDS="xorg-util-macros" @@ -16,18 +16,20 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --sysconfdir=/etc \ - --mandir=/usr/share/man \ --localstatedir=/var \ - $CONFIGURE_ARGS && - make && make install + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share/licenses + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt + cp -a $install/* $fs + rm -rf $fs/usr/share/doc } -