wok-next rev 19634
Up Xorg (first chunk)
line diff
1.1 --- a/libxcb-dev/receipt Fri Feb 10 00:45:38 2017 +0200 1.2 +++ b/libxcb-dev/receipt Fri Feb 10 01:19:30 2017 +0200 1.3 @@ -1,8 +1,8 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxcb-dev" 1.7 -VERSION="1.10" 1.8 -ARM_VERSION="1.9.1" 1.9 +VERSION="1.12" 1.10 +VERSION_arm="1.9.1" 1.11 CATEGORY="development" 1.12 SHORT_DESC="Development files for libxcb" 1.13 MAINTAINER="mallory@sweetpeople.org" 1.14 @@ -15,19 +15,17 @@ 1.15 1.16 # Handle SliTaz arch 1.17 case "$SLITAZ_ARCH" in 1.18 - arm*) VERSION="$ARM_VERSION" ;; 1.19 + arm*) VERSION="$VERSION_arm" ;; 1.20 esac 1.21 1.22 case "$ARCH" in 1.23 - arm*) VERSION="$ARM_VERSION" ;; 1.24 + arm*) VERSION="$VERSION_arm" ;; 1.25 esac 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 - mkdir -p $fs/usr/lib 1.31 - cp -a $install/usr/include $fs/usr 1.32 - cp -a $install/usr/lib/*.la $fs/usr/lib 1.33 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.34 + cook_copy_files *.h *.la *.pc 1.35 + 1.36 sed -i 's|pthread-stubs||' $fs/usr/lib/pkgconfig/xcb.pc 1.37 }
2.1 --- a/libxcb/receipt Fri Feb 10 00:45:38 2017 +0200 2.2 +++ b/libxcb/receipt Fri Feb 10 01:19:30 2017 +0200 2.3 @@ -1,46 +1,53 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libxcb" 2.7 -VERSION="1.10" 2.8 -ARM_VERSION="1.9.1" 2.9 +VERSION="1.12" 2.10 +VERSION_arm="1.9.1" 2.11 CATEGORY="x-window" 2.12 SHORT_DESC="A C binding to the X11 protocol" 2.13 MAINTAINER="pankso@slitaz.org" 2.14 LICENSE="other" 2.15 -WEB_SITE="http://xcb.freedesktop.org/" 2.16 +WEB_SITE="https://xcb.freedesktop.org/" 2.17 +HOST_ARCH="i486 arm" 2.18 + 2.19 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.20 WGET_URL="${WEB_SITE}dist/$TARBALL" 2.21 -HOST_ARCH="i486 arm" 2.22 +TARBALL_arm="$PACKAGE-$VERSION_arm.tar.bz2" 2.23 +WGET_URL_arm="${WEB_SITE}dist/$TARBALL_arm" 2.24 2.25 DEPENDS="glibc-base xorg-libXau xorg-libXdmcp" 2.26 BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev \ 2.27 autoconf automake libtool" 2.28 +BUILD_DEPENDS_arm="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev" 2.29 2.30 # Handle SliTaz arch 2.31 case "$SLITAZ_ARCH" in 2.32 - arm*) VERSION="$ARM_VERSION" ;; 2.33 + arm*) VERSION="$VERSION_arm" ;; 2.34 esac 2.35 2.36 case "$ARCH" in 2.37 arm*) 2.38 # We need host xcb-proto libxslt-dev file installed 2.39 - VERSION="$ARM_VERSION" 2.40 - TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.41 - WGET_URL="${WEB_SITE}dist/$TARBALL" 2.42 - BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev" ;; 2.43 + VERSION="$VERSION_arm" 2.44 + TARBALL="$TARBALL_arm" 2.45 + WGET_URL="$WGET_URL_arm" 2.46 + BUILD_DEPENDS="$BUILD_DEPENDS_arm" 2.47 + ;; 2.48 esac 2.49 2.50 # Rules to configure and make the package. 2.51 compile_rules() 2.52 { 2.53 - # http://www.linuxfromscratch.org/blfs/view/svn/x/libxcb.html 2.54 - sed -i "s|pthread-stubs||" $src/configure.ac && 2.55 + # Package "libpthread-stubs" no more needs: 2.56 + # our platform already supply all the necessary pthread stubs. 2.57 + sed -i "s|pthread-stubs||" $src/configure.ac 2.58 + 2.59 autoreconf -fi && 2.60 ./configure \ 2.61 --enable-xinput \ 2.62 - --enable-xkb \ 2.63 - --disable-build-docs \ 2.64 + --enable-xprint \ 2.65 --disable-static \ 2.66 + --docdir='${datadir}'/doc/$PACKAGE-$VERSION \ 2.67 $CONFIGURE_ARGS && 2.68 make && 2.69 make DESTDIR=$DESTDIR install 2.70 @@ -49,10 +56,5 @@ 2.71 # Rules to gen a SliTaz package suitable for Tazpkg. 2.72 genpkg_rules() 2.73 { 2.74 - mkdir -p \ 2.75 - $fs/usr/lib \ 2.76 - $fs/usr/share/licenses 2.77 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.78 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 2.79 + cook_copy_files *.so* 2.80 } 2.81 -
3.1 --- a/xcb-proto/receipt Fri Feb 10 00:45:38 2017 +0200 3.2 +++ b/xcb-proto/receipt Fri Feb 10 01:19:30 2017 +0200 3.3 @@ -1,15 +1,16 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="xcb-proto" 3.7 -VERSION="1.10" 3.8 +VERSION="1.12" 3.9 CATEGORY="development" 3.10 SHORT_DESC="X protocol descriptions for XCB" 3.11 MAINTAINER="mallory@sweetpeople.org" 3.12 LICENSE="other" 3.13 -WEB_SITE="http://xcb.freedesktop.org/" 3.14 +WEB_SITE="https://xcb.freedesktop.org/" 3.15 +HOST_ARCH="i486 arm" 3.16 + 3.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.18 WGET_URL="${WEB_SITE}dist/$TARBALL" 3.19 -HOST_ARCH="i486 arm" 3.20 3.21 DEPENDS="python pkg-config" 3.22 BUILD_DEPENDS="python-dev libxml2-tools" 3.23 @@ -21,6 +22,8 @@ 3.24 # Rules to configure and make the package. 3.25 compile_rules() 3.26 { 3.27 + patch -p1 -i $stuff/xcb-proto-1.12-schema-1.patch 3.28 + 3.29 ./configure \ 3.30 --sysconfdir=/etc \ 3.31 --localstatedir=/var \ 3.32 @@ -32,10 +35,5 @@ 3.33 # Rules to gen a SliTaz package suitable for Tazpkg. 3.34 genpkg_rules() 3.35 { 3.36 - mkdir -p $fs/usr/share/licenses 3.37 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 3.38 - 3.39 - cp -a $install/* $fs 3.40 - # cook removes *.pyc *.pyo files by itself, but they leaves in files.list 3.41 - find $fs -name '*.py?' -delete 3.42 + cook_copy_files *.py *.pc *.xml 3.43 }
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xcb-proto/stuff/xcb-proto-1.12-schema-1.patch Fri Feb 10 01:19:30 2017 +0200 4.3 @@ -0,0 +1,52 @@ 4.4 +Submitted By: Bruce Dubbs <bdubbs at linuxfromscratch dot org> 4.5 +Date: 2016-06-01 4.6 +Initial Package Version: 1.12 4.7 +Upstream Status: Not Committed 4.8 +Origin: https://lists.freedesktop.org/archives/xcb/2016-February/010676.html 4.9 +Description: Fixes make check 4.10 + 4.11 + 4.12 +--- a/src/xcb.xsd 4.13 ++++ b/src/xcb.xsd 4.14 +@@ -44,6 +44,15 @@ authorization from the authors. 4.15 + <xsd:complexType> 4.16 + <xsd:attribute name="bytes" type="xsd:integer" use="optional" /> 4.17 + <xsd:attribute name="align" type="xsd:integer" use="optional" /> 4.18 ++ <xsd:attribute name="serialize" type="xsd:boolean" use="optional" /> 4.19 ++ </xsd:complexType> 4.20 ++ </xsd:element> 4.21 ++ 4.22 ++ <!-- Alignment --> 4.23 ++ <xsd:element name="required_start_align" > 4.24 ++ <xsd:complexType> 4.25 ++ <xsd:attribute name="align" type="xsd:integer" use="required" /> 4.26 ++ <xsd:attribute name="offset" type="xsd:integer" use="optional" /> 4.27 + </xsd:complexType> 4.28 + </xsd:element> 4.29 + 4.30 +@@ -76,14 +85,13 @@ authorization from the authors. 4.31 + <xsd:sequence> 4.32 + <!-- switch(expression) --> 4.33 + <xsd:group ref="expression" minOccurs="1" maxOccurs="1" /> 4.34 ++ <xsd:element ref="required_start_align" minOccurs="0" maxOccurs="1" /> 4.35 + <xsd:choice> 4.36 + <!-- bitcase expression - bit test --> 4.37 + <xsd:element name="bitcase" type="caseexpr" minOccurs="0" maxOccurs="unbounded" /> 4.38 + <!-- case expression - value test --> 4.39 + <xsd:element name="case" type="caseexpr" minOccurs="0" maxOccurs="unbounded" /> 4.40 + </xsd:choice> 4.41 +- <!-- default: --> 4.42 +- <xsd:group ref="fields" minOccurs="0" maxOccurs="1" /> 4.43 + </xsd:sequence> 4.44 + <xsd:attribute name="name" type="xsd:string" use="required" /> 4.45 + </xsd:complexType> 4.46 +@@ -201,6 +209,7 @@ authorization from the authors. 4.47 + <xsd:element ref="field" /> 4.48 + <xsd:element ref="list" /> 4.49 + <xsd:element ref="fd" /> 4.50 ++ <xsd:element ref="required_start_align" /> 4.51 + </xsd:choice> 4.52 + </xsd:group> 4.53 + 4.54 + 4.55 +
5.1 --- a/xorg-bigreqsproto/receipt Fri Feb 10 00:45:38 2017 +0200 5.2 +++ b/xorg-bigreqsproto/receipt Fri Feb 10 01:19:30 2017 +0200 5.3 @@ -7,10 +7,10 @@ 5.4 MAINTAINER="pankso@slitaz.org" 5.5 LICENSE="other" 5.6 WEB_SITE="http://www.x.org/" 5.7 -SOURCE="bigreqsproto" 5.8 -TARBALL="$SOURCE-$VERSION.tar.bz2" 5.9 +HOST_ARCH="i486 arm" 5.10 + 5.11 +TARBALL="bigreqsproto-$VERSION.tar.bz2" 5.12 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 5.13 -HOST_ARCH="i486 arm" 5.14 5.15 DEPENDS="xorg-util-macros pkg-config" 5.16 BUILD_DEPENDS="xorg-util-macros" 5.17 @@ -18,20 +18,11 @@ 5.18 # Rules to configure and make the package. 5.19 compile_rules() 5.20 { 5.21 - ./configure \ 5.22 - --sysconfdir=/etc \ 5.23 - --localstatedir=/var \ 5.24 - $CONFIGURE_ARGS && 5.25 - make && 5.26 - make install 5.27 + ./configure $CONFIGURE_ARGS && make && make install 5.28 } 5.29 5.30 # Rules to gen a SliTaz package suitable for Tazpkg. 5.31 genpkg_rules() 5.32 { 5.33 - mkdir -p $fs/usr/share/licenses 5.34 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 5.35 - 5.36 - cp -a $install/* $fs 5.37 - rm -rf $fs/usr/share/doc 5.38 + cook_copy_files *.h *.pc 5.39 }
6.1 --- a/xorg-compositeproto/receipt Fri Feb 10 00:45:38 2017 +0200 6.2 +++ b/xorg-compositeproto/receipt Fri Feb 10 01:19:30 2017 +0200 6.3 @@ -6,11 +6,11 @@ 6.4 SHORT_DESC="Composite extension headers" 6.5 MAINTAINER="pankso@slitaz.org" 6.6 LICENSE="other" 6.7 -WEB_SITE="http://www.x.org/" 6.8 -SOURCE="compositeproto" 6.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 6.10 +WEB_SITE="https://www.x.org/wiki/" 6.11 +HOST_ARCH="i486 arm" 6.12 + 6.13 +TARBALL="compositeproto-$VERSION.tar.bz2" 6.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 6.15 -HOST_ARCH="i486 arm" 6.16 6.17 DEPENDS="xorg-fixesproto pkg-config" 6.18 BUILD_DEPENDS="xorg-util-macros" 6.19 @@ -18,20 +18,11 @@ 6.20 # Rules to configure and make the package. 6.21 compile_rules() 6.22 { 6.23 - ./configure \ 6.24 - --sysconfdir=/etc \ 6.25 - --localstatedir=/var \ 6.26 - $CONFIGURE_ARGS && 6.27 - make && 6.28 - make install 6.29 + ./configure $CONFIGURE_ARGS && make && make install 6.30 } 6.31 6.32 # Rules to gen a SliTaz package suitable for Tazpkg. 6.33 genpkg_rules() 6.34 { 6.35 - mkdir -p $fs/usr/share/licenses 6.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 6.37 - 6.38 - cp -a $install/* $fs 6.39 - rm -rf $fs/usr/share/doc 6.40 + cook_copy_files *.h *.pc 6.41 }
7.1 --- a/xorg-damageproto/receipt Fri Feb 10 00:45:38 2017 +0200 7.2 +++ b/xorg-damageproto/receipt Fri Feb 10 01:19:30 2017 +0200 7.3 @@ -6,11 +6,11 @@ 7.4 SHORT_DESC="Damage extension headers" 7.5 MAINTAINER="pankso@slitaz.org" 7.6 LICENSE="other" 7.7 -WEB_SITE="http://www.x.org/" 7.8 -SOURCE="damageproto" 7.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 7.10 +WEB_SITE="https://www.x.org/wiki/" 7.11 +HOST_ARCH="i486 arm" 7.12 + 7.13 +TARBALL="damageproto-$VERSION.tar.bz2" 7.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 7.15 -HOST_ARCH="i486 arm" 7.16 7.17 DEPENDS="xorg-fixesproto pkg-config" 7.18 BUILD_DEPENDS="xorg-util-macros" 7.19 @@ -18,21 +18,11 @@ 7.20 # Rules to configure and make the package. 7.21 compile_rules() 7.22 { 7.23 - ./configure \ 7.24 - --sysconfdir=/etc \ 7.25 - --localstatedir=/var \ 7.26 - $CONFIGURE_ARGS && 7.27 - make && 7.28 - make install 7.29 + ./configure $CONFIGURE_ARGS && make && make install 7.30 } 7.31 7.32 # Rules to gen a SliTaz package suitable for Tazpkg. 7.33 genpkg_rules() 7.34 { 7.35 - mkdir -p $fs/usr/share/licenses 7.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 7.37 - 7.38 - cp -a $install/* $fs 7.39 - rm -rf $fs/usr/share/doc 7.40 + cook_copy_files *.h *.pc 7.41 } 7.42 -
8.1 --- a/xorg-dmxproto/receipt Fri Feb 10 00:45:38 2017 +0200 8.2 +++ b/xorg-dmxproto/receipt Fri Feb 10 01:19:30 2017 +0200 8.3 @@ -6,9 +6,9 @@ 8.4 SHORT_DESC="DMX extension headers" 8.5 MAINTAINER="pankso@slitaz.org" 8.6 LICENSE="other" 8.7 -WEB_SITE="http://www.x.org/" 8.8 -SOURCE="dmxproto" 8.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 8.10 +WEB_SITE="https://www.x.org/wiki/" 8.11 + 8.12 +TARBALL="dmxproto-$VERSION.tar.bz2" 8.13 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 8.14 8.15 DEPENDS="xorg-util-macros pkg-config" 8.16 @@ -17,19 +17,11 @@ 8.17 # Rules to configure and make the package. 8.18 compile_rules() 8.19 { 8.20 - ./configure \ 8.21 - --sysconfdir=/etc \ 8.22 - --localstatedir=/var \ 8.23 - $CONFIGURE_ARGS && 8.24 - make && 8.25 - make install 8.26 + ./configure $CONFIGURE_ARGS && make && make install 8.27 } 8.28 8.29 # Rules to gen a SliTaz package suitable for Tazpkg. 8.30 genpkg_rules() 8.31 { 8.32 - mkdir -p $fs/usr/share/licenses 8.33 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 8.34 - 8.35 - cp -a $install/* $fs 8.36 + cook_copy_files *.h *.pc 8.37 }
9.1 --- a/xorg-dri2proto/receipt Fri Feb 10 00:45:38 2017 +0200 9.2 +++ b/xorg-dri2proto/receipt Fri Feb 10 01:19:30 2017 +0200 9.3 @@ -6,9 +6,9 @@ 9.4 SHORT_DESC="DRI2 extension headers" 9.5 MAINTAINER="pankso@slitaz.org" 9.6 LICENSE="other" 9.7 -WEB_SITE="http://www.x.org/" 9.8 -SOURCE="dri2proto" 9.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 9.10 +WEB_SITE="https://www.x.org/wiki/" 9.11 + 9.12 +TARBALL="dri2proto-$VERSION.tar.bz2" 9.13 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 9.14 9.15 DEPENDS="xorg-util-macros pkg-config" 9.16 @@ -17,21 +17,11 @@ 9.17 # Rules to configure and make the package. 9.18 compile_rules() 9.19 { 9.20 - ./configure \ 9.21 - --sysconfdir=/etc \ 9.22 - --localstatedir=/var \ 9.23 - $CONFIGURE_ARGS && 9.24 - make && 9.25 - make install 9.26 + ./configure $CONFIGURE_ARGS && make && make install 9.27 } 9.28 9.29 # Rules to gen a SliTaz package suitable for Tazpkg. 9.30 genpkg_rules() 9.31 { 9.32 - mkdir -p $fs/usr/share/licenses 9.33 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 9.34 - 9.35 - cp -a $install/* $fs 9.36 - rm -rf $fs/usr/share/doc 9.37 + cook_copy_files *.h *.pc 9.38 } 9.39 -
10.1 --- a/xorg-dri3proto/receipt Fri Feb 10 00:45:38 2017 +0200 10.2 +++ b/xorg-dri3proto/receipt Fri Feb 10 01:19:30 2017 +0200 10.3 @@ -6,9 +6,9 @@ 10.4 SHORT_DESC="DRI3 extension headers" 10.5 MAINTAINER="pascal.bellard@slitaz.org" 10.6 LICENSE="other" 10.7 -WEB_SITE="http://www.x.org/" 10.8 -SOURCE="dri3proto" 10.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 10.10 +WEB_SITE="https://www.x.org/wiki/" 10.11 + 10.12 +TARBALL="dri3proto-$VERSION.tar.bz2" 10.13 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 10.14 10.15 DEPENDS="xorg-util-macros pkg-config" 10.16 @@ -17,18 +17,11 @@ 10.17 # Rules to configure and make the package. 10.18 compile_rules() 10.19 { 10.20 - ./configure \ 10.21 - --sysconfdir=/etc \ 10.22 - --localstatedir=/var \ 10.23 - $CONFIGURE_ARGS && 10.24 - make && 10.25 - make install 10.26 + ./configure $CONFIGURE_ARGS && make && make install 10.27 } 10.28 10.29 # Rules to gen a SliTaz package suitable for Tazpkg. 10.30 genpkg_rules() 10.31 { 10.32 - cp -a $install/* $fs 10.33 - rm -rf $fs/usr/share 10.34 + cook_copy_files *.h *.pc 10.35 } 10.36 -
11.1 --- a/xorg-fixesproto/receipt Fri Feb 10 00:45:38 2017 +0200 11.2 +++ b/xorg-fixesproto/receipt Fri Feb 10 01:19:30 2017 +0200 11.3 @@ -6,11 +6,11 @@ 11.4 SHORT_DESC="X Fixes extension headers" 11.5 MAINTAINER="pankso@slitaz.org" 11.6 LICENSE="other" 11.7 -WEB_SITE="http://www.x.org/" 11.8 -SOURCE="fixesproto" 11.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 11.10 +WEB_SITE="https://www.x.org/wiki/" 11.11 +HOST_ARCH="i486 arm" 11.12 + 11.13 +TARBALL="fixesproto-$VERSION.tar.bz2" 11.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 11.15 -HOST_ARCH="i486 arm" 11.16 11.17 DEPENDS="xorg-xextproto xorg-xproto pkg-config" 11.18 BUILD_DEPENDS="xorg-util-macros" 11.19 @@ -18,20 +18,11 @@ 11.20 # Rules to configure and make the package. 11.21 compile_rules() 11.22 { 11.23 - ./configure \ 11.24 - --sysconfdir=/etc \ 11.25 - --localstatedir=/var \ 11.26 - $CONFIGURE_ARGS && 11.27 - make && 11.28 - make install 11.29 + ./configure $CONFIGURE_ARGS && make && make install 11.30 } 11.31 11.32 # Rules to gen a SliTaz package suitable for Tazpkg. 11.33 genpkg_rules() 11.34 { 11.35 - mkdir -p $fs/usr/share/licenses 11.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 11.37 - 11.38 - cp -a $install/* $fs 11.39 - rm -rf $fs/usr/share/doc 11.40 + cook_copy_files *.h *.pc 11.41 }
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/xorg-font-util-dev/receipt Fri Feb 10 01:19:30 2017 +0200 12.3 @@ -0,0 +1,18 @@ 12.4 +# SliTaz package receipt. 12.5 + 12.6 +PACKAGE="xorg-font-util-dev" 12.7 +VERSION="1.3.1" 12.8 +CATEGORY="development" 12.9 +SHORT_DESC="Development files for FontUtil" 12.10 +MAINTAINER="al.bobylev@gmail.com" 12.11 +LICENSE="other" 12.12 +WEB_SITE="https://www.x.org/wiki/" 12.13 + 12.14 +WANTED="xorg-font-util" 12.15 +DEPENDS="xorg-font-util" 12.16 + 12.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 12.18 +genpkg_rules() 12.19 +{ 12.20 + cook_copy_files *.pc *.m4 12.21 +}
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/xorg-font-util/receipt Fri Feb 10 01:19:30 2017 +0200 13.3 @@ -0,0 +1,32 @@ 13.4 +# SliTaz package receipt. 13.5 + 13.6 +PACKAGE="xorg-font-util" 13.7 +VERSION="1.3.1" 13.8 +CATEGORY="x-window" 13.9 +SHORT_DESC="Font utilities dirs" 13.10 +MAINTAINER="al.bobylev@gmail.com" 13.11 +LICENSE="other" 13.12 +WEB_SITE="https://www.x.org/wiki/" 13.13 +HOST_ARCH="i486 arm" 13.14 + 13.15 +TARBALL="font-util-$VERSION.tar.bz2" 13.16 +WGET_URL="$XORG_MIRROR/font/$TARBALL" 13.17 + 13.18 +BUILD_DEPENDS="xorg-util-macros" 13.19 + 13.20 +# Rules to configure and make the package. 13.21 +compile_rules() 13.22 +{ 13.23 + ./configure \ 13.24 + --sysconfdir=/etc \ 13.25 + --localstatedir=/var \ 13.26 + $CONFIGURE_ARGS && 13.27 + make && 13.28 + make install 13.29 +} 13.30 + 13.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 13.32 +genpkg_rules() 13.33 +{ 13.34 + cook_copy_folders bin fonts 13.35 +}
14.1 --- a/xorg-fontsproto/receipt Fri Feb 10 00:45:38 2017 +0200 14.2 +++ b/xorg-fontsproto/receipt Fri Feb 10 01:19:30 2017 +0200 14.3 @@ -1,16 +1,16 @@ 14.4 # SliTaz package receipt. 14.5 14.6 PACKAGE="xorg-fontsproto" 14.7 -VERSION="2.1.2" 14.8 +VERSION="2.1.3" 14.9 CATEGORY="development" 14.10 SHORT_DESC="Fonts extension headers" 14.11 MAINTAINER="pankso@slitaz.org" 14.12 LICENSE="other" 14.13 -WEB_SITE="http://www.x.org/" 14.14 -SOURCE="fontsproto" 14.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 14.16 +WEB_SITE="https://www.x.org/wiki/" 14.17 +HOST_ARCH="i486 arm" 14.18 + 14.19 +TARBALL="fontsproto-$VERSION.tar.bz2" 14.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 14.21 -HOST_ARCH="i486 arm" 14.22 14.23 DEPENDS="xorg-xproto pkg-config" 14.24 BUILD_DEPENDS="xorg-util-macros" 14.25 @@ -18,20 +18,11 @@ 14.26 # Rules to configure and make the package. 14.27 compile_rules() 14.28 { 14.29 - ./configure \ 14.30 - --sysconfdir=/etc \ 14.31 - --localstatedir=/var \ 14.32 - $CONFIGURE_ARGS && 14.33 - make && 14.34 - make install 14.35 + ./configure $CONFIGURE_ARGS && make && make install 14.36 } 14.37 14.38 # Rules to gen a SliTaz package suitable for Tazpkg. 14.39 genpkg_rules() 14.40 { 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 - rm -rf $fs/usr/share/doc 14.46 + cook_copy_files *.h *.pc 14.47 }
15.1 --- a/xorg-glproto/receipt Fri Feb 10 00:45:38 2017 +0200 15.2 +++ b/xorg-glproto/receipt Fri Feb 10 01:19:30 2017 +0200 15.3 @@ -1,16 +1,16 @@ 15.4 # SliTaz package receipt. 15.5 15.6 PACKAGE="xorg-glproto" 15.7 -VERSION="1.4.16" 15.8 +VERSION="1.4.17" 15.9 CATEGORY="development" 15.10 SHORT_DESC="GL extension headers" 15.11 MAINTAINER="pankso@slitaz.org" 15.12 LICENSE="other" 15.13 -WEB_SITE="http://www.x.org/" 15.14 -SOURCE="glproto" 15.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 15.16 +WEB_SITE="https://www.x.org/wiki/" 15.17 +HOST_ARCH="i486 arm" 15.18 + 15.19 +TARBALL="glproto-$VERSION.tar.bz2" 15.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 15.21 -HOST_ARCH="i486 arm" 15.22 15.23 DEPENDS="xorg-xproto mesa-dev pkg-config" 15.24 BUILD_DEPENDS="xorg-util-macros" 15.25 @@ -18,19 +18,11 @@ 15.26 # Rules to configure and make the package. 15.27 compile_rules() 15.28 { 15.29 - ./configure \ 15.30 - --sysconfdir=/etc \ 15.31 - --localstatedir=/var \ 15.32 - $CONFIGURE_ARGS && 15.33 - make && 15.34 - make install 15.35 + ./configure $CONFIGURE_ARGS && make && make install 15.36 } 15.37 15.38 # Rules to gen a SliTaz package suitable for Tazpkg. 15.39 genpkg_rules() 15.40 { 15.41 - mkdir -p $fs/usr/share/licenses 15.42 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 15.43 - 15.44 - cp -a $install/* $fs 15.45 + cook_copy_files *.h *.pc 15.46 }
16.1 --- a/xorg-inputproto/receipt Fri Feb 10 00:45:38 2017 +0200 16.2 +++ b/xorg-inputproto/receipt Fri Feb 10 01:19:30 2017 +0200 16.3 @@ -1,16 +1,16 @@ 16.4 # SliTaz package receipt. 16.5 16.6 PACKAGE="xorg-inputproto" 16.7 -VERSION="2.3" 16.8 +VERSION="2.3.2" 16.9 CATEGORY="development" 16.10 SHORT_DESC="Input extension headers" 16.11 MAINTAINER="pankso@slitaz.org" 16.12 LICENSE="other" 16.13 -WEB_SITE="http://www.x.org/" 16.14 -SOURCE="inputproto" 16.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 16.16 +WEB_SITE="https://www.x.org/wiki/" 16.17 +HOST_ARCH="i486 arm" 16.18 + 16.19 +TARBALL="inputproto-$VERSION.tar.bz2" 16.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 16.21 -HOST_ARCH="i486 arm" 16.22 16.23 DEPENDS="xorg-xproto pkg-config" 16.24 BUILD_DEPENDS="xorg-util-macros" 16.25 @@ -18,19 +18,11 @@ 16.26 # Rules to configure and make the package. 16.27 compile_rules() 16.28 { 16.29 - ./configure \ 16.30 - --sysconfdir=/etc \ 16.31 - --localstatedir=/var \ 16.32 - $CONFIGURE_ARGS && 16.33 - make && 16.34 - make install 16.35 + ./configure $CONFIGURE_ARGS && make && make install 16.36 } 16.37 16.38 # Rules to gen a SliTaz package suitable for Tazpkg. 16.39 genpkg_rules() 16.40 { 16.41 - mkdir -p $fs/usr/share/licenses 16.42 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 16.43 - 16.44 - cp -a $install/* $fs 16.45 + cook_copy_files *.h *.pc 16.46 }
17.1 --- a/xorg-kbproto/receipt Fri Feb 10 00:45:38 2017 +0200 17.2 +++ b/xorg-kbproto/receipt Fri Feb 10 01:19:30 2017 +0200 17.3 @@ -1,16 +1,16 @@ 17.4 # SliTaz package receipt. 17.5 17.6 PACKAGE="xorg-kbproto" 17.7 -VERSION="1.0.6" 17.8 +VERSION="1.0.7" 17.9 CATEGORY="development" 17.10 SHORT_DESC="KB extension headers" 17.11 MAINTAINER="pankso@slitaz.org" 17.12 LICENSE="other" 17.13 -WEB_SITE="http://www.x.org/" 17.14 -SOURCE="kbproto" 17.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 17.16 +WEB_SITE="https://www.x.org/wiki/" 17.17 +HOST_ARCH="i486 arm" 17.18 + 17.19 +TARBALL="kbproto-$VERSION.tar.bz2" 17.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 17.21 -HOST_ARCH="i486 arm" 17.22 17.23 DEPENDS="xorg-util-macros pkg-config" 17.24 BUILD_DEPENDS="xorg-util-macros" 17.25 @@ -18,20 +18,11 @@ 17.26 # Rules to configure and make the package. 17.27 compile_rules() 17.28 { 17.29 - ./configure \ 17.30 - --sysconfdir=/etc \ 17.31 - --localstatedir=/var \ 17.32 - $CONFIGURE_ARGS && 17.33 - make && 17.34 - make install 17.35 + ./configure $CONFIGURE_ARGS && make && make install 17.36 } 17.37 17.38 # Rules to gen a SliTaz package suitable for Tazpkg. 17.39 genpkg_rules() 17.40 { 17.41 - mkdir -p $fs/usr/share/licenses 17.42 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 17.43 - 17.44 - cp -a $install/* $fs 17.45 - rm -rf $fs/usr/share/doc 17.46 + cook_copy_files *.h *.pc 17.47 }
18.1 --- a/xorg-libFS-dev/receipt Fri Feb 10 00:45:38 2017 +0200 18.2 +++ b/xorg-libFS-dev/receipt Fri Feb 10 01:19:30 2017 +0200 18.3 @@ -1,12 +1,12 @@ 18.4 # SliTaz package receipt. 18.5 18.6 PACKAGE="xorg-libFS-dev" 18.7 -VERSION="1.0.5" 18.8 +VERSION="1.0.7" 18.9 CATEGORY="development" 18.10 SHORT_DESC="Development files for libFS" 18.11 MAINTAINER="pascal.bellard@slitaz.org" 18.12 LICENSE="other" 18.13 -WEB_SITE="http://www.x.org/" 18.14 +WEB_SITE="https://www.x.org/wiki/" 18.15 18.16 WANTED="xorg-libFS" 18.17 DEPENDS="xorg-libFS xorg-fontsproto pkg-config" 18.18 @@ -14,12 +14,5 @@ 18.19 # Rules to gen a SliTaz package suitable for Tazpkg. 18.20 genpkg_rules() 18.21 { 18.22 - mkdir -p \ 18.23 - $fs/usr/share/licenses \ 18.24 - $fs/usr/lib 18.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 18.26 - 18.27 - cp -a $install/usr/include $fs/usr 18.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 18.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 18.30 + cook_copy_files *.h *.la *.pc 18.31 }
19.1 --- a/xorg-libFS/receipt Fri Feb 10 00:45:38 2017 +0200 19.2 +++ b/xorg-libFS/receipt Fri Feb 10 01:19:30 2017 +0200 19.3 @@ -1,14 +1,14 @@ 19.4 # SliTaz package receipt. 19.5 19.6 PACKAGE="xorg-libFS" 19.7 -VERSION="1.0.5" 19.8 +VERSION="1.0.7" 19.9 CATEGORY="x-window" 19.10 SHORT_DESC="Library Interface to the X Font Server" 19.11 MAINTAINER="pascal.bellard@slitaz.org" 19.12 LICENSE="other" 19.13 -WEB_SITE="http://www.x.org/" 19.14 -SOURCE="libFS" 19.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 19.16 +WEB_SITE="https://www.x.org/wiki/" 19.17 + 19.18 +TARBALL="libFS-$VERSION.tar.bz2" 19.19 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 19.20 19.21 DEPENDS="glibc-base" 19.22 @@ -29,6 +29,5 @@ 19.23 # Rules to gen a SliTaz package suitable for Tazpkg. 19.24 genpkg_rules() 19.25 { 19.26 - mkdir -p $fs/usr/lib 19.27 - cp -a $install/usr/lib/*.so* $fs/usr/lib 19.28 + cook_copy_files *.so* 19.29 }
20.1 --- a/xorg-libICE-dev/receipt Fri Feb 10 00:45:38 2017 +0200 20.2 +++ b/xorg-libICE-dev/receipt Fri Feb 10 01:19:30 2017 +0200 20.3 @@ -1,12 +1,12 @@ 20.4 # SliTaz package receipt. 20.5 20.6 PACKAGE="xorg-libICE-dev" 20.7 -VERSION="1.0.8" 20.8 +VERSION="1.0.9" 20.9 CATEGORY="development" 20.10 SHORT_DESC="Development files for libICE" 20.11 MAINTAINER="pankso@slitaz.org" 20.12 LICENSE="other" 20.13 -WEB_SITE="http://www.x.org/" 20.14 +WEB_SITE="https://www.x.org/wiki/" 20.15 HOST_ARCH="i486 arm" 20.16 20.17 WANTED="xorg-libICE" 20.18 @@ -15,12 +15,5 @@ 20.19 # Rules to gen a SliTaz package suitable for Tazpkg. 20.20 genpkg_rules() 20.21 { 20.22 - mkdir -p \ 20.23 - $fs/usr/share/licenses \ 20.24 - $fs/usr/lib 20.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 20.26 - 20.27 - cp -a $install/usr/include $fs/usr 20.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 20.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 20.30 + cook_copy_files *.h *.la *.pc 20.31 }
21.1 --- a/xorg-libICE/receipt Fri Feb 10 00:45:38 2017 +0200 21.2 +++ b/xorg-libICE/receipt Fri Feb 10 01:19:30 2017 +0200 21.3 @@ -1,18 +1,17 @@ 21.4 # SliTaz package receipt. 21.5 21.6 PACKAGE="xorg-libICE" 21.7 -VERSION="1.0.8" 21.8 +VERSION="1.0.9" 21.9 CATEGORY="x-window" 21.10 SHORT_DESC="X Inter Client Exchange Library" 21.11 MAINTAINER="pankso@slitaz.org" 21.12 LICENSE="other" 21.13 -WEB_SITE="http://www.x.org/" 21.14 -SOURCE="libICE" 21.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 21.16 -WGET_URL="$XORG_MIRROR/lib/$TARBALL" 21.17 +WEB_SITE="https://www.x.org/wiki/" 21.18 HOST_ARCH="i486 arm" 21.19 21.20 -DEPENDS="" 21.21 +TARBALL="libICE-$VERSION.tar.bz2" 21.22 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 21.23 + 21.24 BUILD_DEPENDS="xorg-xproto xorg-xtrans" 21.25 21.26 # Rules to configure and make the package. 21.27 @@ -30,6 +29,5 @@ 21.28 # Rules to gen a SliTaz package suitable for Tazpkg. 21.29 genpkg_rules() 21.30 { 21.31 - mkdir -p $fs/usr/lib 21.32 - cp -a $install/usr/lib/*.so* $fs/usr/lib 21.33 + cook_copy_files *.so* 21.34 }
22.1 --- a/xorg-libSM-dev/receipt Fri Feb 10 00:45:38 2017 +0200 22.2 +++ b/xorg-libSM-dev/receipt Fri Feb 10 01:19:30 2017 +0200 22.3 @@ -1,12 +1,12 @@ 22.4 # SliTaz package receipt. 22.5 22.6 PACKAGE="xorg-libSM-dev" 22.7 -VERSION="1.2.1" 22.8 +VERSION="1.2.2" 22.9 CATEGORY="development" 22.10 SHORT_DESC="Development files for libSM" 22.11 MAINTAINER="pankso@slitaz.org" 22.12 LICENSE="other" 22.13 -WEB_SITE="http://www.x.org/" 22.14 +WEB_SITE="https://www.x.org/wiki/" 22.15 HOST_ARCH="i486 arm" 22.16 22.17 WANTED="xorg-libSM" 22.18 @@ -15,12 +15,5 @@ 22.19 # Rules to gen a SliTaz package suitable for Tazpkg. 22.20 genpkg_rules() 22.21 { 22.22 - mkdir -p \ 22.23 - $fs/usr/share/licenses \ 22.24 - $fs/usr/lib 22.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 22.26 - 22.27 - cp -a $install/usr/include $fs/usr 22.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 22.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 22.30 + cook_copy_files *.h *.la *.pc 22.31 }
23.1 --- a/xorg-libSM/receipt Fri Feb 10 00:45:38 2017 +0200 23.2 +++ b/xorg-libSM/receipt Fri Feb 10 01:19:30 2017 +0200 23.3 @@ -1,16 +1,16 @@ 23.4 # SliTaz package receipt. 23.5 23.6 PACKAGE="xorg-libSM" 23.7 -VERSION="1.2.1" 23.8 +VERSION="1.2.2" 23.9 CATEGORY="x-window" 23.10 SHORT_DESC="X Session Management Library" 23.11 MAINTAINER="pankso@slitaz.org" 23.12 LICENSE="other" 23.13 -WEB_SITE="http://www.x.org/" 23.14 -SOURCE="libSM" 23.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 23.16 +WEB_SITE="https://www.x.org/wiki/" 23.17 +HOST_ARCH="i486 arm" 23.18 + 23.19 +TARBALL="libSM-$VERSION.tar.bz2" 23.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 23.21 -HOST_ARCH="i486 arm" 23.22 23.23 DEPENDS="util-linux-uuid xorg-libICE" 23.24 BUILD_DEPENDS="xorg-libICE-dev xorg-xtrans util-linux-uuid-dev" 23.25 @@ -30,6 +30,5 @@ 23.26 # Rules to gen a SliTaz package suitable for Tazpkg. 23.27 genpkg_rules() 23.28 { 23.29 - mkdir -p $fs/usr/lib 23.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 23.31 + cook_copy_files *.so* 23.32 }
24.1 --- a/xorg-libX11-dev/receipt Fri Feb 10 00:45:38 2017 +0200 24.2 +++ b/xorg-libX11-dev/receipt Fri Feb 10 01:19:30 2017 +0200 24.3 @@ -1,12 +1,12 @@ 24.4 # SliTaz package receipt. 24.5 24.6 PACKAGE="xorg-libX11-dev" 24.7 -VERSION="1.5.99.902" 24.8 +VERSION="1.6.3" 24.9 CATEGORY="development" 24.10 SHORT_DESC="Development files for libX11" 24.11 MAINTAINER="pankso@slitaz.org" 24.12 LICENSE="other" 24.13 -WEB_SITE="http://www.x.org/" 24.14 +WEB_SITE="https://www.x.org/wiki/" 24.15 HOST_ARCH="i486 arm" 24.16 24.17 WANTED="xorg-libX11" 24.18 @@ -16,12 +16,5 @@ 24.19 # Rules to gen a SliTaz package suitable for Tazpkg. 24.20 genpkg_rules() 24.21 { 24.22 - mkdir -p \ 24.23 - $fs/usr/share/licenses \ 24.24 - $fs/usr/lib 24.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 24.26 - 24.27 - cp -a $install/usr/include $fs/usr 24.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 24.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 24.30 + cook_copy_files *.h *.la *.pc 24.31 }
25.1 --- a/xorg-libX11/receipt Fri Feb 10 00:45:38 2017 +0200 25.2 +++ b/xorg-libX11/receipt Fri Feb 10 01:19:30 2017 +0200 25.3 @@ -1,12 +1,12 @@ 25.4 # SliTaz package receipt. 25.5 25.6 PACKAGE="xorg-libX11" 25.7 -VERSION="1.5.99.902" 25.8 +VERSION="1.6.3" 25.9 CATEGORY="x-window" 25.10 SHORT_DESC="X Library" 25.11 MAINTAINER="pankso@slitaz.org" 25.12 LICENSE="other" 25.13 -WEB_SITE="http://www.x.org/" 25.14 +WEB_SITE="https://www.x.org/wiki/" 25.15 HOST_ARCH="i486 arm" 25.16 25.17 TARBALL="libX11-$VERSION.tar.bz2" 25.18 @@ -14,7 +14,7 @@ 25.19 25.20 DEPENDS="libxcb xorg-libXau xorg-libXdmcp" 25.21 BUILD_DEPENDS="xorg-xtrans libxcb-dev xorg-kbproto xorg-xf86bigfontproto \ 25.22 -xorg-inputproto xorg-xextproto xorg-libXau-dev xorg-libXdmcp-dev" 25.23 +xorg-inputproto xorg-xextproto xorg-libXau-dev xorg-libXdmcp-dev perl" 25.24 25.25 # Rules to configure and make the package. 25.26 compile_rules() 25.27 @@ -26,19 +26,16 @@ 25.28 $CONFIGURE_ARGS && 25.29 make && 25.30 make install 25.31 + 25.32 + for i in $(find $install -name Compose); do 25.33 + sed -i 's|\t| |g; s| *| |g; /^$/d' $i 25.34 + done 25.35 } 25.36 25.37 # Rules to gen a SliTaz package suitable for Tazpkg. 25.38 genpkg_rules() 25.39 { 25.40 - mkdir -p \ 25.41 - $fs/usr/lib \ 25.42 - $fs/usr/share/X11/locale 25.43 - 25.44 - cp -a $install/usr/lib/*.so* $fs/usr/lib 25.45 - cp -a $install/usr/share/X11/X* $fs/usr/share/X11 25.46 - # X11 locale; other moved to locale packs 25.47 - for i in C en_US.UTF-8 compose.dir locale.alias locale.dir; do 25.48 - cp -a $install/usr/share/X11/locale/$i $fs/usr/share/X11/locale 25.49 - done 25.50 + cook_copy_files *.so* XErrorDB Xcms.txt compose.dir locale.alias locale.dir 25.51 + cook_copy_folders C en_US.UTF-8 25.52 + # split -> locale-* packages 25.53 }
26.1 --- a/xorg-libXScrnSaver-dev/receipt Fri Feb 10 00:45:38 2017 +0200 26.2 +++ b/xorg-libXScrnSaver-dev/receipt Fri Feb 10 01:19:30 2017 +0200 26.3 @@ -6,7 +6,7 @@ 26.4 SHORT_DESC="Development files for libXScrnSaver" 26.5 MAINTAINER="al.bobylev@gmail.com" 26.6 LICENSE="other" 26.7 -WEB_SITE="http://www.x.org/" 26.8 +WEB_SITE="https://www.x.org/wiki/" 26.9 26.10 WANTED="xorg-libXScrnSaver" 26.11 DEPENDS="xorg-libXScrnSaver xorg-scrnsaverproto xorg-libXext-dev pkg-config" 26.12 @@ -14,12 +14,5 @@ 26.13 # Rules to gen a SliTaz package suitable for Tazpkg. 26.14 genpkg_rules() 26.15 { 26.16 - mkdir -p \ 26.17 - $fs/usr/share/licenses \ 26.18 - $fs/usr/lib 26.19 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 26.20 - 26.21 - cp -a $install/usr/include $fs/usr 26.22 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 26.23 - cp -a $install/usr/lib/*.la $fs/usr/lib 26.24 + cook_copy_files *.h *.la *.pc 26.25 }
27.1 --- a/xorg-libXScrnSaver/receipt Fri Feb 10 00:45:38 2017 +0200 27.2 +++ b/xorg-libXScrnSaver/receipt Fri Feb 10 01:19:30 2017 +0200 27.3 @@ -6,9 +6,9 @@ 27.4 SHORT_DESC="The XScrnSaver Library" 27.5 MAINTAINER="al.bobylev@gmail.com" 27.6 LICENSE="other" 27.7 -WEB_SITE="http://www.x.org/" 27.8 -SOURCE="libXScrnSaver" 27.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 27.10 +WEB_SITE="https://www.x.org/wiki/" 27.11 + 27.12 +TARBALL="libXScrnSaver-$VERSION.tar.bz2" 27.13 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 27.14 27.15 DEPENDS="xorg-libXext" 27.16 @@ -29,6 +29,5 @@ 27.17 # Rules to gen a SliTaz package suitable for Tazpkg. 27.18 genpkg_rules() 27.19 { 27.20 - mkdir -p $fs/usr/lib 27.21 - cp -a $install/usr/lib/*.so* $fs/usr/lib 27.22 + cook_copy_files *.so* 27.23 }
28.1 --- a/xorg-libXau-dev/receipt Fri Feb 10 00:45:38 2017 +0200 28.2 +++ b/xorg-libXau-dev/receipt Fri Feb 10 01:19:30 2017 +0200 28.3 @@ -6,7 +6,7 @@ 28.4 SHORT_DESC="Development files for libXau" 28.5 MAINTAINER="pankso@slitaz.org" 28.6 LICENSE="MIT" 28.7 -WEB_SITE="http://www.x.org/" 28.8 +WEB_SITE="https://www.x.org/wiki/" 28.9 HOST_ARCH="i486 arm" 28.10 28.11 DEPENDS="xorg-libXau xorg-xproto pkg-config" 28.12 @@ -15,8 +15,5 @@ 28.13 # Rules to gen a SliTaz package suitable for Tazpkg. 28.14 genpkg_rules() 28.15 { 28.16 - mkdir -p $fs/usr/lib 28.17 - cp -a $install/usr/include $fs/usr 28.18 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 28.19 - cp -a $install/usr/lib/*.la $fs/usr/lib 28.20 + cook_copy_files *.h *.la *.pc 28.21 }
29.1 --- a/xorg-libXau/receipt Fri Feb 10 00:45:38 2017 +0200 29.2 +++ b/xorg-libXau/receipt Fri Feb 10 01:19:30 2017 +0200 29.3 @@ -5,12 +5,12 @@ 29.4 CATEGORY="x-window" 29.5 SHORT_DESC="X authorization file management libary" 29.6 MAINTAINER="pankso@slitaz.org" 29.7 -LICENSE="other" 29.8 -WEB_SITE="http://www.x.org/" 29.9 -SOURCE="libXau" 29.10 -TARBALL="$SOURCE-$VERSION.tar.bz2" 29.11 +LICENSE="MIT" 29.12 +WEB_SITE="https://www.x.org/wiki/" 29.13 +HOST_ARCH="i486 arm" 29.14 + 29.15 +TARBALL="libXau-$VERSION.tar.bz2" 29.16 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 29.17 -HOST_ARCH="i486 arm" 29.18 29.19 DEPENDS="glibc-base" 29.20 BUILD_DEPENDS="xorg-xproto" 29.21 @@ -30,9 +30,5 @@ 29.22 # Rules to gen a SliTaz package suitable for Tazpkg. 29.23 genpkg_rules() 29.24 { 29.25 - mkdir -p \ 29.26 - $fs/usr/share/licenses \ 29.27 - $fs/usr/lib 29.28 - install -m644 -oroot -groot $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 29.29 - cp -a $install/usr/lib/*.so* $fs/usr/lib 29.30 + cook_copy_files *.so* 29.31 }
30.1 --- a/xorg-libXaw-dev/receipt Fri Feb 10 00:45:38 2017 +0200 30.2 +++ b/xorg-libXaw-dev/receipt Fri Feb 10 01:19:30 2017 +0200 30.3 @@ -1,12 +1,12 @@ 30.4 # SliTaz package receipt. 30.5 30.6 PACKAGE="xorg-libXaw-dev" 30.7 -VERSION="1.0.11" 30.8 +VERSION="1.0.13" 30.9 CATEGORY="development" 30.10 SHORT_DESC="Development files for libXaw" 30.11 MAINTAINER="pankso@slitaz.org" 30.12 LICENSE="other" 30.13 -WEB_SITE="http://www.x.org/" 30.14 +WEB_SITE="https://www.x.org/wiki/" 30.15 HOST_ARCH="i486 arm" 30.16 30.17 WANTED="xorg-libXaw" 30.18 @@ -15,12 +15,5 @@ 30.19 # Rules to gen a SliTaz package suitable for Tazpkg. 30.20 genpkg_rules() 30.21 { 30.22 - mkdir -p \ 30.23 - $fs/usr/share/licenses \ 30.24 - $fs/usr/lib 30.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 30.26 - 30.27 - cp -a $install/usr/include $fs/usr 30.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 30.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 30.30 + cook_copy_files *.h *.la *.pc 30.31 }
31.1 --- a/xorg-libXaw/receipt Fri Feb 10 00:45:38 2017 +0200 31.2 +++ b/xorg-libXaw/receipt Fri Feb 10 01:19:30 2017 +0200 31.3 @@ -1,16 +1,16 @@ 31.4 # SliTaz package receipt. 31.5 31.6 PACKAGE="xorg-libXaw" 31.7 -VERSION="1.0.11" 31.8 +VERSION="1.0.13" 31.9 CATEGORY="x-window" 31.10 SHORT_DESC="X Athena Widgets Library" 31.11 MAINTAINER="pankso@slitaz.org" 31.12 LICENSE="other" 31.13 -WEB_SITE="http://www.x.org/" 31.14 -SOURCE="libXaw" 31.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 31.16 +WEB_SITE="https://www.x.org/wiki/" 31.17 +HOST_ARCH="i486 arm" 31.18 + 31.19 +TARBALL="libXaw-$VERSION.tar.bz2" 31.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 31.21 -HOST_ARCH="i486 arm" 31.22 31.23 DEPENDS="xorg-libXmu xorg-libXpm" 31.24 BUILD_DEPENDS="xorg-libXmu-dev xorg-libXpm-dev util-linux-uuid-dev" 31.25 @@ -31,6 +31,5 @@ 31.26 # Rules to gen a SliTaz package suitable for Tazpkg. 31.27 genpkg_rules() 31.28 { 31.29 - mkdir -p $fs/usr/lib 31.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 31.31 + cook_copy_files *.so* 31.32 }
32.1 --- a/xorg-libXcomposite-dev/receipt Fri Feb 10 00:45:38 2017 +0200 32.2 +++ b/xorg-libXcomposite-dev/receipt Fri Feb 10 01:19:30 2017 +0200 32.3 @@ -6,7 +6,7 @@ 32.4 SHORT_DESC="Development files for libXcomposite" 32.5 MAINTAINER="pankso@slitaz.org" 32.6 LICENSE="other" 32.7 -WEB_SITE="http://www.x.org/" 32.8 +WEB_SITE="https://www.x.org/wiki/" 32.9 HOST_ARCH="i486 arm" 32.10 32.11 WANTED="xorg-libXcomposite" 32.12 @@ -15,12 +15,5 @@ 32.13 # Rules to gen a SliTaz package suitable for Tazpkg. 32.14 genpkg_rules() 32.15 { 32.16 - mkdir -p \ 32.17 - $fs/usr/share/licenses \ 32.18 - $fs/usr/lib 32.19 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 32.20 - 32.21 - cp -a $install/usr/include $fs/usr 32.22 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 32.23 - cp -a $install/usr/lib/*.la $fs/usr/lib 32.24 + cook_copy_files *.h *.la *.pc 32.25 }
33.1 --- a/xorg-libXcomposite/receipt Fri Feb 10 00:45:38 2017 +0200 33.2 +++ b/xorg-libXcomposite/receipt Fri Feb 10 01:19:30 2017 +0200 33.3 @@ -6,11 +6,11 @@ 33.4 SHORT_DESC="X Composite Extension Library" 33.5 MAINTAINER="pankso@slitaz.org" 33.6 LICENSE="other" 33.7 -WEB_SITE="http://www.x.org/" 33.8 -SOURCE="libXcomposite" 33.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 33.10 +WEB_SITE="https://www.x.org/wiki/" 33.11 +HOST_ARCH="i486 arm" 33.12 + 33.13 +TARBALL="libXcomposite-$VERSION.tar.bz2" 33.14 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 33.15 -HOST_ARCH="i486 arm" 33.16 33.17 DEPENDS="xorg-libX11" 33.18 BUILD_DEPENDS="xorg-compositeproto xorg-libXfixes-dev" 33.19 @@ -30,6 +30,5 @@ 33.20 # Rules to gen a SliTaz package suitable for Tazpkg. 33.21 genpkg_rules() 33.22 { 33.23 - mkdir -p $fs/usr/lib 33.24 - cp -a $install/usr/lib/*.so* $fs/usr/lib 33.25 + cook_copy_files *.so* 33.26 }
34.1 --- a/xorg-libXcursor-dev/receipt Fri Feb 10 00:45:38 2017 +0200 34.2 +++ b/xorg-libXcursor-dev/receipt Fri Feb 10 01:19:30 2017 +0200 34.3 @@ -6,7 +6,7 @@ 34.4 SHORT_DESC="Development files for libXcursor" 34.5 MAINTAINER="pankso@slitaz.org" 34.6 LICENSE="other" 34.7 -WEB_SITE="http://www.x.org/" 34.8 +WEB_SITE="https://www.x.org/wiki/" 34.9 HOST_ARCH="i486 arm" 34.10 34.11 WANTED="xorg-libXcursor" 34.12 @@ -15,12 +15,5 @@ 34.13 # Rules to gen a SliTaz package suitable for Tazpkg. 34.14 genpkg_rules() 34.15 { 34.16 - mkdir -p \ 34.17 - $fs/usr/share/licenses \ 34.18 - $fs/usr/lib 34.19 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 34.20 - 34.21 - cp -a $install/usr/include $fs/usr 34.22 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 34.23 - cp -a $install/usr/lib/*.la $fs/usr/lib 34.24 + cook_copy_files *.h *.la *.pc 34.25 }
35.1 --- a/xorg-libXcursor/receipt Fri Feb 10 00:45:38 2017 +0200 35.2 +++ b/xorg-libXcursor/receipt Fri Feb 10 01:19:30 2017 +0200 35.3 @@ -6,11 +6,11 @@ 35.4 SHORT_DESC="X Cursor Library" 35.5 MAINTAINER="pankso@slitaz.org" 35.6 LICENSE="other" 35.7 -SOURCE="libXcursor" 35.8 -TARBALL="$SOURCE-$VERSION.tar.bz2" 35.9 -WEB_SITE="http://www.x.org/" 35.10 +WEB_SITE="https://www.x.org/wiki/" 35.11 +HOST_ARCH="i486 arm" 35.12 + 35.13 +TARBALL="libXcursor-$VERSION.tar.bz2" 35.14 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 35.15 -HOST_ARCH="i486 arm" 35.16 35.17 DEPENDS="xorg-libXfixes xorg-libXrender" 35.18 BUILD_DEPENDS="xorg-libXrender-dev xorg-libXfixes-dev" 35.19 @@ -30,6 +30,5 @@ 35.20 # Rules to gen a SliTaz package suitable for Tazpkg. 35.21 genpkg_rules() 35.22 { 35.23 - mkdir -p $fs/usr/lib 35.24 - cp -a $install/usr/lib/*.so* $fs/usr/lib 35.25 + cook_copy_files *.so* 35.26 }
36.1 --- a/xorg-libXdamage-dev/receipt Fri Feb 10 00:45:38 2017 +0200 36.2 +++ b/xorg-libXdamage-dev/receipt Fri Feb 10 01:19:30 2017 +0200 36.3 @@ -6,7 +6,7 @@ 36.4 SHORT_DESC="Development files for libXdamage" 36.5 MAINTAINER="pankso@slitaz.org" 36.6 LICENSE="other" 36.7 -WEB_SITE="http://www.x.org/" 36.8 +WEB_SITE="https://www.x.org/wiki/" 36.9 HOST_ARCH="i486 arm" 36.10 36.11 WANTED="xorg-libXdamage" 36.12 @@ -15,12 +15,5 @@ 36.13 # Rules to gen a SliTaz package suitable for Tazpkg. 36.14 genpkg_rules() 36.15 { 36.16 - mkdir -p \ 36.17 - $fs/usr/share/licenses \ 36.18 - $fs/usr/lib 36.19 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 36.20 - 36.21 - cp -a $install/usr/include $fs/usr 36.22 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 36.23 - cp -a $install/usr/lib/*.la $fs/usr/lib 36.24 + cook_copy_files *.h *.la *.pc 36.25 }
37.1 --- a/xorg-libXdamage/receipt Fri Feb 10 00:45:38 2017 +0200 37.2 +++ b/xorg-libXdamage/receipt Fri Feb 10 01:19:30 2017 +0200 37.3 @@ -6,11 +6,11 @@ 37.4 SHORT_DESC="X Damage Library" 37.5 MAINTAINER="pankso@slitaz.org" 37.6 LICENSE="other" 37.7 -SOURCE="libXdamage" 37.8 -TARBALL="$SOURCE-$VERSION.tar.bz2" 37.9 -WEB_SITE="http://www.x.org/" 37.10 +WEB_SITE="https://www.x.org/wiki/" 37.11 +HOST_ARCH="i486 arm" 37.12 + 37.13 +TARBALL="libXdamage-$VERSION.tar.bz2" 37.14 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 37.15 -HOST_ARCH="i486 arm" 37.16 37.17 DEPENDS="xorg-libXfixes" 37.18 BUILD_DEPENDS="xorg-damageproto xorg-libXfixes-dev" 37.19 @@ -30,6 +30,5 @@ 37.20 # Rules to gen a SliTaz package suitable for Tazpkg. 37.21 genpkg_rules() 37.22 { 37.23 - mkdir -p $fs/usr/lib 37.24 - cp -a $install/usr/lib/*.so* $fs/usr/lib 37.25 + cook_copy_files *.so* 37.26 }
38.1 --- a/xorg-libXdmcp-dev/receipt Fri Feb 10 00:45:38 2017 +0200 38.2 +++ b/xorg-libXdmcp-dev/receipt Fri Feb 10 01:19:30 2017 +0200 38.3 @@ -1,12 +1,12 @@ 38.4 # SliTaz package receipt. 38.5 38.6 PACKAGE="xorg-libXdmcp-dev" 38.7 -VERSION="1.1.1" 38.8 +VERSION="1.1.2" 38.9 CATEGORY="development" 38.10 SHORT_DESC="Development files for libXdmcp" 38.11 MAINTAINER="pankso@slitaz.org" 38.12 LICENSE="MIT" 38.13 -WEB_SITE="http://www.x.org/" 38.14 +WEB_SITE="https://www.x.org/wiki/" 38.15 HOST_ARCH="i486 arm" 38.16 38.17 DEPENDS="xorg-libXdmcp xorg-xproto pkg-config" 38.18 @@ -15,8 +15,5 @@ 38.19 # Rules to gen a SliTaz package suitable for Tazpkg. 38.20 genpkg_rules() 38.21 { 38.22 - mkdir -p $fs/usr/lib 38.23 - cp -a $install/usr/include $fs/usr 38.24 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 38.25 - cp -a $install/usr/lib/*.la $fs/usr/lib 38.26 + cook_copy_files *.h *.la *.pc 38.27 }
39.1 --- a/xorg-libXdmcp/receipt Fri Feb 10 00:45:38 2017 +0200 39.2 +++ b/xorg-libXdmcp/receipt Fri Feb 10 01:19:30 2017 +0200 39.3 @@ -1,16 +1,16 @@ 39.4 # SliTaz package receipt. 39.5 39.6 PACKAGE="xorg-libXdmcp" 39.7 -VERSION="1.1.1" 39.8 +VERSION="1.1.2" 39.9 CATEGORY="x-window" 39.10 SHORT_DESC="X Display Manager Control Protocol library" 39.11 MAINTAINER="pankso@slitaz.org" 39.12 -LICENSE="other" 39.13 -WEB_SITE="http://www.x.org/" 39.14 -SOURCE="libXdmcp" 39.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 39.16 +LICENSE="MIT" 39.17 +WEB_SITE="https://www.x.org/wiki/" 39.18 +HOST_ARCH="i486 arm" 39.19 + 39.20 +TARBALL="libXdmcp-$VERSION.tar.bz2" 39.21 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 39.22 -HOST_ARCH="i486 arm" 39.23 39.24 DEPENDS="glibc-base" 39.25 BUILD_DEPENDS="xorg-xproto" 39.26 @@ -30,9 +30,5 @@ 39.27 # Rules to gen a SliTaz package suitable for Tazpkg. 39.28 genpkg_rules() 39.29 { 39.30 - mkdir -p \ 39.31 - $fs/usr/share/licenses \ 39.32 - $fs/usr/lib 39.33 - install -m644 -oroot -groot $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 39.34 - cp -a $install/usr/lib/*.so* $fs/usr/lib 39.35 + cook_copy_files *.so* 39.36 }
40.1 --- a/xorg-libXext-dev/receipt Fri Feb 10 00:45:38 2017 +0200 40.2 +++ b/xorg-libXext-dev/receipt Fri Feb 10 01:19:30 2017 +0200 40.3 @@ -1,12 +1,12 @@ 40.4 # SliTaz package receipt. 40.5 40.6 PACKAGE="xorg-libXext-dev" 40.7 -VERSION="1.3.2" 40.8 +VERSION="1.3.3" 40.9 CATEGORY="development" 40.10 SHORT_DESC="Development files for libXext" 40.11 MAINTAINER="pankso@slitaz.org" 40.12 LICENSE="other" 40.13 -WEB_SITE="http://www.x.org/" 40.14 +WEB_SITE="https://www.x.org/wiki/" 40.15 HOST_ARCH="i486 arm" 40.16 40.17 WANTED="xorg-libXext" 40.18 @@ -15,12 +15,5 @@ 40.19 # Rules to gen a SliTaz package suitable for Tazpkg. 40.20 genpkg_rules() 40.21 { 40.22 - mkdir -p \ 40.23 - $fs/usr/share/licenses \ 40.24 - $fs/usr/lib 40.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 40.26 - 40.27 - cp -a $install/usr/include $fs/usr 40.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 40.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 40.30 + cook_copy_files *.h *.la *.pc 40.31 }
41.1 --- a/xorg-libXext/receipt Fri Feb 10 00:45:38 2017 +0200 41.2 +++ b/xorg-libXext/receipt Fri Feb 10 01:19:30 2017 +0200 41.3 @@ -1,16 +1,16 @@ 41.4 # SliTaz package receipt. 41.5 41.6 PACKAGE="xorg-libXext" 41.7 -VERSION="1.3.2" 41.8 +VERSION="1.3.3" 41.9 CATEGORY="x-window" 41.10 SHORT_DESC="Misc X Extension Library" 41.11 MAINTAINER="pankso@slitaz.org" 41.12 LICENSE="other" 41.13 -WEB_SITE="http://www.x.org/" 41.14 -SOURCE="libXext" 41.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 41.16 +WEB_SITE="https://www.x.org/wiki/" 41.17 +HOST_ARCH="i486 arm" 41.18 + 41.19 +TARBALL="libXext-$VERSION.tar.bz2" 41.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 41.21 -HOST_ARCH="i486 arm" 41.22 41.23 DEPENDS="xorg-libX11" 41.24 BUILD_DEPENDS="xorg-libX11-dev" 41.25 @@ -30,6 +30,5 @@ 41.26 # Rules to gen a SliTaz package suitable for Tazpkg. 41.27 genpkg_rules() 41.28 { 41.29 - mkdir -p $fs/usr/lib 41.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 41.31 + cook_copy_files *.so* 41.32 }
42.1 --- a/xorg-libXfixes-dev/receipt Fri Feb 10 00:45:38 2017 +0200 42.2 +++ b/xorg-libXfixes-dev/receipt Fri Feb 10 01:19:30 2017 +0200 42.3 @@ -1,12 +1,12 @@ 42.4 # SliTaz package receipt. 42.5 42.6 PACKAGE="xorg-libXfixes-dev" 42.7 -VERSION="5.0.1" 42.8 +VERSION="5.0.2" 42.9 CATEGORY="development" 42.10 SHORT_DESC="Development files for libXfixes" 42.11 MAINTAINER="pankso@slitaz.org" 42.12 LICENSE="other" 42.13 -WEB_SITE="http://www.x.org/" 42.14 +WEB_SITE="https://www.x.org/wiki/" 42.15 HOST_ARCH="i486 arm" 42.16 42.17 WANTED="xorg-libXfixes" 42.18 @@ -15,12 +15,5 @@ 42.19 # Rules to gen a SliTaz package suitable for Tazpkg. 42.20 genpkg_rules() 42.21 { 42.22 - mkdir -p \ 42.23 - $fs/usr/share/licenses \ 42.24 - $fs/usr/lib 42.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 42.26 - 42.27 - cp -a $install/usr/include $fs/usr 42.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 42.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 42.30 + cook_copy_files *.h *.la *.pc 42.31 }
43.1 --- a/xorg-libXfixes/receipt Fri Feb 10 00:45:38 2017 +0200 43.2 +++ b/xorg-libXfixes/receipt Fri Feb 10 01:19:30 2017 +0200 43.3 @@ -1,16 +1,16 @@ 43.4 # SliTaz package receipt. 43.5 43.6 PACKAGE="xorg-libXfixes" 43.7 -VERSION="5.0.1" 43.8 +VERSION="5.0.2" 43.9 CATEGORY="x-window" 43.10 SHORT_DESC="X Fixes Library" 43.11 MAINTAINER="pankso@slitaz.org" 43.12 LICENSE="other" 43.13 -WEB_SITE="http://www.x.org/" 43.14 -SOURCE="libXfixes" 43.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 43.16 +WEB_SITE="https://www.x.org/wiki/" 43.17 +HOST_ARCH="i486 arm" 43.18 + 43.19 +TARBALL="libXfixes-$VERSION.tar.bz2" 43.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 43.21 -HOST_ARCH="i486 arm" 43.22 43.23 DEPENDS="xorg-libX11" 43.24 BUILD_DEPENDS="xorg-fixesproto xorg-libX11-dev" 43.25 @@ -30,6 +30,5 @@ 43.26 # Rules to gen a SliTaz package suitable for Tazpkg. 43.27 genpkg_rules() 43.28 { 43.29 - mkdir -p $fs/usr/lib 43.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 43.31 + cook_copy_files *.so* 43.32 }
44.1 --- a/xorg-libXfont-dev/receipt Fri Feb 10 00:45:38 2017 +0200 44.2 +++ b/xorg-libXfont-dev/receipt Fri Feb 10 01:19:30 2017 +0200 44.3 @@ -1,12 +1,12 @@ 44.4 # SliTaz package receipt. 44.5 44.6 PACKAGE="xorg-libXfont-dev" 44.7 -VERSION="1.4.5" 44.8 +VERSION="1.5.1" 44.9 CATEGORY="development" 44.10 SHORT_DESC="Development files for libXfont" 44.11 MAINTAINER="pankso@slitaz.org" 44.12 LICENSE="other" 44.13 -WEB_SITE="http://www.x.org/" 44.14 +WEB_SITE="https://www.x.org/wiki/" 44.15 HOST_ARCH="i486 arm" 44.16 44.17 WANTED="xorg-libXfont" 44.18 @@ -16,13 +16,5 @@ 44.19 # Rules to gen a SliTaz package suitable for Tazpkg. 44.20 genpkg_rules() 44.21 { 44.22 - mkdir -p \ 44.23 - $fs/usr/share/licenses \ 44.24 - $fs/usr/lib 44.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 44.26 - 44.27 - cp -a $install/usr/include $fs/usr 44.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 44.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 44.30 + cook_copy_files *.h *.la *.pc 44.31 } 44.32 -
45.1 --- a/xorg-libXfont/receipt Fri Feb 10 00:45:38 2017 +0200 45.2 +++ b/xorg-libXfont/receipt Fri Feb 10 01:19:30 2017 +0200 45.3 @@ -1,16 +1,16 @@ 45.4 # SliTaz package receipt. 45.5 45.6 PACKAGE="xorg-libXfont" 45.7 -VERSION="1.4.5" 45.8 +VERSION="1.5.1" 45.9 CATEGORY="x-window" 45.10 SHORT_DESC="X font Library" 45.11 MAINTAINER="pankso@slitaz.org" 45.12 LICENSE="other" 45.13 -SOURCE="libXfont" 45.14 -TARBALL="$SOURCE-$VERSION.tar.bz2" 45.15 -WEB_SITE="http://www.x.org/" 45.16 +WEB_SITE="https://www.x.org/wiki/" 45.17 +HOST_ARCH="i486 arm" 45.18 + 45.19 +TARBALL="libXfont-$VERSION.tar.bz2" 45.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 45.21 -HOST_ARCH="i486 arm" 45.22 45.23 DEPENDS="bzlib freetype xorg-libfontenc" 45.24 BUILD_DEPENDS="bzip2-dev freetype-dev zlib-dev xorg-xtrans xorg-fontsproto \ 45.25 @@ -19,12 +19,13 @@ 45.26 # Rules to configure and make the package. 45.27 compile_rules() 45.28 { 45.29 - sed -i 's/STARTCHAR %s/STARTCHAR %99s/' src/bitmap/bdfread.c 45.30 +# sed -i 's/STARTCHAR %s/STARTCHAR %99s/' src/bitmap/bdfread.c 45.31 +# --disable-devel-docs \ 45.32 + 45.33 ./configure \ 45.34 --sysconfdir=/etc \ 45.35 --localstatedir=/var \ 45.36 --disable-static \ 45.37 - --disable-devel-docs \ 45.38 $CONFIGURE_ARGS && 45.39 make && 45.40 make install 45.41 @@ -33,6 +34,5 @@ 45.42 # Rules to gen a SliTaz package suitable for Tazpkg. 45.43 genpkg_rules() 45.44 { 45.45 - mkdir -p $fs/usr/lib 45.46 - cp -a $install/usr/lib/*.so* $fs/usr/lib 45.47 + cook_copy_files *.so 45.48 }
46.1 --- a/xorg-libXmu-dev/receipt Fri Feb 10 00:45:38 2017 +0200 46.2 +++ b/xorg-libXmu-dev/receipt Fri Feb 10 01:19:30 2017 +0200 46.3 @@ -1,12 +1,12 @@ 46.4 # SliTaz package receipt. 46.5 46.6 PACKAGE="xorg-libXmu-dev" 46.7 -VERSION="1.1.1" 46.8 +VERSION="1.1.2" 46.9 CATEGORY="development" 46.10 SHORT_DESC="Development files for libXmu" 46.11 MAINTAINER="pankso@slitaz.org" 46.12 LICENSE="other" 46.13 -WEB_SITE="http://www.x.org/" 46.14 +WEB_SITE="https://www.x.org/wiki/" 46.15 HOST_ARCH="i486 arm" 46.16 46.17 WANTED="xorg-libXmu" 46.18 @@ -15,12 +15,5 @@ 46.19 # Rules to gen a SliTaz package suitable for Tazpkg. 46.20 genpkg_rules() 46.21 { 46.22 - mkdir -p \ 46.23 - $fs/usr/share/licenses \ 46.24 - $fs/usr/lib 46.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 46.26 - 46.27 - cp -a $install/usr/include $fs/usr 46.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 46.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 46.30 + cook_copy_files *.h *.la *.pc 46.31 }
47.1 --- a/xorg-libXmu/receipt Fri Feb 10 00:45:38 2017 +0200 47.2 +++ b/xorg-libXmu/receipt Fri Feb 10 01:19:30 2017 +0200 47.3 @@ -1,16 +1,16 @@ 47.4 # SliTaz package receipt. 47.5 47.6 PACKAGE="xorg-libXmu" 47.7 -VERSION="1.1.1" 47.8 +VERSION="1.1.2" 47.9 CATEGORY="x-window" 47.10 SHORT_DESC="Xmu Library" 47.11 MAINTAINER="pankso@slitaz.org" 47.12 LICENSE="other" 47.13 -WEB_SITE="http://www.x.org/" 47.14 -SOURCE="libXmu" 47.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 47.16 +WEB_SITE="https://www.x.org/wiki/" 47.17 +HOST_ARCH="i486 arm" 47.18 + 47.19 +TARBALL="libXmu-$VERSION.tar.bz2" 47.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 47.21 -HOST_ARCH="i486 arm" 47.22 47.23 DEPENDS="xorg-libXext xorg-libXt" 47.24 BUILD_DEPENDS="xorg-libXext-dev xorg-libXt-dev util-linux-uuid-dev" 47.25 @@ -30,6 +30,5 @@ 47.26 # Rules to gen a SliTaz package suitable for Tazpkg. 47.27 genpkg_rules() 47.28 { 47.29 - mkdir -p $fs/usr/lib 47.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 47.31 + cook_copy_files *.so* 47.32 }
48.1 --- a/xorg-libXpm-dev/receipt Fri Feb 10 00:45:38 2017 +0200 48.2 +++ b/xorg-libXpm-dev/receipt Fri Feb 10 01:19:30 2017 +0200 48.3 @@ -1,12 +1,12 @@ 48.4 # SliTaz package receipt. 48.5 48.6 PACKAGE="xorg-libXpm-dev" 48.7 -VERSION="3.5.10" 48.8 +VERSION="3.5.11" 48.9 CATEGORY="development" 48.10 SHORT_DESC="Development files for libXpm" 48.11 MAINTAINER="pankso@slitaz.org" 48.12 LICENSE="other" 48.13 -WEB_SITE="http://www.x.org/" 48.14 +WEB_SITE="https://www.x.org/wiki/" 48.15 HOST_ARCH="i486 arm" 48.16 48.17 WANTED="xorg-libXpm" 48.18 @@ -15,12 +15,5 @@ 48.19 # Rules to gen a SliTaz package suitable for Tazpkg. 48.20 genpkg_rules() 48.21 { 48.22 - mkdir -p \ 48.23 - $fs/usr/share/licenses \ 48.24 - $fs/usr/lib 48.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 48.26 - 48.27 - cp -a $install/usr/include $fs/usr 48.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 48.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 48.30 + cook_copy_files *.h *.la *.pc 48.31 }
49.1 --- a/xorg-libXpm-util/receipt Fri Feb 10 00:45:38 2017 +0200 49.2 +++ b/xorg-libXpm-util/receipt Fri Feb 10 01:19:30 2017 +0200 49.3 @@ -1,12 +1,12 @@ 49.4 # SliTaz package receipt. 49.5 49.6 PACKAGE="xorg-libXpm-util" 49.7 -VERSION="3.5.10" 49.8 +VERSION="3.5.11" 49.9 CATEGORY="x-window" 49.10 SHORT_DESC="X Pixmap utilities" 49.11 MAINTAINER="al.bobylev@gmail.com" 49.12 LICENSE="other" 49.13 -WEB_SITE="http://www.x.org/" 49.14 +WEB_SITE="https://www.x.org/wiki/" 49.15 49.16 WANTED="xorg-libXpm" 49.17 DEPENDS="xorg-libXpm xorg-libXext xorg-libXt" 49.18 @@ -14,6 +14,5 @@ 49.19 # Rules to gen a SliTaz package suitable for Tazpkg. 49.20 genpkg_rules() 49.21 { 49.22 - mkdir -p $fs/usr 49.23 - cp -a $install/usr/bin $fs/usr 49.24 + cook_copy_folders bin 49.25 }
50.1 --- a/xorg-libXpm/receipt Fri Feb 10 00:45:38 2017 +0200 50.2 +++ b/xorg-libXpm/receipt Fri Feb 10 01:19:30 2017 +0200 50.3 @@ -1,34 +1,36 @@ 50.4 # SliTaz package receipt. 50.5 50.6 PACKAGE="xorg-libXpm" 50.7 -VERSION="3.5.10" 50.8 +VERSION="3.5.11" 50.9 CATEGORY="x-window" 50.10 SHORT_DESC="X Pixmap Library" 50.11 MAINTAINER="pankso@slitaz.org" 50.12 LICENSE="other" 50.13 -WEB_SITE="http://www.x.org/" 50.14 -SOURCE="libXpm" 50.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 50.16 -WGET_URL="$XORG_MIRROR/lib/$TARBALL" 50.17 +WEB_SITE="https://www.x.org/wiki/" 50.18 HOST_ARCH="i486 arm" 50.19 50.20 +TARBALL="libXpm-$VERSION.tar.bz2" 50.21 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 50.22 + 50.23 DEPENDS="xorg-libX11 xorg-libXt" 50.24 -BUILD_DEPENDS="xorg-libXt-dev xorg-libXext-dev xorg-libSM-dev util-linux-uuid-dev" 50.25 +BUILD_DEPENDS="xorg-libXt-dev xorg-libXext-dev xorg-libSM-dev \ 50.26 +util-linux-uuid-dev gettext" 50.27 +SPLIT="xorg-libXpm-util" 50.28 50.29 # Rules to configure and make the package. 50.30 compile_rules() 50.31 { 50.32 case "$ARCH" in 50.33 - arm*) 50.34 + arm*) 50.35 # ARM Hack 50.36 - for la in libICE.la libSM.la libuuid.la 50.37 - do 50.38 + for la in libICE.la libSM.la libuuid.la; do 50.39 if grep -q "^libdir='/usr/lib'" /usr/lib/${la}; then 50.40 sed -i s"#/usr/lib#/cross/$ARCH/sysroot/usr/lib#" \ 50.41 /usr/lib/${la} 50.42 - fi 50.43 + fi 50.44 done ;; 50.45 esac 50.46 + 50.47 ./configure \ 50.48 --sysconfdir=/etc \ 50.49 --localstatedir=/var \ 50.50 @@ -41,6 +43,5 @@ 50.51 # Rules to gen a SliTaz package suitable for Tazpkg. 50.52 genpkg_rules() 50.53 { 50.54 - mkdir -p $fs/usr/lib 50.55 - cp -a $install/usr/lib/*.so* $fs/usr/lib 50.56 + cook_copy_files *.so* 50.57 }
51.1 --- a/xorg-libXrender-dev/receipt Fri Feb 10 00:45:38 2017 +0200 51.2 +++ b/xorg-libXrender-dev/receipt Fri Feb 10 01:19:30 2017 +0200 51.3 @@ -1,12 +1,12 @@ 51.4 # SliTaz package receipt. 51.5 51.6 PACKAGE="xorg-libXrender-dev" 51.7 -VERSION="0.9.8" 51.8 +VERSION="0.9.9" 51.9 CATEGORY="development" 51.10 SHORT_DESC="Development files for libXrender" 51.11 MAINTAINER="pankso@slitaz.org" 51.12 LICENSE="other" 51.13 -WEB_SITE="http://www.x.org/" 51.14 +WEB_SITE="https://www.x.org/wiki/" 51.15 HOST_ARCH="i486 arm" 51.16 51.17 WANTED="xorg-libXrender" 51.18 @@ -15,12 +15,5 @@ 51.19 # Rules to gen a SliTaz package suitable for Tazpkg. 51.20 genpkg_rules() 51.21 { 51.22 - mkdir -p \ 51.23 - $fs/usr/share/licenses \ 51.24 - $fs/usr/lib 51.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 51.26 - 51.27 - cp -a $install/usr/include $fs/usr 51.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 51.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 51.30 + cook_copy_files *.h *.la *.pc 51.31 }
52.1 --- a/xorg-libXrender/receipt Fri Feb 10 00:45:38 2017 +0200 52.2 +++ b/xorg-libXrender/receipt Fri Feb 10 01:19:30 2017 +0200 52.3 @@ -1,16 +1,16 @@ 52.4 # SliTaz package receipt. 52.5 52.6 PACKAGE="xorg-libXrender" 52.7 -VERSION="0.9.8" 52.8 +VERSION="0.9.9" 52.9 CATEGORY="x-window" 52.10 SHORT_DESC="X Render Library" 52.11 MAINTAINER="pankso@slitaz.org" 52.12 LICENSE="other" 52.13 -SOURCE="libXrender" 52.14 -TARBALL="$SOURCE-$VERSION.tar.bz2" 52.15 -WEB_SITE="http://www.x.org/" 52.16 +WEB_SITE="https://www.x.org/wiki/" 52.17 +HOST_ARCH="i486 arm" 52.18 + 52.19 +TARBALL="libXrender-$VERSION.tar.bz2" 52.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 52.21 -HOST_ARCH="i486 arm" 52.22 52.23 DEPENDS="xorg-libX11" 52.24 BUILD_DEPENDS="xorg-libX11-dev xorg-renderproto" 52.25 @@ -29,6 +29,5 @@ 52.26 # Rules to gen a SliTaz package suitable for Tazpkg. 52.27 genpkg_rules() 52.28 { 52.29 - mkdir -p $fs/usr/lib 52.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 52.31 + cook_copy_files *.so* 52.32 }
53.1 --- a/xorg-libXt-dev/receipt Fri Feb 10 00:45:38 2017 +0200 53.2 +++ b/xorg-libXt-dev/receipt Fri Feb 10 01:19:30 2017 +0200 53.3 @@ -1,12 +1,12 @@ 53.4 # SliTaz package receipt. 53.5 53.6 PACKAGE="xorg-libXt-dev" 53.7 -VERSION="1.1.4" 53.8 +VERSION="1.1.5" 53.9 CATEGORY="development" 53.10 SHORT_DESC="Development files for libXt" 53.11 MAINTAINER="pankso@slitaz.org" 53.12 LICENSE="other" 53.13 -WEB_SITE="http://www.x.org/" 53.14 +WEB_SITE="https://www.x.org/wiki/" 53.15 HOST_ARCH="i486 arm" 53.16 53.17 WANTED="xorg-libXt" 53.18 @@ -15,12 +15,5 @@ 53.19 # Rules to gen a SliTaz package suitable for Tazpkg. 53.20 genpkg_rules() 53.21 { 53.22 - mkdir -p \ 53.23 - $fs/usr/share/licenses \ 53.24 - $fs/usr/lib 53.25 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 53.26 - 53.27 - cp -a $install/usr/include $fs/usr 53.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 53.29 - cp -a $install/usr/lib/*.la $fs/usr/lib 53.30 + cook_copy_files *.h *.la *.pc 53.31 }
54.1 --- a/xorg-libXt/receipt Fri Feb 10 00:45:38 2017 +0200 54.2 +++ b/xorg-libXt/receipt Fri Feb 10 01:19:30 2017 +0200 54.3 @@ -1,16 +1,16 @@ 54.4 # SliTaz package receipt. 54.5 54.6 PACKAGE="xorg-libXt" 54.7 -VERSION="1.1.4" 54.8 +VERSION="1.1.5" 54.9 CATEGORY="x-window" 54.10 SHORT_DESC="X Toolkit Library" 54.11 MAINTAINER="pankso@slitaz.org" 54.12 LICENSE="other" 54.13 -WEB_SITE="http://www.x.org/" 54.14 -SOURCE="libXt" 54.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 54.16 +WEB_SITE="https://www.x.org/wiki/" 54.17 +HOST_ARCH="i486 arm" 54.18 + 54.19 +TARBALL="libXt-$VERSION.tar.bz2" 54.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 54.21 -HOST_ARCH="i486 arm" 54.22 54.23 DEPENDS="xorg-libSM xorg-libX11" 54.24 BUILD_DEPENDS="xorg-libSM-dev xorg-libX11-dev glib-dev util-linux-uuid-dev" 54.25 @@ -36,6 +36,5 @@ 54.26 # Rules to gen a SliTaz package suitable for Tazpkg. 54.27 genpkg_rules() 54.28 { 54.29 - mkdir -p $fs/usr/lib 54.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 54.31 + cook_copy_files *.so* 54.32 }
55.1 --- a/xorg-libfontenc-dev/receipt Fri Feb 10 00:45:38 2017 +0200 55.2 +++ b/xorg-libfontenc-dev/receipt Fri Feb 10 01:19:30 2017 +0200 55.3 @@ -1,26 +1,19 @@ 55.4 # SliTaz package receipt. 55.5 55.6 PACKAGE="xorg-libfontenc-dev" 55.7 -VERSION="1.1.2" 55.8 +VERSION="1.1.3" 55.9 CATEGORY="development" 55.10 SHORT_DESC="Development files for libfontenc" 55.11 MAINTAINER="pankso@slitaz.org" 55.12 LICENSE="other" 55.13 -WEB_SITE="http://www.x.org/" 55.14 +WEB_SITE="https://www.x.org/wiki/" 55.15 HOST_ARCH="i486 arm" 55.16 55.17 WANTED="xorg-libfontenc" 55.18 -DEPENDS="$WANTED" 55.19 +DEPENDS="xorg-libfontenc" 55.20 55.21 # Rules to gen a SliTaz package suitable for Tazpkg. 55.22 genpkg_rules() 55.23 { 55.24 - mkdir -p \ 55.25 - $fs/usr/share/licenses \ 55.26 - $fs/usr/lib 55.27 - cp -a $src/COPYING $fs/usr/share/licenses/${PACKAGE%-dev}.txt 55.28 - 55.29 - cp -a $install/usr/include $fs/usr 55.30 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 55.31 - cp -a $install/usr/lib/*.la $fs/usr/lib 55.32 + cook_copy_files *.h *.la *.pc 55.33 }
56.1 --- a/xorg-libfontenc/receipt Fri Feb 10 00:45:38 2017 +0200 56.2 +++ b/xorg-libfontenc/receipt Fri Feb 10 01:19:30 2017 +0200 56.3 @@ -1,19 +1,19 @@ 56.4 # SliTaz package receipt. 56.5 56.6 PACKAGE="xorg-libfontenc" 56.7 -VERSION="1.1.2" 56.8 +VERSION="1.1.3" 56.9 CATEGORY="x-window" 56.10 SHORT_DESC="The fontenc Library" 56.11 MAINTAINER="pankso@slitaz.org" 56.12 LICENSE="other" 56.13 -SOURCE="libfontenc" 56.14 -TARBALL="$SOURCE-$VERSION.tar.bz2" 56.15 -WEB_SITE="http://www.x.org/" 56.16 -WGET_URL="$XORG_MIRROR/lib/$TARBALL" 56.17 +WEB_SITE="https://www.x.org/wiki/" 56.18 HOST_ARCH="i486 arm" 56.19 56.20 +TARBALL="libfontenc-$VERSION.tar.bz2" 56.21 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 56.22 + 56.23 DEPENDS="zlib" 56.24 -BUILD_DEPENDS="zlib-dev xorg-xproto" 56.25 +BUILD_DEPENDS="zlib-dev xorg-xproto xorg-font-util-dev" 56.26 56.27 # Rules to configure and make the package. 56.28 compile_rules() 56.29 @@ -30,6 +30,5 @@ 56.30 # Rules to gen a SliTaz package suitable for Tazpkg. 56.31 genpkg_rules() 56.32 { 56.33 - mkdir -p $fs/usr/lib 56.34 - cp -a $install/usr/lib/*.so* $fs/usr/lib 56.35 + cook_copy_files *.so* 56.36 }
57.1 --- a/xorg-presentproto/receipt Fri Feb 10 00:45:38 2017 +0200 57.2 +++ b/xorg-presentproto/receipt Fri Feb 10 01:19:30 2017 +0200 57.3 @@ -6,9 +6,9 @@ 57.4 SHORT_DESC="Present extension headers." 57.5 MAINTAINER="pascal.bellard@slitaz.org" 57.6 LICENSE="other" 57.7 -WEB_SITE="http://www.x.org/" 57.8 -SOURCE="presentproto" 57.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 57.10 +WEB_SITE="https://www.x.org/wiki/" 57.11 + 57.12 +TARBALL="presentproto-$VERSION.tar.bz2" 57.13 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 57.14 57.15 DEPENDS="xorg-util-macros pkg-config" 57.16 @@ -17,17 +17,11 @@ 57.17 # Rules to configure and make the package. 57.18 compile_rules() 57.19 { 57.20 - ./configure \ 57.21 - --sysconfdir=/etc \ 57.22 - --localstatedir=/var \ 57.23 - $CONFIGURE_ARGS && 57.24 - make && 57.25 - make install 57.26 + ./configure $CONFIGURE_ARGS && make && make install 57.27 } 57.28 57.29 # Rules to gen a SliTaz package suitable for Tazpkg. 57.30 genpkg_rules() 57.31 { 57.32 - cp -a $install/* $fs 57.33 - rm -rf $fs/usr/share 57.34 + cook_copy_files *.h *.pc 57.35 }
58.1 --- a/xorg-randrproto/receipt Fri Feb 10 00:45:38 2017 +0200 58.2 +++ b/xorg-randrproto/receipt Fri Feb 10 01:19:30 2017 +0200 58.3 @@ -1,16 +1,16 @@ 58.4 # SliTaz package receipt. 58.5 58.6 PACKAGE="xorg-randrproto" 58.7 -VERSION="1.4.0" 58.8 +VERSION="1.5.0" 58.9 CATEGORY="development" 58.10 SHORT_DESC="Randr extension headers" 58.11 MAINTAINER="pankso@slitaz.org" 58.12 LICENSE="other" 58.13 -WEB_SITE="http://www.x.org/" 58.14 -SOURCE="randrproto" 58.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 58.16 +WEB_SITE="https://www.x.org/wiki/" 58.17 +HOST_ARCH="i486 arm" 58.18 + 58.19 +TARBALL="randrproto-$VERSION.tar.bz2" 58.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 58.21 -HOST_ARCH="i486 arm" 58.22 58.23 DEPENDS="xorg-renderproto pkg-config" 58.24 BUILD_DEPENDS="xorg-util-macros" 58.25 @@ -18,20 +18,11 @@ 58.26 # Rules to configure and make the package. 58.27 compile_rules() 58.28 { 58.29 - ./configure \ 58.30 - --sysconfdir=/etc \ 58.31 - --localstatedir=/var \ 58.32 - $CONFIGURE_ARGS && 58.33 - make && 58.34 - make install 58.35 + ./configure $CONFIGURE_ARGS && make && make install 58.36 } 58.37 58.38 # Rules to gen a SliTaz package suitable for Tazpkg. 58.39 genpkg_rules() 58.40 { 58.41 - mkdir -p $fs/usr/share/licenses 58.42 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 58.43 - 58.44 - cp -a $install/* $fs 58.45 - rm -rf $fs/usr/share/doc 58.46 + cook_copy_files *.h *.pc 58.47 }
59.1 --- a/xorg-recordproto/receipt Fri Feb 10 00:45:38 2017 +0200 59.2 +++ b/xorg-recordproto/receipt Fri Feb 10 01:19:30 2017 +0200 59.3 @@ -6,11 +6,11 @@ 59.4 SHORT_DESC="Record extension headers" 59.5 MAINTAINER="pankso@slitaz.org" 59.6 LICENSE="other" 59.7 -WEB_SITE="http://www.x.org/" 59.8 -SOURCE="recordproto" 59.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 59.10 +WEB_SITE="https://www.x.org/wiki/" 59.11 +HOST_ARCH="i486 arm" 59.12 + 59.13 +TARBALL="recordproto-$VERSION.tar.bz2" 59.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 59.15 -HOST_ARCH="i486 arm" 59.16 59.17 DEPENDS="xorg-util-macros pkg-config" 59.18 BUILD_DEPENDS="xorg-util-macros" 59.19 @@ -18,20 +18,11 @@ 59.20 # Rules to configure and make the package. 59.21 compile_rules() 59.22 { 59.23 - ./configure \ 59.24 - --sysconfdir=/etc \ 59.25 - --localstatedir=/var \ 59.26 - $CONFIGURE_ARGS && 59.27 - make && 59.28 - make install 59.29 + ./configure $CONFIGURE_ARGS && make && make install 59.30 } 59.31 59.32 # Rules to gen a SliTaz package suitable for Tazpkg. 59.33 genpkg_rules() 59.34 { 59.35 - mkdir -p $fs/usr/share/licenses 59.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 59.37 - 59.38 - cp -a $install/* $fs 59.39 - rm -rf $fs/usr/share/doc 59.40 + cook_copy_files *.h *.pc 59.41 }
60.1 --- a/xorg-renderproto/receipt Fri Feb 10 00:45:38 2017 +0200 60.2 +++ b/xorg-renderproto/receipt Fri Feb 10 01:19:30 2017 +0200 60.3 @@ -6,11 +6,11 @@ 60.4 SHORT_DESC="Render extension headers" 60.5 MAINTAINER="pankso@slitaz.org" 60.6 LICENSE="other" 60.7 -WEB_SITE="http://www.x.org/" 60.8 -SOURCE="renderproto" 60.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 60.10 +WEB_SITE="https://www.x.org/wiki/" 60.11 +HOST_ARCH="i486 arm" 60.12 + 60.13 +TARBALL="renderproto-$VERSION.tar.bz2" 60.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 60.15 -HOST_ARCH="i486 arm" 60.16 60.17 DEPENDS="xorg-xproto pkg-config" 60.18 BUILD_DEPENDS="xorg-util-macros" 60.19 @@ -18,20 +18,11 @@ 60.20 # Rules to configure and make the package. 60.21 compile_rules() 60.22 { 60.23 - ./configure \ 60.24 - --sysconfdir=/etc \ 60.25 - --localstatedir=/var \ 60.26 - $CONFIGURE_ARGS && 60.27 - make && 60.28 - make install 60.29 + ./configure $CONFIGURE_ARGS && make && make install 60.30 } 60.31 60.32 # Rules to gen a SliTaz package suitable for Tazpkg. 60.33 genpkg_rules() 60.34 { 60.35 - mkdir -p $fs/usr/share/licenses 60.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 60.37 - 60.38 - cp -a $install/* $fs 60.39 - rm -rf $fs/usr/share/doc 60.40 + cook_copy_files *.h *.pc 60.41 }
61.1 --- a/xorg-resourceproto/receipt Fri Feb 10 00:45:38 2017 +0200 61.2 +++ b/xorg-resourceproto/receipt Fri Feb 10 01:19:30 2017 +0200 61.3 @@ -6,11 +6,11 @@ 61.4 SHORT_DESC="Resource extension headers" 61.5 MAINTAINER="pankso@slitaz.org" 61.6 LICENSE="other" 61.7 -WEB_SITE="http://www.x.org/" 61.8 -SOURCE="resourceproto" 61.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 61.10 +WEB_SITE="https://www.x.org/wiki/" 61.11 +HOST_ARCH="i486 arm" 61.12 + 61.13 +TARBALL="resourceproto-$VERSION.tar.bz2" 61.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 61.15 -HOST_ARCH="i486 arm" 61.16 61.17 DEPENDS="xorg-util-macros pkg-config" 61.18 BUILD_DEPENDS="xorg-util-macros" 61.19 @@ -18,20 +18,11 @@ 61.20 # Rules to configure and make the package. 61.21 compile_rules() 61.22 { 61.23 - ./configure \ 61.24 - --sysconfdir=/etc \ 61.25 - --localstatedir=/var \ 61.26 - $CONFIGURE_ARGS && 61.27 - make && 61.28 - make install 61.29 + ./configure $CONFIGURE_ARGS && make && make install 61.30 } 61.31 61.32 # Rules to gen a SliTaz package suitable for Tazpkg. 61.33 genpkg_rules() 61.34 { 61.35 - mkdir -p $fs/usr/share/licenses 61.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 61.37 - 61.38 - cp -a $install/* $fs 61.39 - rm -rf $fs/usr/share/doc 61.40 + cook_copy_files *.h *.pc 61.41 }
62.1 --- a/xorg-scrnsaverproto/receipt Fri Feb 10 00:45:38 2017 +0200 62.2 +++ b/xorg-scrnsaverproto/receipt Fri Feb 10 01:19:30 2017 +0200 62.3 @@ -6,11 +6,11 @@ 62.4 SHORT_DESC="ScrnSaver extension headers" 62.5 MAINTAINER="pankso@slitaz.org" 62.6 LICENSE="other" 62.7 -WEB_SITE="http://www.x.org/" 62.8 -SOURCE="scrnsaverproto" 62.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 62.10 +WEB_SITE="https://www.x.org/wiki/" 62.11 +HOST_ARCH="i486 arm" 62.12 + 62.13 +TARBALL="scrnsaverproto-$VERSION.tar.bz2" 62.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 62.15 -HOST_ARCH="i486 arm" 62.16 62.17 DEPENDS="xorg-util-macros pkg-config" 62.18 BUILD_DEPENDS="xorg-util-macros" 62.19 @@ -18,20 +18,11 @@ 62.20 # Rules to configure and make the package. 62.21 compile_rules() 62.22 { 62.23 - ./configure \ 62.24 - --sysconfdir=/etc \ 62.25 - --localstatedir=/var \ 62.26 - $CONFIGURE_ARGS && 62.27 - make && 62.28 - make install 62.29 + ./configure $CONFIGURE_ARGS && make && make install 62.30 } 62.31 62.32 # Rules to gen a SliTaz package suitable for Tazpkg. 62.33 genpkg_rules() 62.34 { 62.35 - mkdir -p $fs/usr/share/licenses 62.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 62.37 - 62.38 - cp -a $install/* $fs 62.39 - rm -rf $fs/usr/share/doc 62.40 + cook_copy_files *.h *.pc 62.41 }
63.1 --- a/xorg-util-macros/receipt Fri Feb 10 00:45:38 2017 +0200 63.2 +++ b/xorg-util-macros/receipt Fri Feb 10 01:19:30 2017 +0200 63.3 @@ -6,11 +6,10 @@ 63.4 SHORT_DESC="A set of autoconf project macros for X.Org modules" 63.5 MAINTAINER="gokhlayeh@slitaz.org" 63.6 LICENSE="other" 63.7 -WEB_SITE="http://www.x.org/" 63.8 +WEB_SITE="https://www.x.org/wiki/" 63.9 HOST_ARCH="i486 arm x86_64" 63.10 63.11 -SOURCE="util-macros" 63.12 -TARBALL="$SOURCE-$VERSION.tar.bz2" 63.13 +TARBALL="util-macros-$VERSION.tar.bz2" 63.14 WGET_URL="$XORG_MIRROR/util/$TARBALL" 63.15 63.16 DEPENDS="m4" 63.17 @@ -29,8 +28,5 @@ 63.18 # Rules to gen a SliTaz package suitable for Tazpkg. 63.19 genpkg_rules() 63.20 { 63.21 - mkdir -p $fs/usr/share/licenses 63.22 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 63.23 - 63.24 - cp -a $install/* $fs 63.25 + cook_copy_files *.m4 *.pc 63.26 }
64.1 --- a/xorg-videoproto/receipt Fri Feb 10 00:45:38 2017 +0200 64.2 +++ b/xorg-videoproto/receipt Fri Feb 10 01:19:30 2017 +0200 64.3 @@ -1,16 +1,16 @@ 64.4 # SliTaz package receipt. 64.5 64.6 PACKAGE="xorg-videoproto" 64.7 -VERSION="2.3.1" 64.8 +VERSION="2.3.3" 64.9 CATEGORY="development" 64.10 SHORT_DESC="Video extension headers" 64.11 MAINTAINER="pankso@slitaz.org" 64.12 LICENSE="other" 64.13 -WEB_SITE="http://www.x.org/" 64.14 -SOURCE="videoproto" 64.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 64.16 +WEB_SITE="https://www.x.org/wiki/" 64.17 +HOST_ARCH="i486 arm" 64.18 + 64.19 +TARBALL="videoproto-$VERSION.tar.bz2" 64.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 64.21 -HOST_ARCH="i486 arm" 64.22 64.23 DEPENDS="xorg-libX11-dev xorg-xproto pkg-config" 64.24 BUILD_DEPENDS="xorg-util-macros" 64.25 @@ -18,20 +18,11 @@ 64.26 # Rules to configure and make the package. 64.27 compile_rules() 64.28 { 64.29 - ./configure \ 64.30 - --sysconfdir=/etc \ 64.31 - --localstatedir=/var \ 64.32 - $CONFIGURE_ARGS && 64.33 - make && 64.34 - make install 64.35 + ./configure $CONFIGURE_ARGS && make && make install 64.36 } 64.37 64.38 # Rules to gen a SliTaz package suitable for Tazpkg. 64.39 genpkg_rules() 64.40 { 64.41 - mkdir -p $fs/usr/share/licenses 64.42 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 64.43 - 64.44 - cp -a $install/* $fs 64.45 - rm -rf $fs/usr/share/doc 64.46 + cook_copy_files *.h *.pc 64.47 }
65.1 --- a/xorg-xcmiscproto/receipt Fri Feb 10 00:45:38 2017 +0200 65.2 +++ b/xorg-xcmiscproto/receipt Fri Feb 10 01:19:30 2017 +0200 65.3 @@ -6,11 +6,11 @@ 65.4 SHORT_DESC="XCMisc extension headers" 65.5 MAINTAINER="pankso@slitaz.org" 65.6 LICENSE="other" 65.7 -WEB_SITE="http://www.x.org/" 65.8 -SOURCE="xcmiscproto" 65.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 65.10 +WEB_SITE="https://www.x.org/wiki/" 65.11 +HOST_ARCH="i486 arm" 65.12 + 65.13 +TARBALL="xcmiscproto-$VERSION.tar.bz2" 65.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 65.15 -HOST_ARCH="i486 arm" 65.16 65.17 DEPENDS="xorg-util-macros pkg-config" 65.18 BUILD_DEPENDS="xorg-util-macros" 65.19 @@ -18,20 +18,11 @@ 65.20 # Rules to configure and make the package. 65.21 compile_rules() 65.22 { 65.23 - ./configure \ 65.24 - --sysconfdir=/etc \ 65.25 - --localstatedir=/var \ 65.26 - $CONFIGURE_ARGS && 65.27 - make && 65.28 - make install 65.29 + ./configure $CONFIGURE_ARGS && make && make install 65.30 } 65.31 65.32 # Rules to gen a SliTaz package suitable for Tazpkg. 65.33 genpkg_rules() 65.34 { 65.35 - mkdir -p $fs/usr/share/licenses 65.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 65.37 - 65.38 - cp -a $install/* $fs 65.39 - rm -rf $fs/usr/share/doc 65.40 + cook_copy_files *.h *.pc 65.41 }
66.1 --- a/xorg-xextproto/receipt Fri Feb 10 00:45:38 2017 +0200 66.2 +++ b/xorg-xextproto/receipt Fri Feb 10 01:19:30 2017 +0200 66.3 @@ -1,37 +1,28 @@ 66.4 # SliTaz package receipt. 66.5 66.6 PACKAGE="xorg-xextproto" 66.7 -VERSION="7.2.1" 66.8 +VERSION="7.3.0" 66.9 CATEGORY="development" 66.10 SHORT_DESC="XExt extension headers" 66.11 MAINTAINER="pankso@slitaz.org" 66.12 LICENSE="other" 66.13 -WEB_SITE="http://www.x.org/" 66.14 -SOURCE="xextproto" 66.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 66.16 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 66.17 +WEB_SITE="https://www.x.org/wiki/" 66.18 HOST_ARCH="i486 arm" 66.19 66.20 +TARBALL="xextproto-$VERSION.tar.bz2" 66.21 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 66.22 + 66.23 DEPENDS="xorg-util-macros pkg-config" 66.24 -BUILD_DEPENDS="xorg-util-macros" 66.25 +BUILD_DEPENDS="xorg-util-macros coreutils-file-special" # for mkdir 66.26 66.27 # Rules to configure and make the package. 66.28 compile_rules() 66.29 { 66.30 - ./configure \ 66.31 - --sysconfdir=/etc \ 66.32 - --localstatedir=/var \ 66.33 - $CONFIGURE_ARGS && 66.34 - make && 66.35 - make install 66.36 + ./configure $CONFIGURE_ARGS && make && make install 66.37 } 66.38 66.39 # Rules to gen a SliTaz package suitable for Tazpkg. 66.40 genpkg_rules() 66.41 { 66.42 - mkdir -p $fs/usr/share/licenses 66.43 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 66.44 - 66.45 - cp -a $install/* $fs 66.46 - rm -rf $fs/usr/share/doc 66.47 + cook_copy_files *.h *.pc 66.48 }
67.1 --- a/xorg-xf86bigfontproto/receipt Fri Feb 10 00:45:38 2017 +0200 67.2 +++ b/xorg-xf86bigfontproto/receipt Fri Feb 10 01:19:30 2017 +0200 67.3 @@ -6,11 +6,11 @@ 67.4 SHORT_DESC="XF86BigFont extension headers" 67.5 MAINTAINER="pankso@slitaz.org" 67.6 LICENSE="other" 67.7 -WEB_SITE="http://www.x.org/" 67.8 -SOURCE="xf86bigfontproto" 67.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 67.10 +WEB_SITE="https://www.x.org/wiki/" 67.11 +HOST_ARCH="i486 arm" 67.12 + 67.13 +TARBALL="xf86bigfontproto-$VERSION.tar.bz2" 67.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 67.15 -HOST_ARCH="i486 arm" 67.16 67.17 DEPENDS="xorg-util-macros pkg-config" 67.18 BUILD_DEPENDS="xorg-util-macros" 67.19 @@ -18,19 +18,11 @@ 67.20 # Rules to configure and make the package. 67.21 compile_rules() 67.22 { 67.23 - ./configure \ 67.24 - --sysconfdir=/etc \ 67.25 - --localstatedir=/var \ 67.26 - $CONFIGURE_ARGS && 67.27 - make && 67.28 - make install 67.29 + ./configure $CONFIGURE_ARGS && make && make install 67.30 } 67.31 67.32 # Rules to gen a SliTaz package suitable for Tazpkg. 67.33 genpkg_rules() 67.34 { 67.35 - mkdir -p $fs/usr/share/licenses 67.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 67.37 - 67.38 - cp -a $install/* $fs 67.39 + cook_copy_files *.h *.pc 67.40 }
68.1 --- a/xorg-xf86dgaproto/receipt Fri Feb 10 00:45:38 2017 +0200 68.2 +++ b/xorg-xf86dgaproto/receipt Fri Feb 10 01:19:30 2017 +0200 68.3 @@ -6,32 +6,23 @@ 68.4 SHORT_DESC="XF86DGA extension headers" 68.5 MAINTAINER="pankso@slitaz.org" 68.6 LICENSE="other" 68.7 -WEB_SITE="http://www.x.org/" 68.8 -SOURCE="xf86dgaproto" 68.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 68.10 -WGET_URL="$XORG_MIRROR/proto/$TARBALL" 68.11 +WEB_SITE="https://www.x.org/wiki/" 68.12 HOST_ARCH="i486 arm" 68.13 68.14 -DEPENDS="xorg-util-macros pkg-config" 68.15 -# /usr/include/X11/extensions/xf86dga.h: #include <X11/extensions/Xxf86dga.h> ? 68.16 +TARBALL="xf86dgaproto-$VERSION.tar.bz2" 68.17 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 68.18 + 68.19 +DEPENDS="xorg-util-macros pkg-config" # xorg-libXxf86dga-dev 68.20 BUILD_DEPENDS="xorg-util-macros" 68.21 68.22 # Rules to configure and make the package. 68.23 compile_rules() 68.24 { 68.25 - ./configure \ 68.26 - --sysconfdir=/etc \ 68.27 - --localstatedir=/var \ 68.28 - $CONFIGURE_ARGS && 68.29 - make && 68.30 - make install 68.31 + ./configure $CONFIGURE_ARGS && make && make install 68.32 } 68.33 68.34 # Rules to gen a SliTaz package suitable for Tazpkg. 68.35 genpkg_rules() 68.36 { 68.37 - mkdir -p $fs/usr/share/licenses 68.38 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 68.39 - 68.40 - cp -a $install/* $fs 68.41 + cook_copy_files *.h *.pc 68.42 }
69.1 --- a/xorg-xf86driproto/receipt Fri Feb 10 00:45:38 2017 +0200 69.2 +++ b/xorg-xf86driproto/receipt Fri Feb 10 01:19:30 2017 +0200 69.3 @@ -6,9 +6,9 @@ 69.4 SHORT_DESC="XF86DRI extension headers" 69.5 MAINTAINER="pankso@slitaz.org" 69.6 LICENSE="other" 69.7 -WEB_SITE="http://www.x.org/" 69.8 -SOURCE="xf86driproto" 69.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 69.10 +WEB_SITE="https://www.x.org/wiki/" 69.11 + 69.12 +TARBALL="xf86driproto-$VERSION.tar.bz2" 69.13 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 69.14 69.15 DEPENDS="xorg-util-macros libdrm-dev pkg-config" 69.16 @@ -17,20 +17,11 @@ 69.17 # Rules to configure and make the package. 69.18 compile_rules() 69.19 { 69.20 - ./configure \ 69.21 - --sysconfdir=/etc \ 69.22 - --localstatedir=/var \ 69.23 - $CONFIGURE_ARGS && 69.24 - make && 69.25 - make install 69.26 + ./configure $CONFIGURE_ARGS && make && make install 69.27 } 69.28 69.29 # Rules to gen a SliTaz package suitable for Tazpkg. 69.30 genpkg_rules() 69.31 { 69.32 - mkdir -p $fs/usr/share/licenses 69.33 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 69.34 - 69.35 - cp -a $install/* $fs 69.36 + cook_copy_files *.h *.pc 69.37 } 69.38 -
70.1 --- a/xorg-xf86vidmodeproto/receipt Fri Feb 10 00:45:38 2017 +0200 70.2 +++ b/xorg-xf86vidmodeproto/receipt Fri Feb 10 01:19:30 2017 +0200 70.3 @@ -6,11 +6,11 @@ 70.4 SHORT_DESC="XF86VidMode extension headers" 70.5 MAINTAINER="pankso@slitaz.org" 70.6 LICENSE="other" 70.7 -WEB_SITE="http://www.x.org/" 70.8 -SOURCE="xf86vidmodeproto" 70.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 70.10 +WEB_SITE="https://www.x.org/wiki/" 70.11 +HOST_ARCH="i486 arm" 70.12 + 70.13 +TARBALL="xf86vidmodeproto-$VERSION.tar.bz2" 70.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 70.15 -HOST_ARCH="i486 arm" 70.16 70.17 DEPENDS="xorg-xproto pkg-config" 70.18 BUILD_DEPENDS="xorg-util-macros" 70.19 @@ -18,19 +18,11 @@ 70.20 # Rules to configure and make the package. 70.21 compile_rules() 70.22 { 70.23 - ./configure \ 70.24 - --sysconfdir=/etc \ 70.25 - --localstatedir=/var \ 70.26 - $CONFIGURE_ARGS && 70.27 - make && 70.28 - make install 70.29 + ./configure $CONFIGURE_ARGS && make && make install 70.30 } 70.31 70.32 # Rules to gen a SliTaz package suitable for Tazpkg. 70.33 genpkg_rules() 70.34 { 70.35 - mkdir -p $fs/usr/share/licenses 70.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 70.37 - 70.38 - cp -a $install/* $fs 70.39 + cook_copy_files *.h *.pc 70.40 }
71.1 --- a/xorg-xineramaproto/receipt Fri Feb 10 00:45:38 2017 +0200 71.2 +++ b/xorg-xineramaproto/receipt Fri Feb 10 01:19:30 2017 +0200 71.3 @@ -6,11 +6,11 @@ 71.4 SHORT_DESC="Xinerama extension headers" 71.5 MAINTAINER="pankso@slitaz.org" 71.6 LICENSE="other" 71.7 -WEB_SITE="http://www.x.org/" 71.8 -SOURCE="xineramaproto" 71.9 -TARBALL="$SOURCE-$VERSION.tar.bz2" 71.10 +WEB_SITE="https://www.x.org/wiki/" 71.11 +HOST_ARCH="i486 arm" 71.12 + 71.13 +TARBALL="xineramaproto-$VERSION.tar.bz2" 71.14 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 71.15 -HOST_ARCH="i486 arm" 71.16 71.17 DEPENDS="xorg-util-macros" 71.18 BUILD_DEPENDS="xorg-util-macros" 71.19 @@ -18,19 +18,11 @@ 71.20 # Rules to configure and make the package. 71.21 compile_rules() 71.22 { 71.23 - ./configure \ 71.24 - --sysconfdir=/etc \ 71.25 - --localstatedir=/var \ 71.26 - $CONFIGURE_ARGS && 71.27 - make && 71.28 - make install 71.29 + ./configure $CONFIGURE_ARGS && make && make install 71.30 } 71.31 71.32 # Rules to gen a SliTaz package suitable for Tazpkg. 71.33 genpkg_rules() 71.34 { 71.35 - mkdir -p $fs/usr/share/licenses 71.36 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 71.37 - 71.38 - cp -a $install/* $fs 71.39 + cook_copy_files *.h *.pc 71.40 }
72.1 --- a/xorg-xproto/receipt Fri Feb 10 00:45:38 2017 +0200 72.2 +++ b/xorg-xproto/receipt Fri Feb 10 01:19:30 2017 +0200 72.3 @@ -1,16 +1,16 @@ 72.4 # SliTaz package receipt. 72.5 72.6 PACKAGE="xorg-xproto" 72.7 -VERSION="7.0.24" 72.8 +VERSION="7.0.29" 72.9 CATEGORY="development" 72.10 SHORT_DESC="Xproto headers" 72.11 MAINTAINER="pankso@slitaz.org" 72.12 LICENSE="other" 72.13 -WEB_SITE="http://www.x.org/" 72.14 -SOURCE="xproto" 72.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 72.16 +WEB_SITE="https://www.x.org/wiki/" 72.17 +HOST_ARCH="i486 arm" 72.18 + 72.19 +TARBALL="xproto-$VERSION.tar.bz2" 72.20 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 72.21 -HOST_ARCH="i486 arm" 72.22 72.23 DEPENDS="xorg-util-macros pkg-config" 72.24 BUILD_DEPENDS="xorg-util-macros" 72.25 @@ -18,20 +18,11 @@ 72.26 # Rules to configure and make the package. 72.27 compile_rules() 72.28 { 72.29 - ./configure \ 72.30 - --sysconfdir=/etc \ 72.31 - --localstatedir=/var \ 72.32 - $CONFIGURE_ARGS && 72.33 - make && 72.34 - make install 72.35 + ./configure $CONFIGURE_ARGS && make && make install 72.36 } 72.37 72.38 # Rules to gen a SliTaz package suitable for Tazpkg. 72.39 genpkg_rules() 72.40 { 72.41 - mkdir -p $fs/usr/share/licenses 72.42 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 72.43 - 72.44 - cp -a $install/* $fs 72.45 - rm -rf $fs/usr/share/doc 72.46 + cook_copy_files *.h *.pc 72.47 }
73.1 --- a/xorg-xtrans/receipt Fri Feb 10 00:45:38 2017 +0200 73.2 +++ b/xorg-xtrans/receipt Fri Feb 10 01:19:30 2017 +0200 73.3 @@ -1,16 +1,16 @@ 73.4 # SliTaz package receipt. 73.5 73.6 PACKAGE="xorg-xtrans" 73.7 -VERSION="1.2.7" 73.8 +VERSION="1.3.5" 73.9 CATEGORY="development" 73.10 SHORT_DESC="Abstract network code for X" 73.11 MAINTAINER="pankso@slitaz.org" 73.12 LICENSE="other" 73.13 -WEB_SITE="http://www.x.org/" 73.14 -SOURCE="xtrans" 73.15 -TARBALL="$SOURCE-$VERSION.tar.bz2" 73.16 +WEB_SITE="https://www.x.org/wiki/" 73.17 +HOST_ARCH="i486 arm" 73.18 + 73.19 +TARBALL="xtrans-$VERSION.tar.bz2" 73.20 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 73.21 -HOST_ARCH="i486 arm" 73.22 73.23 DEPENDS="xorg-xproto" 73.24 BUILD_DEPENDS="xorg-util-macros" 73.25 @@ -29,9 +29,5 @@ 73.26 # Rules to gen a SliTaz package suitable for Tazpkg. 73.27 genpkg_rules() 73.28 { 73.29 - mkdir -p $fs/usr/share/licenses 73.30 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 73.31 - 73.32 - cp -a $install/* $fs 73.33 - rm -rf $fs/usr/share/doc 73.34 + cook_copy_files *.h *.c *.m4 *.pc 73.35 }