wok-6.x rev 14604
Xorg marathon. Day 1. (Carefully check versions, (build-)depends, pretty-print receipts)
line diff
1.1 --- a/autoconf/receipt Wed May 29 01:40:09 2013 +0000 1.2 +++ b/autoconf/receipt Fri May 31 00:58:07 2013 +0000 1.3 @@ -1,17 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="autoconf" 1.7 -VERSION="2.68" 1.8 +VERSION="2.69" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Tool to automatically configure software source code." 1.11 +SHORT_DESC="A GNU tool for automatically configuring source code" 1.12 MAINTAINER="pankso@slitaz.org" 1.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +LICENSE="GPL3" 1.15 WEB_SITE="http://www.gnu.org/software/autoconf/" 1.16 +TARBALL="$PACKAGE-$VERSION.tar.xz" 1.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.18 1.19 DEPENDS="m4 perl" 1.20 BUILD_DEPENDS="m4 perl" 1.21 1.22 +# Rules to compile & install the temporary toolchain. 1.23 cook_tmp_toolchain() 1.24 { 1.25 cd $src 1.26 @@ -21,15 +23,16 @@ 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 - cd $src 1.31 ./configure $CONFIGURE_ARGS && 1.32 - make && make install 1.33 + make && 1.34 + make install 1.35 } 1.36 1.37 # Rules to gen a SliTaz package suitable for Tazpkg. 1.38 genpkg_rules() 1.39 { 1.40 mkdir -p $fs/usr/share 1.41 - cp -a $_pkg/usr/bin $fs/usr 1.42 - cp -a $_pkg/usr/share/autoconf $fs/usr/share 1.43 + cp -a $install/usr/bin $fs/usr 1.44 + cp -a $install/usr/share/autoconf $fs/usr/share 1.45 + rm -f $fs/usr/share/autoconf/INSTALL 1.46 }
2.1 --- a/automake/receipt Wed May 29 01:40:09 2013 +0000 2.2 +++ b/automake/receipt Fri May 31 00:58:07 2013 +0000 2.3 @@ -1,16 +1,17 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="automake" 2.7 -VERSION="1.11.3" 2.8 +VERSION="1.13.2" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Tool for automatically generating 'Makefile.in'." 2.11 +SHORT_DESC="A GNU tool for automatically creating Makefiles" 2.12 MAINTAINER="pankso@slitaz.org" 2.13 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.14 +LICENSE="GPL2" 2.15 WEB_SITE="http://www.gnu.org/software/automake/" 2.16 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.18 2.19 DEPENDS="autoconf" 2.20 -BUILD_DEPENDS="autoconf" 2.21 +BUILD_DEPENDS="autoconf bison flex" 2.22 2.23 # Rules to compile & install the temporary toolchain. 2.24 cook_tmp_toolchain() 2.25 @@ -22,20 +23,16 @@ 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 - cd $src 2.30 ./configure $CONFIGURE_ARGS && 2.31 - make && make install 2.32 + make && 2.33 + make install 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr/share 2.40 - cp -a $_pkg/usr/bin $fs/usr 2.41 - cp -a $_pkg/usr/share/aclocal-1.11 $fs/usr/share 2.42 - cp -a $_pkg/usr/share/automake-1.11 $fs/usr/share 2.43 - ln -sf automake-1.11 $fs/usr/bin/automake-1.10 2.44 - ln -sf aclocal-1.11 $fs/usr/bin/aclocal-1.10 2.45 - ln -sf aclocal-1.11 $fs/usr/share/aclocal-1.10 2.46 - ln -sf automake-1.11 $fs/usr/share/automake-1.10 2.47 + cp -a $install/* $fs 2.48 + ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal 2.49 + ln -sf automake-${VERSION%.*} $fs/usr/bin/automake 2.50 + rm -rf $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/man 2.51 }
3.1 --- a/libxcb-dev/receipt Wed May 29 01:40:09 2013 +0000 3.2 +++ b/libxcb-dev/receipt Fri May 31 00:58:07 2013 +0000 3.3 @@ -3,7 +3,7 @@ 3.4 PACKAGE="libxcb-dev" 3.5 VERSION="1.9" 3.6 CATEGORY="development" 3.7 -SHORT_DESC="libxcb development files" 3.8 +SHORT_DESC="Development files for libxcb" 3.9 MAINTAINER="mallory@sweetpeople.org" 3.10 LICENSE="other" 3.11 WEB_SITE="http://xcb.freedesktop.org/" 3.12 @@ -16,8 +16,7 @@ 3.13 { 3.14 mkdir -p $fs/usr/lib 3.15 cp -a $install/usr/include $fs/usr 3.16 - cp -a $install/usr/lib/*.*a $fs/usr/lib 3.17 + cp -a $install/usr/lib/*.la $fs/usr/lib 3.18 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 3.19 sed -i 's|pthread-stubs||' $fs/usr/lib/pkgconfig/xcb.pc 3.20 } 3.21 -
4.1 --- a/libxcb/receipt Wed May 29 01:40:09 2013 +0000 4.2 +++ b/libxcb/receipt Fri May 31 00:58:07 2013 +0000 4.3 @@ -11,17 +11,19 @@ 4.4 WGET_URL="${WEB_SITE}dist/$TARBALL" 4.5 4.6 DEPENDS="glibc-base xorg-libXau xorg-libXdmcp" 4.7 -# autoconf and automake in bdeps breaks build (but, see warnings in log) 4.8 -BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev" 4.9 +BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev \ 4.10 +autoconf automake libtool" 4.11 4.12 # Rules to configure and make the package. 4.13 compile_rules() 4.14 { 4.15 # http://www.linuxfromscratch.org/blfs/view/svn/x/libxcb.html 4.16 sed -i "s|pthread-stubs||" $src/configure.ac && 4.17 + autoreconf -fi && 4.18 ./configure \ 4.19 --enable-xinput \ 4.20 --disable-build-docs \ 4.21 + --disable-static \ 4.22 $CONFIGURE_ARGS && 4.23 make && 4.24 make DESTDIR=$DESTDIR install
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/xcb-proto/description.txt Fri May 31 00:58:07 2013 +0000 5.3 @@ -0,0 +1,3 @@ 5.4 +The X protocol C-language Binding (XCB) is a replacement for Xlib featuring 5.5 +a small footprint, latency hiding, direct access to the protocol, improved 5.6 +threading support, and extensibility.
6.1 --- a/xcb-proto/receipt Wed May 29 01:40:09 2013 +0000 6.2 +++ b/xcb-proto/receipt Fri May 31 00:58:07 2013 +0000 6.3 @@ -1,33 +1,36 @@ 6.4 # SliTaz package receipt. 6.5 6.6 PACKAGE="xcb-proto" 6.7 -VERSION="1.7.1" 6.8 -CATEGORY="x-window" 6.9 -SHORT_DESC="XCB protocol." 6.10 +VERSION="1.8" 6.11 +CATEGORY="development" 6.12 +SHORT_DESC="X protocol descriptions for XCB" 6.13 MAINTAINER="mallory@sweetpeople.org" 6.14 +LICENSE="other" 6.15 +WEB_SITE="http://xcb.freedesktop.org/" 6.16 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 6.17 +WGET_URL="${WEB_SITE}dist/$TARBALL" 6.18 + 6.19 DEPENDS="python" 6.20 -BUILD_DEPENDS="python-dev" 6.21 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 6.22 -WEB_SITE="http://xcb.freedesktop.org" 6.23 -WGET_URL="$WEB_SITE/dist/$TARBALL" 6.24 +BUILD_DEPENDS="python-dev libxml2-tools" 6.25 6.26 # Rules to configure and make the package. 6.27 compile_rules() 6.28 { 6.29 - cd $src 6.30 ./configure \ 6.31 - --prefix=/usr \ 6.32 - --infodir=/usr/share/info \ 6.33 - --mandir=/usr/share/man \ 6.34 + --sysconfdir=/etc \ 6.35 + --localstatedir=/var \ 6.36 $CONFIGURE_ARGS && 6.37 - make && make DESTDIR=$PWD/_pkg install 6.38 + make && 6.39 + make install 6.40 } 6.41 6.42 # Rules to gen a SliTaz package suitable for Tazpkg. 6.43 genpkg_rules() 6.44 { 6.45 - mkdir -p $fs/usr 6.46 - cp -a $_pkg/usr/share $fs/usr 6.47 - cp -a $_pkg/usr/lib $fs/usr 6.48 + mkdir -p $fs/usr/share/licenses 6.49 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 6.50 + 6.51 + cp -a $install/* $fs 6.52 + # cook removes *.pyc *.pyo files by itself, but they leaves in files.list 6.53 + find $fs -name '*.py?' -delete 6.54 } 6.55 -
7.1 --- a/xorg-bigreqsproto/receipt Wed May 29 01:40:09 2013 +0000 7.2 +++ b/xorg-bigreqsproto/receipt Fri May 31 00:58:07 2013 +0000 7.3 @@ -1,31 +1,35 @@ 7.4 # SliTaz package receipt. 7.5 7.6 PACKAGE="xorg-bigreqsproto" 7.7 -VERSION="1.1.1" 7.8 +VERSION="1.1.2" 7.9 CATEGORY="development" 7.10 -SHORT_DESC="Xorg proto." 7.11 +SHORT_DESC="BigReqs extension headers" 7.12 MAINTAINER="pankso@slitaz.org" 7.13 +LICENSE="other" 7.14 +WEB_SITE="http://www.x.org/" 7.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 7.16 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 7.17 + 7.18 DEPENDS="xorg-util-macros" 7.19 BUILD_DEPENDS="xorg-util-macros" 7.20 -SOURCE="bigreqsproto" 7.21 -TARBALL="$SOURCE-$VERSION.tar.bz2" 7.22 -WEB_SITE="http://www.x.org/" 7.23 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 7.24 7.25 # Rules to configure and make the package. 7.26 compile_rules() 7.27 { 7.28 - cd $src 7.29 - ./configure --prefix=/usr --sysconfdir=/etc \ 7.30 - --mandir=/usr/share/man --localstatedir=/var \ 7.31 - $CONFIGURE_ARGS 7.32 - make 7.33 - make DESTDIR=$PWD/_pkg install 7.34 + ./configure \ 7.35 + --sysconfdir=/etc \ 7.36 + --localstatedir=/var \ 7.37 + $CONFIGURE_ARGS && 7.38 + make && 7.39 + make install 7.40 } 7.41 7.42 # Rules to gen a SliTaz package suitable for Tazpkg. 7.43 genpkg_rules() 7.44 { 7.45 - cp -a $_pkg/* $fs 7.46 + mkdir -p $fs/usr/share/licenses 7.47 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 7.48 + 7.49 + cp -a $install/* $fs 7.50 + rm -rf $fs/usr/share/doc 7.51 } 7.52 -
8.1 --- a/xorg-compositeproto/receipt Wed May 29 01:40:09 2013 +0000 8.2 +++ b/xorg-compositeproto/receipt Fri May 31 00:58:07 2013 +0000 8.3 @@ -3,29 +3,33 @@ 8.4 PACKAGE="xorg-compositeproto" 8.5 VERSION="0.4.2" 8.6 CATEGORY="development" 8.7 -SHORT_DESC="Xorg server protocol." 8.8 +SHORT_DESC="Composite extension headers" 8.9 MAINTAINER="pankso@slitaz.org" 8.10 -DEPENDS="xorg-util-macros" 8.11 +LICENSE="other" 8.12 +WEB_SITE="http://www.x.org/" 8.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 8.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 8.15 + 8.16 +DEPENDS="xorg-fixesproto" 8.17 BUILD_DEPENDS="xorg-util-macros" 8.18 -SOURCE="compositeproto" 8.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 8.20 -WEB_SITE="http://www.x.org/" 8.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 8.22 8.23 # Rules to configure and make the package. 8.24 compile_rules() 8.25 { 8.26 - cd $src 8.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 8.28 - --mandir=/usr/share/man --localstatedir=/var \ 8.29 - $CONFIGURE_ARGS 8.30 - make 8.31 - make DESTDIR=$PWD/_pkg install 8.32 + ./configure \ 8.33 + --sysconfdir=/etc \ 8.34 + --localstatedir=/var \ 8.35 + $CONFIGURE_ARGS && 8.36 + make && 8.37 + make install 8.38 } 8.39 8.40 # Rules to gen a SliTaz package suitable for Tazpkg. 8.41 genpkg_rules() 8.42 { 8.43 - cp -a $_pkg/* $fs 8.44 + mkdir -p $fs/usr/share/licenses 8.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 8.46 + 8.47 + cp -a $install/* $fs 8.48 + rm -rf $fs/usr/share/doc 8.49 } 8.50 -
9.1 --- a/xorg-damageproto/receipt Wed May 29 01:40:09 2013 +0000 9.2 +++ b/xorg-damageproto/receipt Fri May 31 00:58:07 2013 +0000 9.3 @@ -3,29 +3,34 @@ 9.4 PACKAGE="xorg-damageproto" 9.5 VERSION="1.2.1" 9.6 CATEGORY="development" 9.7 -SHORT_DESC="Xorg server protocol." 9.8 +SHORT_DESC="Damage extension headers" 9.9 MAINTAINER="pankso@slitaz.org" 9.10 -DEPENDS="xorg-util-macros" 9.11 +LICENSE="other" 9.12 +WEB_SITE="http://www.x.org/" 9.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 9.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 9.15 + 9.16 +DEPENDS="xorg-fixesproto" 9.17 BUILD_DEPENDS="xorg-util-macros" 9.18 -SOURCE="damageproto" 9.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 9.20 -WEB_SITE="http://www.x.org/" 9.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 9.22 9.23 # Rules to configure and make the package. 9.24 compile_rules() 9.25 { 9.26 - cd $src 9.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 9.28 - --mandir=/usr/share/man --localstatedir=/var \ 9.29 - $CONFIGURE_ARGS 9.30 - make 9.31 - make DESTDIR=$PWD/_pkg install 9.32 + ./configure \ 9.33 + --sysconfdir=/etc \ 9.34 + --localstatedir=/var \ 9.35 + $CONFIGURE_ARGS && 9.36 + make && 9.37 + make install 9.38 } 9.39 9.40 # Rules to gen a SliTaz package suitable for Tazpkg. 9.41 genpkg_rules() 9.42 { 9.43 - cp -a $_pkg/* $fs 9.44 + mkdir -p $fs/usr/share/licenses 9.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 9.46 + 9.47 + cp -a $install/* $fs 9.48 + rm -rf $fs/usr/share/doc 9.49 } 9.50
10.1 --- a/xorg-dmxproto/receipt Wed May 29 01:40:09 2013 +0000 10.2 +++ b/xorg-dmxproto/receipt Fri May 31 00:58:07 2013 +0000 10.3 @@ -1,13 +1,13 @@ 10.4 # SliTaz package receipt. 10.5 10.6 PACKAGE="xorg-dmxproto" 10.7 -VERSION="2.3" 10.8 +VERSION="2.3.1" 10.9 CATEGORY="development" 10.10 -SHORT_DESC="Xorg server protocol." 10.11 +SHORT_DESC="DMX extension headers" 10.12 MAINTAINER="pankso@slitaz.org" 10.13 -SOURCE="dmxproto" 10.14 -TARBALL="$SOURCE-$VERSION.tar.bz2" 10.15 +LICENSE="other" 10.16 WEB_SITE="http://www.x.org/" 10.17 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 10.18 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 10.19 10.20 DEPENDS="xorg-util-macros" 10.21 @@ -16,18 +16,19 @@ 10.22 # Rules to configure and make the package. 10.23 compile_rules() 10.24 { 10.25 - cd $src 10.26 ./configure \ 10.27 --sysconfdir=/etc \ 10.28 - --mandir=/usr/share/man \ 10.29 --localstatedir=/var \ 10.30 $CONFIGURE_ARGS && 10.31 - make && make install 10.32 + make && 10.33 + make install 10.34 } 10.35 10.36 # Rules to gen a SliTaz package suitable for Tazpkg. 10.37 genpkg_rules() 10.38 { 10.39 + mkdir -p $fs/usr/share/licenses 10.40 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 10.41 + 10.42 cp -a $install/* $fs 10.43 } 10.44 -
11.1 --- a/xorg-dri2proto/receipt Wed May 29 01:40:09 2013 +0000 11.2 +++ b/xorg-dri2proto/receipt Fri May 31 00:58:07 2013 +0000 11.3 @@ -1,31 +1,35 @@ 11.4 # SliTaz package receipt. 11.5 11.6 PACKAGE="xorg-dri2proto" 11.7 -VERSION="2.6" 11.8 +VERSION="2.8" 11.9 CATEGORY="development" 11.10 -SHORT_DESC="Xorg DRI protocol files." 11.11 +SHORT_DESC="DRI2 extension headers" 11.12 MAINTAINER="pankso@slitaz.org" 11.13 +LICENSE="other" 11.14 +WEB_SITE="http://www.x.org/" 11.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 11.16 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 11.17 + 11.18 DEPENDS="xorg-util-macros" 11.19 BUILD_DEPENDS="xorg-util-macros" 11.20 -SOURCE="dri2proto" 11.21 -TARBALL="$SOURCE-$VERSION.tar.bz2" 11.22 -WEB_SITE="http://www.x.org/" 11.23 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 11.24 11.25 # Rules to configure and make the package. 11.26 compile_rules() 11.27 { 11.28 - cd $src 11.29 ./configure \ 11.30 --sysconfdir=/etc \ 11.31 - --mandir=/usr/share/man \ 11.32 --localstatedir=/var \ 11.33 $CONFIGURE_ARGS && 11.34 - make && make install 11.35 + make && 11.36 + make install 11.37 } 11.38 11.39 # Rules to gen a SliTaz package suitable for Tazpkg. 11.40 genpkg_rules() 11.41 { 11.42 + mkdir -p $fs/usr/share/licenses 11.43 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 11.44 + 11.45 cp -a $install/* $fs 11.46 + rm -rf $fs/usr/share/doc 11.47 }
12.1 --- a/xorg-evieext/receipt Wed May 29 01:40:09 2013 +0000 12.2 +++ b/xorg-evieext/receipt Fri May 31 00:58:07 2013 +0000 12.3 @@ -3,29 +3,32 @@ 12.4 PACKAGE="xorg-evieext" 12.5 VERSION="1.1.1" 12.6 CATEGORY="development" 12.7 -SHORT_DESC="Xorg server protocol." 12.8 +SHORT_DESC="EvIE extension headers" 12.9 MAINTAINER="pankso@slitaz.org" 12.10 -DEPENDS="xorg" 12.11 -SOURCE="evieext" 12.12 -TARBALL="$SOURCE-$VERSION.tar.bz2" 12.13 +LICENSE="other" 12.14 WEB_SITE="http://www.x.org/" 12.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 12.16 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 12.17 12.18 +DEPENDS="xorg-util-macros" 12.19 +BUILD_DEPENDS="xorg-util-macros" 12.20 + 12.21 # Rules to configure and make the package. 12.22 compile_rules() 12.23 { 12.24 - cd $src 12.25 ./configure \ 12.26 --sysconfdir=/etc \ 12.27 - --mandir=/usr/share/man \ 12.28 --localstatedir=/var \ 12.29 $CONFIGURE_ARGS && 12.30 - make && make install 12.31 + make && 12.32 + make install 12.33 } 12.34 12.35 # Rules to gen a SliTaz package suitable for Tazpkg. 12.36 genpkg_rules() 12.37 { 12.38 + mkdir -p $fs/usr/share/licenses 12.39 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 12.40 + 12.41 cp -a $install/* $fs 12.42 } 12.43 -
13.1 --- a/xorg-fixesproto/receipt Wed May 29 01:40:09 2013 +0000 13.2 +++ b/xorg-fixesproto/receipt Fri May 31 00:58:07 2013 +0000 13.3 @@ -3,29 +3,33 @@ 13.4 PACKAGE="xorg-fixesproto" 13.5 VERSION="5.0" 13.6 CATEGORY="development" 13.7 -SHORT_DESC="Xorg server fixes protocol." 13.8 +SHORT_DESC="X Fixes extension headers" 13.9 MAINTAINER="pankso@slitaz.org" 13.10 -DEPENDS="xorg-util-macros" 13.11 +LICENSE="other" 13.12 +WEB_SITE="http://www.x.org/" 13.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 13.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 13.15 + 13.16 +DEPENDS="xorg-xextproto xorg-xproto" 13.17 BUILD_DEPENDS="xorg-util-macros" 13.18 -SOURCE="fixesproto" 13.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 13.20 -WEB_SITE="http://www.x.org/" 13.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 13.22 13.23 # Rules to configure and make the package. 13.24 compile_rules() 13.25 { 13.26 - cd $src 13.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 13.28 - --mandir=/usr/share/man --localstatedir=/var \ 13.29 - $CONFIGURE_ARGS 13.30 - make 13.31 - make DESTDIR=$PWD/_pkg install 13.32 + ./configure \ 13.33 + --sysconfdir=/etc \ 13.34 + --localstatedir=/var \ 13.35 + $CONFIGURE_ARGS && 13.36 + make && 13.37 + make install 13.38 } 13.39 13.40 # Rules to gen a SliTaz package suitable for Tazpkg. 13.41 genpkg_rules() 13.42 { 13.43 - cp -a $_pkg/* $fs 13.44 + mkdir -p $fs/usr/share/licenses 13.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 13.46 + 13.47 + cp -a $install/* $fs 13.48 + rm -rf $fs/usr/share/doc 13.49 } 13.50 -
14.1 --- a/xorg-fontcacheproto/receipt Wed May 29 01:40:09 2013 +0000 14.2 +++ b/xorg-fontcacheproto/receipt Fri May 31 00:58:07 2013 +0000 14.3 @@ -3,27 +3,32 @@ 14.4 PACKAGE="xorg-fontcacheproto" 14.5 VERSION="0.1.3" 14.6 CATEGORY="development" 14.7 -SHORT_DESC="Xorg server protocol." 14.8 +SHORT_DESC="Fontcache extension headers" 14.9 MAINTAINER="pankso@slitaz.org" 14.10 -SOURCE="fontcacheproto" 14.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 14.12 +LICENSE="other" 14.13 WEB_SITE="http://www.x.org/" 14.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 14.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 14.16 14.17 +DEPENDS="xorg-util-macros xorg-libX11-dev" 14.18 +BUILD_DEPENDS="xorg-util-macros" 14.19 + 14.20 # Rules to configure and make the package. 14.21 compile_rules() 14.22 { 14.23 - cd $src 14.24 - ./configure --prefix=/usr --sysconfdir=/etc \ 14.25 - --mandir=/usr/share/man --localstatedir=/var \ 14.26 - $CONFIGURE_ARGS 14.27 - make 14.28 - make DESTDIR=$PWD/_pkg install 14.29 + ./configure \ 14.30 + --sysconfdir=/etc \ 14.31 + --localstatedir=/var \ 14.32 + $CONFIGURE_ARGS && 14.33 + make && 14.34 + make install 14.35 } 14.36 14.37 # Rules to gen a SliTaz package suitable for Tazpkg. 14.38 genpkg_rules() 14.39 { 14.40 - cp -a $_pkg/* $fs 14.41 + mkdir -p $fs/usr/share/licenses 14.42 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 14.43 + 14.44 + cp -a $install/* $fs 14.45 } 14.46 -
15.1 --- a/xorg-fontsproto/receipt Wed May 29 01:40:09 2013 +0000 15.2 +++ b/xorg-fontsproto/receipt Fri May 31 00:58:07 2013 +0000 15.3 @@ -3,30 +3,33 @@ 15.4 PACKAGE="xorg-fontsproto" 15.5 VERSION="2.1.2" 15.6 CATEGORY="development" 15.7 -SHORT_DESC="Xorg server protocol." 15.8 +SHORT_DESC="Fonts extension headers" 15.9 MAINTAINER="pankso@slitaz.org" 15.10 -DEPENDS="xorg-util-macros" 15.11 +LICENSE="other" 15.12 +WEB_SITE="http://www.x.org/" 15.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 15.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 15.15 + 15.16 +DEPENDS="xorg-xproto" 15.17 BUILD_DEPENDS="xorg-util-macros" 15.18 -SOURCE="fontsproto" 15.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 15.20 -WEB_SITE="http://www.x.org/" 15.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 15.22 15.23 # Rules to configure and make the package. 15.24 compile_rules() 15.25 { 15.26 - cd $src 15.27 ./configure \ 15.28 --sysconfdir=/etc \ 15.29 - --mandir=/usr/share/man \ 15.30 --localstatedir=/var \ 15.31 $CONFIGURE_ARGS && 15.32 - make && make install 15.33 + make && 15.34 + make install 15.35 } 15.36 15.37 # Rules to gen a SliTaz package suitable for Tazpkg. 15.38 genpkg_rules() 15.39 { 15.40 + mkdir -p $fs/usr/share/licenses 15.41 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 15.42 + 15.43 cp -a $install/* $fs 15.44 + rm -rf $fs/usr/share/doc 15.45 } 15.46 -
16.1 --- a/xorg-glproto/receipt Wed May 29 01:40:09 2013 +0000 16.2 +++ b/xorg-glproto/receipt Fri May 31 00:58:07 2013 +0000 16.3 @@ -1,32 +1,34 @@ 16.4 # SliTaz package receipt. 16.5 16.6 PACKAGE="xorg-glproto" 16.7 -VERSION="1.4.15" 16.8 +VERSION="1.4.16" 16.9 CATEGORY="development" 16.10 -SHORT_DESC="Xorg server fixes protocol." 16.11 +SHORT_DESC="GL extension headers" 16.12 MAINTAINER="pankso@slitaz.org" 16.13 -DEPENDS="xorg-util-macros" 16.14 +LICENSE="other" 16.15 +WEB_SITE="http://www.x.org/" 16.16 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 16.17 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 16.18 + 16.19 +DEPENDS="xorg-xproto mesa-dev" 16.20 BUILD_DEPENDS="xorg-util-macros" 16.21 -SOURCE="glproto" 16.22 -TARBALL="$SOURCE-$VERSION.tar.bz2" 16.23 -WEB_SITE="http://www.x.org/" 16.24 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 16.25 16.26 # Rules to configure and make the package. 16.27 compile_rules() 16.28 { 16.29 - cd $src 16.30 ./configure \ 16.31 --sysconfdir=/etc \ 16.32 - --mandir=/usr/share/man \ 16.33 --localstatedir=/var \ 16.34 $CONFIGURE_ARGS && 16.35 - make && make install 16.36 + make && 16.37 + make install 16.38 } 16.39 16.40 # Rules to gen a SliTaz package suitable for Tazpkg. 16.41 genpkg_rules() 16.42 { 16.43 - cp -a $install/* $fs 16.44 + mkdir -p $fs/usr/share/licenses 16.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 16.46 + 16.47 + cp -a $install/* $fs 16.48 } 16.49 -
17.1 --- a/xorg-inputproto/receipt Wed May 29 01:40:09 2013 +0000 17.2 +++ b/xorg-inputproto/receipt Fri May 31 00:58:07 2013 +0000 17.3 @@ -1,31 +1,34 @@ 17.4 # SliTaz package receipt. 17.5 17.6 PACKAGE="xorg-inputproto" 17.7 -VERSION="2.2" 17.8 +VERSION="2.3" 17.9 CATEGORY="development" 17.10 -SHORT_DESC="Xorg server module." 17.11 +SHORT_DESC="Input extension headers" 17.12 MAINTAINER="pankso@slitaz.org" 17.13 -DEPENDS="xorg-util-macros" 17.14 +LICENSE="other" 17.15 +WEB_SITE="http://www.x.org/" 17.16 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 17.17 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 17.18 + 17.19 +DEPENDS="xorg-xproto" 17.20 BUILD_DEPENDS="xorg-util-macros" 17.21 -SOURCE="inputproto" 17.22 -TARBALL="$SOURCE-$VERSION.tar.bz2" 17.23 -WEB_SITE="http://www.x.org/" 17.24 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 17.25 17.26 # Rules to configure and make the package. 17.27 compile_rules() 17.28 { 17.29 - cd $src 17.30 ./configure \ 17.31 --sysconfdir=/etc \ 17.32 - --mandir=/usr/share/man \ 17.33 --localstatedir=/var \ 17.34 - $CONFIGURE_ARGS && 17.35 - make && make install 17.36 + $CONFIGURE_ARGS && 17.37 + make && 17.38 + make install 17.39 } 17.40 17.41 # Rules to gen a SliTaz package suitable for Tazpkg. 17.42 genpkg_rules() 17.43 { 17.44 + mkdir -p $fs/usr/share/licenses 17.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 17.46 + 17.47 cp -a $install/* $fs 17.48 }
18.1 --- a/xorg-kbproto/receipt Wed May 29 01:40:09 2013 +0000 18.2 +++ b/xorg-kbproto/receipt Fri May 31 00:58:07 2013 +0000 18.3 @@ -3,30 +3,33 @@ 18.4 PACKAGE="xorg-kbproto" 18.5 VERSION="1.0.6" 18.6 CATEGORY="development" 18.7 -SHORT_DESC="Xorg server module." 18.8 +SHORT_DESC="KB extension headers" 18.9 MAINTAINER="pankso@slitaz.org" 18.10 -DEPENDS="xorg-util-macros" 18.11 +LICENSE="other" 18.12 +WEB_SITE="http://www.x.org/" 18.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 18.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 18.15 + 18.16 +DEPENDS="xorg-xproto xorg-libxkbfile-dev" 18.17 BUILD_DEPENDS="xorg-util-macros" 18.18 -SOURCE="kbproto" 18.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 18.20 -WEB_SITE="http://www.x.org/" 18.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 18.22 18.23 # Rules to configure and make the package. 18.24 compile_rules() 18.25 { 18.26 - cd $src 18.27 ./configure \ 18.28 --sysconfdir=/etc \ 18.29 - --mandir=/usr/share/man \ 18.30 --localstatedir=/var \ 18.31 $CONFIGURE_ARGS && 18.32 - make && make install 18.33 + make && 18.34 + make install 18.35 } 18.36 18.37 # Rules to gen a SliTaz package suitable for Tazpkg. 18.38 genpkg_rules() 18.39 { 18.40 + mkdir -p $fs/usr/share/licenses 18.41 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 18.42 + 18.43 cp -a $install/* $fs 18.44 + rm -rf $fs/usr/share/doc 18.45 } 18.46 -
19.1 --- a/xorg-libXau-dev/receipt Wed May 29 01:40:09 2013 +0000 19.2 +++ b/xorg-libXau-dev/receipt Fri May 31 00:58:07 2013 +0000 19.3 @@ -3,17 +3,18 @@ 19.4 PACKAGE="xorg-libXau-dev" 19.5 VERSION="1.0.7" 19.6 CATEGORY="development" 19.7 -SHORT_DESC="Xorg authorization routines devel files." 19.8 +SHORT_DESC="Development files for libXau" 19.9 MAINTAINER="pankso@slitaz.org" 19.10 -DEPENDS="xorg-xproto xorg-libXau" 19.11 +WEB_SITE="http://www.x.org/" 19.12 + 19.13 +DEPENDS="xorg-libXau xorg-xproto" 19.14 WANTED="xorg-libXau" 19.15 -WEB_SITE="http://www.x.org/" 19.16 19.17 # Rules to gen a SliTaz package suitable for Tazpkg. 19.18 genpkg_rules() 19.19 { 19.20 mkdir -p $fs/usr/lib 19.21 - cp -a $install/usr/lib/*.*a* $fs/usr/lib 19.22 + cp -a $install/usr/include $fs/usr 19.23 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 19.24 - cp -a $install/usr/include $fs/usr 19.25 + cp -a $install/usr/lib/*.la $fs/usr/lib 19.26 }
20.1 --- a/xorg-libXau/receipt Wed May 29 01:40:09 2013 +0000 20.2 +++ b/xorg-libXau/receipt Fri May 31 00:58:07 2013 +0000 20.3 @@ -3,29 +3,34 @@ 20.4 PACKAGE="xorg-libXau" 20.5 VERSION="1.0.7" 20.6 CATEGORY="x-window" 20.7 -SHORT_DESC="Xorg authorization routines." 20.8 +SHORT_DESC="X authorization file management libary" 20.9 MAINTAINER="pankso@slitaz.org" 20.10 -SOURCE="libXau" 20.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 20.12 -BUILD_DEPENDS="pkg-config xorg-xproto" 20.13 +LICENSE="other" 20.14 WEB_SITE="http://www.x.org/" 20.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 20.16 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 20.17 20.18 +DEPENDS="glibc-base" 20.19 +BUILD_DEPENDS="xorg-xproto" 20.20 + 20.21 # Rules to configure and make the package. 20.22 compile_rules() 20.23 { 20.24 - cd $src 20.25 ./configure \ 20.26 --sysconfdir=/etc \ 20.27 - --mandir=/usr/share/man \ 20.28 --localstatedir=/var \ 20.29 + --disable-static \ 20.30 $CONFIGURE_ARGS && 20.31 - make && make install 20.32 + make && 20.33 + make install 20.34 } 20.35 20.36 # Rules to gen a SliTaz package suitable for Tazpkg. 20.37 genpkg_rules() 20.38 { 20.39 - mkdir -p $fs/usr/lib 20.40 + mkdir -p \ 20.41 + $fs/usr/share/licenses \ 20.42 + $fs/usr/lib 20.43 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 20.44 cp -a $install/usr/lib/*.so* $fs/usr/lib 20.45 }
21.1 --- a/xorg-libXcursor-dev/receipt Wed May 29 01:40:09 2013 +0000 21.2 +++ b/xorg-libXcursor-dev/receipt Fri May 31 00:58:07 2013 +0000 21.3 @@ -1,20 +1,21 @@ 21.4 # SliTaz package receipt. 21.5 PACKAGE="xorg-libXcursor-dev" 21.6 -VERSION="1.1.14" 21.7 +VERSION="1.1.13" 21.8 CATEGORY="development" 21.9 -SHORT_DESC="Xorg module devel files." 21.10 +SHORT_DESC="Development files for libXcursor" 21.11 MAINTAINER="pankso@slitaz.org" 21.12 WANTED="xorg-libXcursor" 21.13 SOURCE="libXcursor" 21.14 WEB_SITE="http://www.x.org/" 21.15 21.16 -DEPENDS="xorg-libXcursor xorg-libXrender-dev xorg-libXfixes-dev" 21.17 +DEPENDS="xorg-libXcursor xorg-xproto xorg-libX11-dev xorg-libXrender-dev \ 21.18 +xorg-libXfixes-dev" 21.19 21.20 # Rules to gen a SliTaz package suitable for Tazpkg. 21.21 genpkg_rules() 21.22 { 21.23 mkdir -p $fs/usr/lib 21.24 - 21.25 + 21.26 cp -a $install/usr/lib/*.*a* $fs/usr/lib 21.27 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 21.28 cp -a $install/usr/include $fs/usr
22.1 --- a/xorg-libXcursor/receipt Wed May 29 01:40:09 2013 +0000 22.2 +++ b/xorg-libXcursor/receipt Fri May 31 00:58:07 2013 +0000 22.3 @@ -1,24 +1,25 @@ 22.4 # SliTaz package receipt. 22.5 22.6 PACKAGE="xorg-libXcursor" 22.7 -VERSION="1.1.14" 22.8 +VERSION="1.1.13" 22.9 CATEGORY="x-window" 22.10 -SHORT_DESC="X cursors library." 22.11 +SHORT_DESC="X Cursor Library" 22.12 MAINTAINER="pankso@slitaz.org" 22.13 SOURCE="libXcursor" 22.14 TARBALL="$SOURCE-$VERSION.tar.bz2" 22.15 WEB_SITE="http://www.x.org/" 22.16 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 22.17 22.18 -DEPENDS="xorg-libXrender xorg-libXfixes" 22.19 +DEPENDS="glibc-base libxcb xorg-libX11 xorg-libXau xorg-libXdmcp \ 22.20 +xorg-libXfixes xorg-libXrender" 22.21 BUILD_DEPENDS="xorg-libXrender-dev xorg-libXfixes-dev" 22.22 22.23 # Rules to configure and make the package. 22.24 compile_rules() 22.25 { 22.26 - cd $src 22.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 22.28 - --mandir=/usr/share/man --localstatedir=/var \ 22.29 + ./configure \ 22.30 + --sysconfdir=/etc \ 22.31 + --localstatedir=/var \ 22.32 $CONFIGURE_ARGS && 22.33 make && 22.34 make DESTDIR=$DESTDIR install
23.1 --- a/xorg-libXdmcp-dev/receipt Wed May 29 01:40:09 2013 +0000 23.2 +++ b/xorg-libXdmcp-dev/receipt Fri May 31 00:58:07 2013 +0000 23.3 @@ -3,18 +3,18 @@ 23.4 PACKAGE="xorg-libXdmcp-dev" 23.5 VERSION="1.1.1" 23.6 CATEGORY="development" 23.7 -SHORT_DESC="Xorg module devel files." 23.8 +SHORT_DESC="Development files for libXdmcp" 23.9 MAINTAINER="pankso@slitaz.org" 23.10 +WEB_SITE="http://www.x.org/" 23.11 + 23.12 DEPENDS="xorg-libXdmcp xorg-xproto" 23.13 WANTED="xorg-libXdmcp" 23.14 -SOURCE="libXdmcp" 23.15 -WEB_SITE="http://www.x.org/" 23.16 23.17 # Rules to gen a SliTaz package suitable for Tazpkg. 23.18 genpkg_rules() 23.19 { 23.20 mkdir -p $fs/usr/lib 23.21 - cp -a $install/usr/lib/*.*a* $fs/usr/lib 23.22 + cp -a $install/usr/include $fs/usr 23.23 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 23.24 - cp -a $install/usr/include $fs/usr 23.25 + cp -a $install/usr/lib/*.la $fs/usr/lib 23.26 }
24.1 --- a/xorg-libXdmcp/receipt Wed May 29 01:40:09 2013 +0000 24.2 +++ b/xorg-libXdmcp/receipt Fri May 31 00:58:07 2013 +0000 24.3 @@ -3,30 +3,34 @@ 24.4 PACKAGE="xorg-libXdmcp" 24.5 VERSION="1.1.1" 24.6 CATEGORY="x-window" 24.7 -SHORT_DESC="Xorg server module." 24.8 +SHORT_DESC="X Display Manager Control Protocol library" 24.9 MAINTAINER="pankso@slitaz.org" 24.10 -SOURCE="libXdmcp" 24.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 24.12 +LICENSE="other" 24.13 WEB_SITE="http://www.x.org/" 24.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 24.15 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 24.16 24.17 -BUILD_DEPENDS="pkg-config xorg-xproto" 24.18 +DEPENDS="glibc-base" 24.19 +BUILD_DEPENDS="xorg-xproto" 24.20 24.21 # Rules to configure and make the package. 24.22 compile_rules() 24.23 { 24.24 - cd $src 24.25 ./configure \ 24.26 --sysconfdir=/etc \ 24.27 - --mandir=/usr/share/man \ 24.28 --localstatedir=/var \ 24.29 - $CONFIGURE_ARGS 24.30 - make && make install 24.31 + --disable-static \ 24.32 + $CONFIGURE_ARGS && 24.33 + make && 24.34 + make install 24.35 } 24.36 24.37 # Rules to gen a SliTaz package suitable for Tazpkg. 24.38 genpkg_rules() 24.39 { 24.40 - mkdir -p $fs/usr/lib 24.41 + mkdir -p \ 24.42 + $fs/usr/share/licenses \ 24.43 + $fs/usr/lib 24.44 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 24.45 cp -a $install/usr/lib/*.so* $fs/usr/lib 24.46 }
25.1 --- a/xorg-libXext-dev/receipt Wed May 29 01:40:09 2013 +0000 25.2 +++ b/xorg-libXext-dev/receipt Fri May 31 00:58:07 2013 +0000 25.3 @@ -1,15 +1,15 @@ 25.4 # SliTaz package receipt. 25.5 25.6 PACKAGE="xorg-libXext-dev" 25.7 -VERSION="1.3.2" 25.8 +VERSION="1.3.1" 25.9 CATEGORY="development" 25.10 -SHORT_DESC="Common X extensions library devel files." 25.11 +SHORT_DESC="Development files for libXext" 25.12 MAINTAINER="pankso@slitaz.org" 25.13 WANTED="xorg-libXext" 25.14 SOURCE="libXext" 25.15 WEB_SITE="http://www.x.org/" 25.16 25.17 -DEPENDS="xorg-libXext xorg-libX11-dev" 25.18 +DEPENDS="xorg-libXext xorg-xextproto xorg-libX11-dev" 25.19 25.20 # Rules to gen a SliTaz package suitable for Tazpkg. 25.21 genpkg_rules()
26.1 --- a/xorg-libXext/receipt Wed May 29 01:40:09 2013 +0000 26.2 +++ b/xorg-libXext/receipt Fri May 31 00:58:07 2013 +0000 26.3 @@ -1,28 +1,27 @@ 26.4 # SliTaz package receipt. 26.5 26.6 PACKAGE="xorg-libXext" 26.7 -VERSION="1.3.2" 26.8 +VERSION="1.3.1" 26.9 CATEGORY="x-window" 26.10 -SHORT_DESC="Common X extensions library." 26.11 +SHORT_DESC="Misc X Extension Library" 26.12 MAINTAINER="pankso@slitaz.org" 26.13 SOURCE="libXext" 26.14 TARBALL="$SOURCE-$VERSION.tar.bz2" 26.15 WEB_SITE="http://www.x.org/" 26.16 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 26.17 26.18 -DEPENDS="xorg-libX11" 26.19 +DEPENDS="glibc-base libxcb xorg-libX11 xorg-libXau xorg-libXdmcp" 26.20 BUILD_DEPENDS="xorg-libX11-dev" 26.21 26.22 # Rules to configure and make the package. 26.23 compile_rules() 26.24 { 26.25 - cd $src 26.26 ./configure \ 26.27 --sysconfdir=/etc \ 26.28 - --mandir=/usr/share/man \ 26.29 --localstatedir=/var \ 26.30 $CONFIGURE_ARGS && 26.31 - make && make install 26.32 + make && 26.33 + make install 26.34 } 26.35 26.36 # Rules to gen a SliTaz package suitable for Tazpkg.
27.1 --- a/xorg-libXfixes-dev/receipt Wed May 29 01:40:09 2013 +0000 27.2 +++ b/xorg-libXfixes-dev/receipt Fri May 31 00:58:07 2013 +0000 27.3 @@ -1,20 +1,21 @@ 27.4 # SliTaz package receipt. 27.5 + 27.6 PACKAGE="xorg-libXfixes-dev" 27.7 -VERSION="5.0.1" 27.8 +VERSION="5.0" 27.9 CATEGORY="development" 27.10 -SHORT_DESC="Xorg module devel files." 27.11 +SHORT_DESC="Development files for libXfixes" 27.12 MAINTAINER="pankso@slitaz.org" 27.13 WANTED="xorg-libXfixes" 27.14 SOURCE="libXfixes" 27.15 WEB_SITE="http://www.x.org/" 27.16 27.17 -DEPENDS="xorg-libXfixes xorg-fixesproto xorg-libX11-dev" 27.18 +DEPENDS="xorg-libXfixes xorg-xproto xorg-fixesproto xorg-libX11-dev" 27.19 27.20 # Rules to gen a SliTaz package suitable for Tazpkg. 27.21 genpkg_rules() 27.22 { 27.23 mkdir -p $fs/usr/lib 27.24 - 27.25 + 27.26 cp -a $install/usr/lib/*.*a* $fs/usr/lib 27.27 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 27.28 cp -a $install/usr/include $fs/usr
28.1 --- a/xorg-libXfixes/receipt Wed May 29 01:40:09 2013 +0000 28.2 +++ b/xorg-libXfixes/receipt Fri May 31 00:58:07 2013 +0000 28.3 @@ -1,24 +1,24 @@ 28.4 # SliTaz package receipt. 28.5 28.6 PACKAGE="xorg-libXfixes" 28.7 -VERSION="5.0.1" 28.8 +VERSION="5.0" 28.9 CATEGORY="x-window" 28.10 -SHORT_DESC="Xorg server module." 28.11 +SHORT_DESC="X Fixes Library" 28.12 MAINTAINER="pankso@slitaz.org" 28.13 SOURCE="libXfixes" 28.14 TARBALL="$SOURCE-$VERSION.tar.bz2" 28.15 WEB_SITE="http://www.x.org/" 28.16 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 28.17 28.18 -DEPENDS="xorg-libX11" 28.19 +DEPENDS="glibc-base libxcb xorg-libX11 xorg-libXau xorg-libXdmcp" 28.20 BUILD_DEPENDS="xorg-fixesproto xorg-libX11-dev" 28.21 28.22 # Rules to configure and make the package. 28.23 compile_rules() 28.24 { 28.25 - cd $src 28.26 - ./configure --prefix=/usr --sysconfdir=/etc \ 28.27 - --mandir=/usr/share/man --localstatedir=/var \ 28.28 + ./configure \ 28.29 + --sysconfdir=/etc \ 28.30 + --localstatedir=/var \ 28.31 $CONFIGURE_ARGS && 28.32 make && 28.33 make DESTDIR=$DESTDIR install
29.1 --- a/xorg-makedepend/receipt Wed May 29 01:40:09 2013 +0000 29.2 +++ b/xorg-makedepend/receipt Fri May 31 00:58:07 2013 +0000 29.3 @@ -1,30 +1,34 @@ 29.4 # SliTaz package receipt. 29.5 29.6 PACKAGE="xorg-makedepend" 29.7 -VERSION="1.0.3" 29.8 -CATEGORY="x-window" 29.9 -SHORT_DESC="X makedepend utility." 29.10 +VERSION="1.0.4" 29.11 +CATEGORY="development" 29.12 +SHORT_DESC="Create dependencies in makefiles" 29.13 MAINTAINER="gokhlayeh@slitaz.org" 29.14 +LICENSE="other" 29.15 +WEB_SITE="http://www.x.org/" 29.16 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 29.17 +WGET_URL="$XORG_MIRROR/util/$TARBALL" 29.18 + 29.19 +DEPENDS="glibc-base xorg-xproto" 29.20 BUILD_DEPENDS="xorg-xproto" 29.21 -SOURCE="makedepend" 29.22 -TARBALL="$SOURCE-$VERSION.tar.bz2" 29.23 -WEB_SITE="http://www.x.org/" 29.24 -WGET_URL="$XORG_MIRROR/util/$TARBALL" 29.25 29.26 # Rules to configure and make the package. 29.27 compile_rules() 29.28 { 29.29 - cd $src 29.30 - ./configure --prefix=/usr --mandir=/usr/share/man \ 29.31 - $CONFIGURE_ARGS 29.32 - make 29.33 - make DESTDIR=$PWD/_pkg install 29.34 - chmod +x $PWD/_pkg/usr/bin/* 29.35 + ./configure \ 29.36 + --sysconfdir=/etc \ 29.37 + --localstatedir=/var \ 29.38 + $CONFIGURE_ARGS && 29.39 + make && 29.40 + make install 29.41 } 29.42 29.43 # Rules to gen a SliTaz package suitable for Tazpkg. 29.44 genpkg_rules() 29.45 { 29.46 - mkdir -p $fs/usr 29.47 - cp -a $_pkg/usr/bin $fs/usr 29.48 + mkdir -p $fs/usr/share/licenses 29.49 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 29.50 + 29.51 + cp -a $install/usr/bin $fs/usr 29.52 }
30.1 --- a/xorg-printproto/receipt Wed May 29 01:40:09 2013 +0000 30.2 +++ b/xorg-printproto/receipt Fri May 31 00:58:07 2013 +0000 30.3 @@ -1,33 +1,35 @@ 30.4 # SliTaz package receipt. 30.5 30.6 PACKAGE="xorg-printproto" 30.7 -SOURCE="printproto" 30.8 VERSION="1.0.5" 30.9 CATEGORY="development" 30.10 -SHORT_DESC="Xorg server devel module." 30.11 +SHORT_DESC="Print extension headers" 30.12 MAINTAINER="rcx@zoominternet.net" 30.13 -DEPENDS="xorg-util-macros" 30.14 +LICENSE="other" 30.15 +WEB_SITE="http://www.x.org/" 30.16 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 30.17 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 30.18 + 30.19 +DEPENDS="xorg-fontsproto xorg-libX11-dev xorg-libXau-dev" 30.20 BUILD_DEPENDS="xorg-util-macros" 30.21 -TARBALL="$SOURCE-$VERSION.tar.bz2" 30.22 -WEB_SITE="http://www.x.org/" 30.23 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 30.24 30.25 # Rules to configure and make the package. 30.26 compile_rules() 30.27 { 30.28 - cd $src 30.29 ./configure \ 30.30 - --prefix=/usr \ 30.31 - --infodir=/usr/share/info \ 30.32 - --mandir=/usr/share/man \ 30.33 + --sysconfdir=/etc \ 30.34 + --localstatedir=/var \ 30.35 $CONFIGURE_ARGS && 30.36 - make && make DESTDIR=$PWD/_pkg install 30.37 + make && 30.38 + make install 30.39 } 30.40 30.41 # Rules to gen a SliTaz package suitable for Tazpkg. 30.42 genpkg_rules() 30.43 { 30.44 - mkdir -p $fs 30.45 - cp -a $_pkg/usr $fs 30.46 + mkdir -p $fs/usr/share/licenses 30.47 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 30.48 + 30.49 + cp -a $install/* $fs 30.50 + rm -rf $fs/usr/share/man 30.51 } 30.52 -
31.1 --- a/xorg-randrproto/receipt Wed May 29 01:40:09 2013 +0000 31.2 +++ b/xorg-randrproto/receipt Fri May 31 00:58:07 2013 +0000 31.3 @@ -1,31 +1,35 @@ 31.4 # SliTaz package receipt. 31.5 31.6 PACKAGE="xorg-randrproto" 31.7 -VERSION="1.3.2" 31.8 -#VERSION="1.3.1" 31.9 +VERSION="1.4.0" 31.10 CATEGORY="development" 31.11 -SHORT_DESC="Xorg server module." 31.12 +SHORT_DESC="Randr extension headers" 31.13 MAINTAINER="pankso@slitaz.org" 31.14 -DEPENDS="xorg-util-macros" 31.15 +LICENSE="other" 31.16 +WEB_SITE="http://www.x.org/" 31.17 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 31.18 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 31.19 + 31.20 +DEPENDS="xorg-renderproto" 31.21 BUILD_DEPENDS="xorg-util-macros" 31.22 -SOURCE="randrproto" 31.23 -TARBALL="$SOURCE-$VERSION.tar.bz2" 31.24 -WEB_SITE="http://www.x.org/" 31.25 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 31.26 31.27 # Rules to configure and make the package. 31.28 compile_rules() 31.29 { 31.30 - cd $src 31.31 - ./configure --prefix=/usr --sysconfdir=/etc \ 31.32 - --mandir=/usr/share/man --localstatedir=/var \ 31.33 - $CONFIGURE_ARGS 31.34 - make 31.35 - make DESTDIR=$PWD/_pkg install 31.36 + ./configure \ 31.37 + --sysconfdir=/etc \ 31.38 + --localstatedir=/var \ 31.39 + $CONFIGURE_ARGS && 31.40 + make && 31.41 + make install 31.42 } 31.43 31.44 # Rules to gen a SliTaz package suitable for Tazpkg. 31.45 genpkg_rules() 31.46 { 31.47 - cp -a $_pkg/* $fs 31.48 + mkdir -p $fs/usr/share/licenses 31.49 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 31.50 + 31.51 + cp -a $install/* $fs 31.52 + rm -rf $fs/usr/share/doc 31.53 }
32.1 --- a/xorg-recordproto/receipt Wed May 29 01:40:09 2013 +0000 32.2 +++ b/xorg-recordproto/receipt Fri May 31 00:58:07 2013 +0000 32.3 @@ -3,11 +3,11 @@ 32.4 PACKAGE="xorg-recordproto" 32.5 VERSION="1.14.2" 32.6 CATEGORY="development" 32.7 -SHORT_DESC="Xorg record protol." 32.8 +SHORT_DESC="Record extension headers" 32.9 MAINTAINER="pankso@slitaz.org" 32.10 -SOURCE="recordproto" 32.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 32.12 +LICENSE="other" 32.13 WEB_SITE="http://www.x.org/" 32.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 32.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 32.16 32.17 DEPENDS="xorg-util-macros" 32.18 @@ -16,17 +16,20 @@ 32.19 # Rules to configure and make the package. 32.20 compile_rules() 32.21 { 32.22 - cd $src 32.23 ./configure \ 32.24 --sysconfdir=/etc \ 32.25 - --mandir=/usr/share/man \ 32.26 --localstatedir=/var \ 32.27 $CONFIGURE_ARGS && 32.28 - make && make install 32.29 + make && 32.30 + make install 32.31 } 32.32 32.33 # Rules to gen a SliTaz package suitable for Tazpkg. 32.34 genpkg_rules() 32.35 { 32.36 + mkdir -p $fs/usr/share/licenses 32.37 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 32.38 + 32.39 cp -a $install/* $fs 32.40 + rm -rf $fs/usr/share/doc 32.41 }
33.1 --- a/xorg-renderproto/receipt Wed May 29 01:40:09 2013 +0000 33.2 +++ b/xorg-renderproto/receipt Fri May 31 00:58:07 2013 +0000 33.3 @@ -3,29 +3,33 @@ 33.4 PACKAGE="xorg-renderproto" 33.5 VERSION="0.11.1" 33.6 CATEGORY="development" 33.7 -SHORT_DESC="Xorg server module." 33.8 +SHORT_DESC="Render extension headers" 33.9 MAINTAINER="pankso@slitaz.org" 33.10 -DEPENDS="xorg-util-macros" 33.11 +LICENSE="other" 33.12 +WEB_SITE="http://www.x.org/" 33.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 33.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 33.15 + 33.16 +DEPENDS="xorg-xproto" 33.17 BUILD_DEPENDS="xorg-util-macros" 33.18 -SOURCE="renderproto" 33.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 33.20 -WEB_SITE="http://www.x.org/" 33.21 -WGET_URL="http://xorg.freedesktop.org/releases/individual/proto/$TARBALL" 33.22 33.23 # Rules to configure and make the package. 33.24 compile_rules() 33.25 { 33.26 - cd $src 33.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 33.28 - --mandir=/usr/share/man --localstatedir=/var \ 33.29 - $CONFIGURE_ARGS 33.30 - make 33.31 - make DESTDIR=$PWD/_pkg install 33.32 + ./configure \ 33.33 + --sysconfdir=/etc \ 33.34 + --localstatedir=/var \ 33.35 + $CONFIGURE_ARGS && 33.36 + make && 33.37 + make install 33.38 } 33.39 33.40 # Rules to gen a SliTaz package suitable for Tazpkg. 33.41 genpkg_rules() 33.42 { 33.43 - cp -a $_pkg/* $fs 33.44 + mkdir -p $fs/usr/share/licenses 33.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 33.46 + 33.47 + cp -a $install/* $fs 33.48 + rm -rf $fs/usr/share/doc 33.49 } 33.50 -
34.1 --- a/xorg-resourceproto/receipt Wed May 29 01:40:09 2013 +0000 34.2 +++ b/xorg-resourceproto/receipt Fri May 31 00:58:07 2013 +0000 34.3 @@ -1,31 +1,35 @@ 34.4 # SliTaz package receipt. 34.5 34.6 PACKAGE="xorg-resourceproto" 34.7 -VERSION="1.1.1" 34.8 +VERSION="1.2.0" 34.9 CATEGORY="development" 34.10 -SHORT_DESC="Xorg server module." 34.11 +SHORT_DESC="Resource extension headers" 34.12 MAINTAINER="pankso@slitaz.org" 34.13 +LICENSE="other" 34.14 +WEB_SITE="http://www.x.org/" 34.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 34.16 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 34.17 + 34.18 DEPENDS="xorg-util-macros" 34.19 BUILD_DEPENDS="xorg-util-macros" 34.20 -SOURCE="resourceproto" 34.21 -TARBALL="$SOURCE-$VERSION.tar.bz2" 34.22 -WEB_SITE="http://www.x.org/" 34.23 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 34.24 34.25 # Rules to configure and make the package. 34.26 compile_rules() 34.27 { 34.28 - cd $src 34.29 - ./configure --prefix=/usr --sysconfdir=/etc \ 34.30 - --mandir=/usr/share/man --localstatedir=/var \ 34.31 - $CONFIGURE_ARGS 34.32 - make 34.33 - make DESTDIR=$PWD/_pkg install 34.34 + ./configure \ 34.35 + --sysconfdir=/etc \ 34.36 + --localstatedir=/var \ 34.37 + $CONFIGURE_ARGS && 34.38 + make && 34.39 + make install 34.40 } 34.41 34.42 # Rules to gen a SliTaz package suitable for Tazpkg. 34.43 genpkg_rules() 34.44 { 34.45 - cp -a $_pkg/* $fs 34.46 + mkdir -p $fs/usr/share/licenses 34.47 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 34.48 + 34.49 + cp -a $install/* $fs 34.50 + rm -rf $fs/usr/share/doc 34.51 } 34.52 -
35.1 --- a/xorg-scrnsaverproto/receipt Wed May 29 01:40:09 2013 +0000 35.2 +++ b/xorg-scrnsaverproto/receipt Fri May 31 00:58:07 2013 +0000 35.3 @@ -1,31 +1,35 @@ 35.4 # SliTaz package receipt. 35.5 35.6 PACKAGE="xorg-scrnsaverproto" 35.7 -VERSION="1.2.1" 35.8 +VERSION="1.2.2" 35.9 CATEGORY="development" 35.10 -SHORT_DESC="Xorg server protocol." 35.11 +SHORT_DESC="ScrnSaver extension headers" 35.12 MAINTAINER="pankso@slitaz.org" 35.13 +LICENSE="other" 35.14 +WEB_SITE="http://www.x.org/" 35.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 35.16 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 35.17 + 35.18 DEPENDS="xorg-util-macros" 35.19 BUILD_DEPENDS="xorg-util-macros" 35.20 -SOURCE="scrnsaverproto" 35.21 -TARBALL="$SOURCE-$VERSION.tar.bz2" 35.22 -WEB_SITE="http://www.x.org/" 35.23 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 35.24 35.25 # Rules to configure and make the package. 35.26 compile_rules() 35.27 { 35.28 - cd $src 35.29 - ./configure --prefix=/usr --sysconfdir=/etc \ 35.30 - --mandir=/usr/share/man --localstatedir=/var \ 35.31 - $CONFIGURE_ARGS 35.32 - make 35.33 - make DESTDIR=$PWD/_pkg install 35.34 + ./configure \ 35.35 + --sysconfdir=/etc \ 35.36 + --localstatedir=/var \ 35.37 + $CONFIGURE_ARGS && 35.38 + make && 35.39 + make install 35.40 } 35.41 35.42 # Rules to gen a SliTaz package suitable for Tazpkg. 35.43 genpkg_rules() 35.44 { 35.45 - cp -a $_pkg/* $fs 35.46 + mkdir -p $fs/usr/share/licenses 35.47 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 35.48 + 35.49 + cp -a $install/* $fs 35.50 + rm -rf $fs/usr/share/doc 35.51 } 35.52 -
36.1 --- a/xorg-trapproto/receipt Wed May 29 01:40:09 2013 +0000 36.2 +++ b/xorg-trapproto/receipt Fri May 31 00:58:07 2013 +0000 36.3 @@ -3,27 +3,34 @@ 36.4 PACKAGE="xorg-trapproto" 36.5 VERSION="3.4.3" 36.6 CATEGORY="development" 36.7 -SHORT_DESC="Xorg server protocol." 36.8 +SHORT_DESC="Trap extension headers" 36.9 MAINTAINER="pankso@slitaz.org" 36.10 -SOURCE="trapproto" 36.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 36.12 +LICENSE="other" 36.13 WEB_SITE="http://www.x.org/" 36.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 36.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 36.16 36.17 +DEPENDS="xorg-libX11-dev xorg-server-dev xorg-xproto" 36.18 +# /usr/include/X11/extensions/xtraplib.h: #include <X11/Intrinsic.h> ? 36.19 +# /usr/lib/pkgconfigtrapproto.pc: Requires: xt.pc ? 36.20 +BUILD_DEPENDS="xorg-util-macros" 36.21 + 36.22 # Rules to configure and make the package. 36.23 compile_rules() 36.24 { 36.25 - cd $src 36.26 - ./configure --prefix=/usr --sysconfdir=/etc \ 36.27 - --mandir=/usr/share/man --localstatedir=/var \ 36.28 - $CONFIGURE_ARGS 36.29 - make 36.30 - make DESTDIR=$PWD/_pkg install 36.31 + ./configure \ 36.32 + --sysconfdir=/etc \ 36.33 + --localstatedir=/var \ 36.34 + $CONFIGURE_ARGS && 36.35 + make && 36.36 + make install 36.37 } 36.38 36.39 # Rules to gen a SliTaz package suitable for Tazpkg. 36.40 genpkg_rules() 36.41 { 36.42 - cp -a $_pkg/* $fs 36.43 + mkdir -p $fs/usr/share/licenses 36.44 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 36.45 + 36.46 + cp -a $install/* $fs 36.47 } 36.48 -
37.1 --- a/xorg-util-macros/receipt Wed May 29 01:40:09 2013 +0000 37.2 +++ b/xorg-util-macros/receipt Fri May 31 00:58:07 2013 +0000 37.3 @@ -3,27 +3,31 @@ 37.4 PACKAGE="xorg-util-macros" 37.5 VERSION="1.17" 37.6 CATEGORY="development" 37.7 -SHORT_DESC="X.Org Autotools macros" 37.8 +SHORT_DESC="A set of autoconf project macros for X.Org modules" 37.9 MAINTAINER="gokhlayeh@slitaz.org" 37.10 -SOURCE="util-macros" 37.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 37.12 +LICENSE="other" 37.13 WEB_SITE="http://www.x.org/" 37.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 37.15 WGET_URL="$XORG_MIRROR/util/$TARBALL" 37.16 37.17 +DEPENDS="m4 pkg-config" 37.18 + 37.19 # Rules to configure and make the package. 37.20 compile_rules() 37.21 { 37.22 - cd $src 37.23 ./configure \ 37.24 --sysconfdir=/etc \ 37.25 - --mandir=/usr/share/man \ 37.26 --localstatedir=/var \ 37.27 $CONFIGURE_ARGS && 37.28 - make && make install 37.29 + make && 37.30 + make install 37.31 } 37.32 37.33 # Rules to gen a SliTaz package suitable for Tazpkg. 37.34 genpkg_rules() 37.35 { 37.36 + mkdir -p $fs/usr/share/licenses 37.37 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 37.38 + 37.39 cp -a $install/* $fs 37.40 }
38.1 --- a/xorg-videoproto/receipt Wed May 29 01:40:09 2013 +0000 38.2 +++ b/xorg-videoproto/receipt Fri May 31 00:58:07 2013 +0000 38.3 @@ -3,29 +3,33 @@ 38.4 PACKAGE="xorg-videoproto" 38.5 VERSION="2.3.1" 38.6 CATEGORY="development" 38.7 -SHORT_DESC="Xorg server protocol." 38.8 +SHORT_DESC="Video extension headers" 38.9 MAINTAINER="pankso@slitaz.org" 38.10 -DEPENDS="xorg-util-macros" 38.11 +LICENSE="other" 38.12 +WEB_SITE="http://www.x.org/" 38.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 38.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 38.15 + 38.16 +DEPENDS="xorg-libX11-dev xorg-xproto" 38.17 BUILD_DEPENDS="xorg-util-macros" 38.18 -SOURCE="videoproto" 38.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 38.20 -WEB_SITE="http://www.x.org/" 38.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 38.22 38.23 # Rules to configure and make the package. 38.24 compile_rules() 38.25 { 38.26 - cd $src 38.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 38.28 - --mandir=/usr/share/man --localstatedir=/var \ 38.29 - $CONFIGURE_ARGS 38.30 - make 38.31 - make DESTDIR=$PWD/_pkg install 38.32 + ./configure \ 38.33 + --sysconfdir=/etc \ 38.34 + --localstatedir=/var \ 38.35 + $CONFIGURE_ARGS && 38.36 + make && 38.37 + make install 38.38 } 38.39 38.40 # Rules to gen a SliTaz package suitable for Tazpkg. 38.41 genpkg_rules() 38.42 { 38.43 - cp -a $_pkg/* $fs 38.44 + mkdir -p $fs/usr/share/licenses 38.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 38.46 + 38.47 + cp -a $install/* $fs 38.48 + rm -rf $fs/usr/share/doc 38.49 } 38.50 -
39.1 --- a/xorg-xcmiscproto/receipt Wed May 29 01:40:09 2013 +0000 39.2 +++ b/xorg-xcmiscproto/receipt Fri May 31 00:58:07 2013 +0000 39.3 @@ -1,31 +1,35 @@ 39.4 # SliTaz package receipt. 39.5 39.6 PACKAGE="xorg-xcmiscproto" 39.7 -VERSION="1.2.1" 39.8 +VERSION="1.2.2" 39.9 CATEGORY="development" 39.10 -SHORT_DESC="Xorg server module." 39.11 +SHORT_DESC="XCMisc extension headers" 39.12 MAINTAINER="pankso@slitaz.org" 39.13 +LICENSE="other" 39.14 +WEB_SITE="http://www.x.org/" 39.15 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 39.16 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 39.17 + 39.18 DEPENDS="xorg-util-macros" 39.19 BUILD_DEPENDS="xorg-util-macros" 39.20 -SOURCE="xcmiscproto" 39.21 -TARBALL="$SOURCE-$VERSION.tar.bz2" 39.22 -WEB_SITE="http://www.x.org/" 39.23 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 39.24 39.25 # Rules to configure and make the package. 39.26 compile_rules() 39.27 { 39.28 - cd $src 39.29 - ./configure --prefix=/usr --sysconfdir=/etc \ 39.30 - --mandir=/usr/share/man --localstatedir=/var \ 39.31 - $CONFIGURE_ARGS 39.32 - make 39.33 - make DESTDIR=$PWD/_pkg install 39.34 + ./configure \ 39.35 + --sysconfdir=/etc \ 39.36 + --localstatedir=/var \ 39.37 + $CONFIGURE_ARGS && 39.38 + make && 39.39 + make install 39.40 } 39.41 39.42 # Rules to gen a SliTaz package suitable for Tazpkg. 39.43 genpkg_rules() 39.44 { 39.45 - cp -a $_pkg/* $fs 39.46 + mkdir -p $fs/usr/share/licenses 39.47 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 39.48 + 39.49 + cp -a $install/* $fs 39.50 + rm -rf $fs/usr/share/doc 39.51 } 39.52 -
40.1 --- a/xorg-xextproto/receipt Wed May 29 01:40:09 2013 +0000 40.2 +++ b/xorg-xextproto/receipt Fri May 31 00:58:07 2013 +0000 40.3 @@ -3,29 +3,33 @@ 40.4 PACKAGE="xorg-xextproto" 40.5 VERSION="7.2.1" 40.6 CATEGORY="development" 40.7 -SHORT_DESC="Xorg server module." 40.8 +SHORT_DESC="XExt extension headers" 40.9 MAINTAINER="pankso@slitaz.org" 40.10 +LICENSE="other" 40.11 +WEB_SITE="http://www.x.org/" 40.12 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 40.13 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 40.14 + 40.15 DEPENDS="xorg-util-macros" 40.16 BUILD_DEPENDS="xorg-util-macros" 40.17 -SOURCE="xextproto" 40.18 -TARBALL="$SOURCE-$VERSION.tar.bz2" 40.19 -WEB_SITE="http://www.x.org/" 40.20 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 40.21 40.22 # Rules to configure and make the package. 40.23 compile_rules() 40.24 { 40.25 - cd $src 40.26 ./configure \ 40.27 --sysconfdir=/etc \ 40.28 - --mandir=/usr/share/man \ 40.29 --localstatedir=/var \ 40.30 $CONFIGURE_ARGS && 40.31 - make && make install 40.32 + make && 40.33 + make install 40.34 } 40.35 40.36 # Rules to gen a SliTaz package suitable for Tazpkg. 40.37 genpkg_rules() 40.38 { 40.39 + mkdir -p $fs/usr/share/licenses 40.40 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 40.41 + 40.42 cp -a $install/* $fs 40.43 + rm -rf $fs/usr/share/doc 40.44 }
41.1 --- a/xorg-xf86bigfontproto/receipt Wed May 29 01:40:09 2013 +0000 41.2 +++ b/xorg-xf86bigfontproto/receipt Fri May 31 00:58:07 2013 +0000 41.3 @@ -3,27 +3,32 @@ 41.4 PACKAGE="xorg-xf86bigfontproto" 41.5 VERSION="1.2.0" 41.6 CATEGORY="development" 41.7 -SHORT_DESC="Xorg server protocol." 41.8 +SHORT_DESC="XF86BigFont extension headers" 41.9 MAINTAINER="pankso@slitaz.org" 41.10 -SOURCE="xf86bigfontproto" 41.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 41.12 +LICENSE="other" 41.13 WEB_SITE="http://www.x.org/" 41.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 41.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 41.16 41.17 +DEPENDS="xorg-util-macros" 41.18 +BUILD_DEPENDS="xorg-util-macros" 41.19 + 41.20 # Rules to configure and make the package. 41.21 compile_rules() 41.22 { 41.23 - cd $src 41.24 - ./configure --prefix=/usr --sysconfdir=/etc \ 41.25 - --mandir=/usr/share/man --localstatedir=/var \ 41.26 - $CONFIGURE_ARGS 41.27 - make 41.28 - make DESTDIR=$PWD/_pkg install 41.29 + ./configure \ 41.30 + --sysconfdir=/etc \ 41.31 + --localstatedir=/var \ 41.32 + $CONFIGURE_ARGS && 41.33 + make && 41.34 + make install 41.35 } 41.36 41.37 # Rules to gen a SliTaz package suitable for Tazpkg. 41.38 genpkg_rules() 41.39 { 41.40 - cp -a $_pkg/* $fs 41.41 + mkdir -p $fs/usr/share/licenses 41.42 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 41.43 + 41.44 + cp -a $install/* $fs 41.45 } 41.46 -
42.1 --- a/xorg-xf86dgaproto/receipt Wed May 29 01:40:09 2013 +0000 42.2 +++ b/xorg-xf86dgaproto/receipt Fri May 31 00:58:07 2013 +0000 42.3 @@ -3,27 +3,33 @@ 42.4 PACKAGE="xorg-xf86dgaproto" 42.5 VERSION="2.1" 42.6 CATEGORY="development" 42.7 -SHORT_DESC="Xorg server protocol." 42.8 +SHORT_DESC="XF86DGA extension headers" 42.9 MAINTAINER="pankso@slitaz.org" 42.10 -SOURCE="xf86dgaproto" 42.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 42.12 +LICENSE="other" 42.13 WEB_SITE="http://www.x.org/" 42.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 42.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 42.16 42.17 +DEPENDS="xorg-util-macros" 42.18 +# /usr/include/X11/extensions/xf86dga.h: #include <X11/extensions/Xxf86dga.h> ? 42.19 +BUILD_DEPENDS="xorg-util-macros" 42.20 + 42.21 # Rules to configure and make the package. 42.22 compile_rules() 42.23 { 42.24 - cd $src 42.25 - ./configure --prefix=/usr --sysconfdir=/etc \ 42.26 - --mandir=/usr/share/man --localstatedir=/var \ 42.27 - $CONFIGURE_ARGS 42.28 - make 42.29 - make DESTDIR=$PWD/_pkg install 42.30 + ./configure \ 42.31 + --sysconfdir=/etc \ 42.32 + --localstatedir=/var \ 42.33 + $CONFIGURE_ARGS && 42.34 + make && 42.35 + make install 42.36 } 42.37 42.38 # Rules to gen a SliTaz package suitable for Tazpkg. 42.39 genpkg_rules() 42.40 { 42.41 - cp -a $_pkg/* $fs 42.42 + mkdir -p $fs/usr/share/licenses 42.43 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 42.44 + 42.45 + cp -a $install/* $fs 42.46 } 42.47 -
43.1 --- a/xorg-xf86driproto/receipt Wed May 29 01:40:09 2013 +0000 43.2 +++ b/xorg-xf86driproto/receipt Fri May 31 00:58:07 2013 +0000 43.3 @@ -3,29 +3,32 @@ 43.4 PACKAGE="xorg-xf86driproto" 43.5 VERSION="2.1.1" 43.6 CATEGORY="development" 43.7 -SHORT_DESC="Xorg server protocol." 43.8 +SHORT_DESC="XF86DRI extension headers" 43.9 MAINTAINER="pankso@slitaz.org" 43.10 -SOURCE="xf86driproto" 43.11 -DEPENDS="xorg-util-macros" 43.12 +LICENSE="other" 43.13 +WEB_SITE="http://www.x.org/" 43.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 43.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 43.16 + 43.17 +DEPENDS="xorg-util-macros libdrm-dev" 43.18 BUILD_DEPENDS="xorg-util-macros" 43.19 -TARBALL="$SOURCE-$VERSION.tar.bz2" 43.20 -WEB_SITE="http://www.x.org/" 43.21 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 43.22 43.23 # Rules to configure and make the package. 43.24 compile_rules() 43.25 { 43.26 - cd $src 43.27 - ./configure --prefix=/usr --sysconfdir=/etc \ 43.28 - --mandir=/usr/share/man --localstatedir=/var \ 43.29 - $CONFIGURE_ARGS 43.30 - make 43.31 - make DESTDIR=$PWD/_pkg install 43.32 + ./configure \ 43.33 + --sysconfdir=/etc \ 43.34 + --localstatedir=/var \ 43.35 + $CONFIGURE_ARGS && 43.36 + make && 43.37 + make install 43.38 } 43.39 43.40 # Rules to gen a SliTaz package suitable for Tazpkg. 43.41 genpkg_rules() 43.42 { 43.43 - cp -a $_pkg/* $fs 43.44 + mkdir -p $fs/usr/share/licenses 43.45 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 43.46 + 43.47 + cp -a $install/* $fs 43.48 } 43.49 -
44.1 --- a/xorg-xf86miscproto/receipt Wed May 29 01:40:09 2013 +0000 44.2 +++ b/xorg-xf86miscproto/receipt Fri May 31 00:58:07 2013 +0000 44.3 @@ -3,27 +3,32 @@ 44.4 PACKAGE="xorg-xf86miscproto" 44.5 VERSION="0.9.3" 44.6 CATEGORY="development" 44.7 -SHORT_DESC="Xorg server protocol." 44.8 +SHORT_DESC="XF86Misc extension headers" 44.9 MAINTAINER="pankso@slitaz.org" 44.10 -SOURCE="xf86miscproto" 44.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 44.12 +LICENSE="other" 44.13 WEB_SITE="http://www.x.org/" 44.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 44.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 44.16 44.17 +DEPENDS="xorg-xproto" 44.18 +BUILD_DEPENDS="xorg-util-macros" 44.19 + 44.20 # Rules to configure and make the package. 44.21 compile_rules() 44.22 { 44.23 - cd $src 44.24 - ./configure --prefix=/usr --sysconfdir=/etc \ 44.25 - --mandir=/usr/share/man --localstatedir=/var \ 44.26 - $CONFIGURE_ARGS 44.27 - make 44.28 - make DESTDIR=$PWD/_pkg install 44.29 + ./configure \ 44.30 + --sysconfdir=/etc \ 44.31 + --localstatedir=/var \ 44.32 + $CONFIGURE_ARGS && 44.33 + make && 44.34 + make install 44.35 } 44.36 44.37 # Rules to gen a SliTaz package suitable for Tazpkg. 44.38 genpkg_rules() 44.39 { 44.40 - cp -a $_pkg/* $fs 44.41 + mkdir -p $fs/usr/share/licenses 44.42 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 44.43 + 44.44 + cp -a $install/* $fs 44.45 } 44.46 -
45.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 45.2 +++ b/xorg-xf86rushproto/receipt Fri May 31 00:58:07 2013 +0000 45.3 @@ -0,0 +1,34 @@ 45.4 +# SliTaz package receipt. 45.5 + 45.6 +PACKAGE="xorg-xf86rushproto" 45.7 +VERSION="1.1.2" 45.8 +CATEGORY="development" 45.9 +SHORT_DESC="XF86Rush extension headers" 45.10 +MAINTAINER="pankso@slitaz.org" 45.11 +LICENSE="other" 45.12 +WEB_SITE="http://www.x.org/" 45.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 45.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 45.15 + 45.16 +DEPENDS="xorg-videoproto" 45.17 +BUILD_DEPENDS="xorg-util-macros" 45.18 + 45.19 +# Rules to configure and make the package. 45.20 +compile_rules() 45.21 +{ 45.22 + ./configure \ 45.23 + --sysconfdir=/etc \ 45.24 + --localstatedir=/var \ 45.25 + $CONFIGURE_ARGS && 45.26 + make && 45.27 + make install 45.28 +} 45.29 + 45.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 45.31 +genpkg_rules() 45.32 +{ 45.33 + mkdir -p $fs/usr/share/licenses 45.34 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 45.35 + 45.36 + cp -a $install/* $fs 45.37 +}
46.1 --- a/xorg-xf86vidmodeproto/receipt Wed May 29 01:40:09 2013 +0000 46.2 +++ b/xorg-xf86vidmodeproto/receipt Fri May 31 00:58:07 2013 +0000 46.3 @@ -3,28 +3,32 @@ 46.4 PACKAGE="xorg-xf86vidmodeproto" 46.5 VERSION="2.3.1" 46.6 CATEGORY="development" 46.7 -SHORT_DESC="Xorg server protocol." 46.8 +SHORT_DESC="XF86VidMode extension headers" 46.9 MAINTAINER="pankso@slitaz.org" 46.10 -SOURCE="xf86vidmodeproto" 46.11 -TARBALL="$SOURCE-$VERSION.tar.bz2" 46.12 +LICENSE="other" 46.13 WEB_SITE="http://www.x.org/" 46.14 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 46.15 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 46.16 46.17 +DEPENDS="xorg-xproto" 46.18 +BUILD_DEPENDS="xorg-util-macros" 46.19 + 46.20 # Rules to configure and make the package. 46.21 compile_rules() 46.22 { 46.23 - cd $src 46.24 ./configure \ 46.25 --sysconfdir=/etc \ 46.26 - --mandir=/usr/share/man \ 46.27 --localstatedir=/var \ 46.28 $CONFIGURE_ARGS && 46.29 - make && make install 46.30 + make && 46.31 + make install 46.32 } 46.33 46.34 # Rules to gen a SliTaz package suitable for Tazpkg. 46.35 genpkg_rules() 46.36 { 46.37 + mkdir -p $fs/usr/share/licenses 46.38 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 46.39 + 46.40 cp -a $install/* $fs 46.41 } 46.42 -
47.1 --- a/xorg-xineramaproto/receipt Wed May 29 01:40:09 2013 +0000 47.2 +++ b/xorg-xineramaproto/receipt Fri May 31 00:58:07 2013 +0000 47.3 @@ -3,29 +3,32 @@ 47.4 PACKAGE="xorg-xineramaproto" 47.5 VERSION="1.2.1" 47.6 CATEGORY="development" 47.7 -SHORT_DESC="Xorg server module." 47.8 +SHORT_DESC="Xinerama extension headers" 47.9 MAINTAINER="pankso@slitaz.org" 47.10 -SOURCE="xineramaproto" 47.11 +LICENSE="other" 47.12 +WEB_SITE="http://www.x.org/" 47.13 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 47.14 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 47.15 + 47.16 DEPENDS="xorg-util-macros" 47.17 BUILD_DEPENDS="xorg-util-macros" 47.18 -TARBALL="$SOURCE-$VERSION.tar.bz2" 47.19 -WEB_SITE="http://www.x.org/" 47.20 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 47.21 47.22 # Rules to configure and make the package. 47.23 compile_rules() 47.24 { 47.25 - cd $src 47.26 - ./configure --prefix=/usr --sysconfdir=/etc \ 47.27 - --mandir=/usr/share/man --localstatedir=/var \ 47.28 - $CONFIGURE_ARGS 47.29 - make 47.30 - make DESTDIR=$PWD/_pkg install 47.31 + ./configure \ 47.32 + --sysconfdir=/etc \ 47.33 + --localstatedir=/var \ 47.34 + $CONFIGURE_ARGS && 47.35 + make && 47.36 + make install 47.37 } 47.38 47.39 # Rules to gen a SliTaz package suitable for Tazpkg. 47.40 genpkg_rules() 47.41 { 47.42 - cp -a $_pkg/* $fs 47.43 + mkdir -p $fs/usr/share/licenses 47.44 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 47.45 + 47.46 + cp -a $install/* $fs 47.47 } 47.48 -
48.1 --- a/xorg-xproto/receipt Wed May 29 01:40:09 2013 +0000 48.2 +++ b/xorg-xproto/receipt Fri May 31 00:58:07 2013 +0000 48.3 @@ -1,13 +1,13 @@ 48.4 # SliTaz package receipt. 48.5 48.6 PACKAGE="xorg-xproto" 48.7 -VERSION="7.0.23" 48.8 +VERSION="7.0.24" 48.9 CATEGORY="development" 48.10 -SHORT_DESC="Xorg server module." 48.11 +SHORT_DESC="Xproto headers" 48.12 MAINTAINER="pankso@slitaz.org" 48.13 -SOURCE="xproto" 48.14 -TARBALL="$SOURCE-$VERSION.tar.bz2" 48.15 +LICENSE="other" 48.16 WEB_SITE="http://www.x.org/" 48.17 +TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2" 48.18 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 48.19 48.20 DEPENDS="xorg-util-macros" 48.21 @@ -16,18 +16,20 @@ 48.22 # Rules to configure and make the package. 48.23 compile_rules() 48.24 { 48.25 - cd $src 48.26 ./configure \ 48.27 --sysconfdir=/etc \ 48.28 - --mandir=/usr/share/man \ 48.29 --localstatedir=/var \ 48.30 - $CONFIGURE_ARGS && 48.31 - make && make install 48.32 + $CONFIGURE_ARGS && 48.33 + make && 48.34 + make install 48.35 } 48.36 48.37 # Rules to gen a SliTaz package suitable for Tazpkg. 48.38 genpkg_rules() 48.39 { 48.40 + mkdir -p $fs/usr/share/licenses 48.41 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 48.42 + 48.43 cp -a $install/* $fs 48.44 + rm -rf $fs/usr/share/doc 48.45 } 48.46 -