wok-next rev 20
Add : xorg-* first big commit (no server)
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xorg-bigreqsproto/receipt Tue Dec 18 13:41:02 2007 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xorg-bigreqsproto" 1.7 +VERSION="1.0.2" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="Xorg proto." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +DEPENDS="xorg" 1.12 +SOURCE="bigreqsproto" 1.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://www.x.org/" 1.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 1.22 + --mandir=/usr/share/man --localstatedir=/var \ 1.23 + $CONFIGURE_ARGS 1.24 + make 1.25 + make DESTDIR=$PWD/_pkg install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + cp -a $_pkg/* $fs 1.32 +} 1.33 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xorg-dev-proto/receipt Tue Dec 18 13:41:02 2007 +0100 2.3 @@ -0,0 +1,42 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xorg-dev-proto" 2.7 +VERSION="7.3" 2.8 +CATEGORY="x-window" 2.9 +SHORT_DESC="Meta-package to build/install all Xorg protocols." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +WANTED="xorg" 2.12 +WEB_SITE="http://www.x.org/" 2.13 +DEPENDS=" 2.14 +xorg-proto 2.15 +xorg-bigreqsproto 2.16 +xorg-inputproto 2.17 +xorg-kbproto 2.18 +xorg-randrproto 2.19 +xorg-renderproto 2.20 +xorg-xcmiscproto 2.21 +xorg-xextproto 2.22 +xorg-xproto 2.23 +xorg-xtrans 2.24 +xorg-fixesproto 2.25 +xorg-xineramaproto" 2.26 + 2.27 +# Rules to compile all proto packages listed in $DEPENDS 2.28 +compile_rules() 2.29 +{ 2.30 + for pkg in $DEPENDS 2.31 + do 2.32 + tazwok compile $pkg 2.33 + done 2.34 +} 2.35 + 2.36 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.37 +genpkg_rules() 2.38 +{ 2.39 + for pkg in $DEPENDS 2.40 + do 2.41 + tazwok genpkg $pkg 2.42 + done 2.43 + # Just to have a dir. 2.44 + mkdir -p $fs/usr/share/X11 2.45 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xorg-dev/receipt Tue Dec 18 13:41:02 2007 +0100 3.3 @@ -0,0 +1,43 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xorg-dev" 3.7 +VERSION="7.3" 3.8 +CATEGORY="x-window" 3.9 +SHORT_DESC="Meta-package to build/install all Xorg devel packages." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +WANTED="xorg" 3.12 +WEB_SITE="http://www.x.org/" 3.13 +DEPENDS=" 3.14 +freetype 3.15 +fontconfig-dev 3.16 +libpng-dev 3.17 +pkg-config 3.18 +xorg-libXdmcp-dev 3.19 +xorg-libX11-dev 3.20 +xorg-libXrandr-dev 3.21 +xorg-libXrender-dev 3.22 +xorg-libICE-dev 3.23 +xorg-libSM-dev 3.24 +xorg-libXau-dev 3.25 +xorg-libXaw-dev 3.26 +xorg-libXext-dev 3.27 +xorg-libXft-dev 3.28 +xorg-libXmu-dev 3.29 +xorg-libXinerama-dev 3.30 +xorg-libXpm-dev 3.31 +xorg-libXt-dev 3.32 +xorg-libXfixes-dev 3.33 +xorg-libXcursor-dev 3.34 +xorg-libXi-dev 3.35 +xorg-libfontenc-dev" 3.36 + 3.37 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.38 +genpkg_rules() 3.39 +{ 3.40 + for pkg in $DEPENDS 3.41 + do 3.42 + tazwok genpkg $pkg 3.43 + done 3.44 + # Just to have a dir. 3.45 + mkdir -p $fs/usr/share/X11 3.46 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xorg-fixesproto/receipt Tue Dec 18 13:41:02 2007 +0100 4.3 @@ -0,0 +1,30 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="xorg-fixesproto" 4.7 +VERSION="4.0" 4.8 +CATEGORY="x-window" 4.9 +SHORT_DESC="Xorg server fixes protocol." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +DEPENDS="xorg" 4.12 +SOURCE="fixesproto" 4.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 4.14 +WEB_SITE="http://www.x.org/" 4.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 4.16 + 4.17 +# Rules to configure and make the package. 4.18 +compile_rules() 4.19 +{ 4.20 + cd $src 4.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 4.22 + --mandir=/usr/share/man --localstatedir=/var \ 4.23 + $CONFIGURE_ARGS 4.24 + make 4.25 + make DESTDIR=$PWD/_pkg install 4.26 +} 4.27 + 4.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.29 +genpkg_rules() 4.30 +{ 4.31 + cp -a $_pkg/* $fs 4.32 +} 4.33 +
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/xorg-inputproto/receipt Tue Dec 18 13:41:02 2007 +0100 5.3 @@ -0,0 +1,30 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="xorg-inputproto" 5.7 +VERSION="1.4.2.1" 5.8 +CATEGORY="x-window" 5.9 +SHORT_DESC="Xorg server module." 5.10 +MAINTAINER="pankso@slitaz.org" 5.11 +DEPENDS="xorg" 5.12 +SOURCE="inputproto" 5.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 5.14 +WEB_SITE="http://www.x.org/" 5.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 5.16 + 5.17 +# Rules to configure and make the package. 5.18 +compile_rules() 5.19 +{ 5.20 + cd $src 5.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 5.22 + --mandir=/usr/share/man --localstatedir=/var \ 5.23 + $CONFIGURE_ARGS 5.24 + make 5.25 + make DESTDIR=$PWD/_pkg install 5.26 +} 5.27 + 5.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.29 +genpkg_rules() 5.30 +{ 5.31 + cp -a $_pkg/* $fs 5.32 +} 5.33 +
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/xorg-kbproto/receipt Tue Dec 18 13:41:02 2007 +0100 6.3 @@ -0,0 +1,30 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="xorg-kbproto" 6.7 +VERSION="1.0.3" 6.8 +CATEGORY="x-window" 6.9 +SHORT_DESC="Xorg server module." 6.10 +MAINTAINER="pankso@slitaz.org" 6.11 +DEPENDS="xorg" 6.12 +SOURCE="kbproto" 6.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 6.14 +WEB_SITE="http://www.x.org/" 6.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 6.16 + 6.17 +# Rules to configure and make the package. 6.18 +compile_rules() 6.19 +{ 6.20 + cd $src 6.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 6.22 + --mandir=/usr/share/man --localstatedir=/var \ 6.23 + $CONFIGURE_ARGS 6.24 + make 6.25 + make DESTDIR=$PWD/_pkg install 6.26 +} 6.27 + 6.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.29 +genpkg_rules() 6.30 +{ 6.31 + cp -a $_pkg/* $fs 6.32 +} 6.33 +
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/xorg-libICE-dev/receipt Tue Dec 18 13:41:02 2007 +0100 7.3 @@ -0,0 +1,21 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="xorg-libICE-dev" 7.7 +VERSION="1.0.4" 7.8 +CATEGORY="x-window" 7.9 +SHORT_DESC="Xorg module devel files." 7.10 +MAINTAINER="pankso@slitaz.org" 7.11 +DEPENS="xorg-dev" 7.12 +WANTED="xorg-libICE" 7.13 +SOURCE="libICE" 7.14 +WEB_SITE="http://www.x.org/" 7.15 + 7.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.17 +genpkg_rules() 7.18 +{ 7.19 + mkdir -p $fs/usr/lib 7.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 7.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 7.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 7.23 + cp -a $_pkg/usr/include $fs/usr 7.24 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/xorg-libICE/receipt Tue Dec 18 13:41:02 2007 +0100 8.3 @@ -0,0 +1,31 @@ 8.4 +# SliTaz package receipt. 8.5 + 8.6 +PACKAGE="xorg-libICE" 8.7 +VERSION="1.0.4" 8.8 +CATEGORY="x-window" 8.9 +SHORT_DESC="Xorg server module." 8.10 +MAINTAINER="pankso@slitaz.org" 8.11 +DEPENDS="xorg" 8.12 +SOURCE="libICE" 8.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 8.14 +WEB_SITE="http://www.x.org/" 8.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 8.16 + 8.17 +# Rules to configure and make the package. 8.18 +compile_rules() 8.19 +{ 8.20 + cd $src 8.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 8.22 + --mandir=/usr/share/man --localstatedir=/var \ 8.23 + $CONFIGURE_ARGS 8.24 + make 8.25 + make DESTDIR=$PWD/_pkg install 8.26 +} 8.27 + 8.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 8.29 +genpkg_rules() 8.30 +{ 8.31 + mkdir -p $fs/usr/lib 8.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 8.33 + strip -s $fs/usr/lib/* 8.34 +}
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/xorg-libSM-dev/receipt Tue Dec 18 13:41:02 2007 +0100 9.3 @@ -0,0 +1,21 @@ 9.4 +# SliTaz package receipt. 9.5 + 9.6 +PACKAGE="xorg-libSM-dev" 9.7 +VERSION="1.0.3" 9.8 +CATEGORY="x-window" 9.9 +SHORT_DESC="Xorg module devel files." 9.10 +MAINTAINER="pankso@slitaz.org" 9.11 +DEPENS="xorg-dev" 9.12 +WANTED="xorg-libSM" 9.13 +SOURCE="libSM" 9.14 +WEB_SITE="http://www.x.org/" 9.15 + 9.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 9.17 +genpkg_rules() 9.18 +{ 9.19 + mkdir -p $fs/usr/lib 9.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 9.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 9.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 9.23 + cp -a $_pkg/usr/include $fs/usr 9.24 +}
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/xorg-libSM/receipt Tue Dec 18 13:41:02 2007 +0100 10.3 @@ -0,0 +1,31 @@ 10.4 +# SliTaz package receipt. 10.5 + 10.6 +PACKAGE="xorg-libSM" 10.7 +VERSION="1.0.3" 10.8 +CATEGORY="x-window" 10.9 +SHORT_DESC="Xorg server module." 10.10 +MAINTAINER="pankso@slitaz.org" 10.11 +DEPENDS="xorg" 10.12 +SOURCE="libSM" 10.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 10.14 +WEB_SITE="http://www.x.org/" 10.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 10.16 + 10.17 +# Rules to configure and make the package. 10.18 +compile_rules() 10.19 +{ 10.20 + cd $src 10.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 10.22 + --mandir=/usr/share/man --localstatedir=/var \ 10.23 + $CONFIGURE_ARGS 10.24 + make 10.25 + make DESTDIR=$PWD/_pkg install 10.26 +} 10.27 + 10.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 10.29 +genpkg_rules() 10.30 +{ 10.31 + mkdir -p $fs/usr/lib 10.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 10.33 + strip -s $fs/usr/lib/* 10.34 +}
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 11.2 +++ b/xorg-libX11-dev/receipt Tue Dec 18 13:41:02 2007 +0100 11.3 @@ -0,0 +1,21 @@ 11.4 +# SliTaz package receipt. 11.5 + 11.6 +PACKAGE="xorg-libX11-dev" 11.7 +VERSION="1.1.3" 11.8 +CATEGORY="x-window" 11.9 +SHORT_DESC="Xorg module devel files." 11.10 +MAINTAINER="pankso@slitaz.org" 11.11 +DEPENS="xorg-dev" 11.12 +WANTED="xorg-libX11" 11.13 +SOURCE="libX11" 11.14 +WEB_SITE="http://www.x.org/" 11.15 + 11.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 11.17 +genpkg_rules() 11.18 +{ 11.19 + mkdir -p $fs/usr/lib 11.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 11.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 11.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 11.23 + cp -a $_pkg/usr/include $fs/usr 11.24 +}
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/xorg-libX11/receipt Tue Dec 18 13:41:02 2007 +0100 12.3 @@ -0,0 +1,39 @@ 12.4 +# SliTaz package receipt. 12.5 + 12.6 +PACKAGE="xorg-libX11" 12.7 +VERSION="1.1.3" 12.8 +CATEGORY="x-window" 12.9 +SHORT_DESC="X11 main client interface to X window system." 12.10 +MAINTAINER="pankso@slitaz.org" 12.11 +DEPENDS="xorg" 12.12 +SOURCE="libX11" 12.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 12.14 +WEB_SITE="http://www.x.org/" 12.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 12.16 + 12.17 +# Rules to configure and make the package. 12.18 +compile_rules() 12.19 +{ 12.20 + cd $src 12.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 12.22 + --mandir=/usr/share/man --localstatedir=/var \ 12.23 + --without-xcb $CONFIGURE_ARGS 12.24 + make 12.25 + make DESTDIR=$PWD/_pkg install 12.26 +} 12.27 + 12.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 12.29 +genpkg_rules() 12.30 +{ 12.31 + mkdir -p $fs/usr/lib 12.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 12.33 + strip -s $fs/usr/lib/* 12.34 + # X11 locale. 12.35 + mkdir -p $fs/usr/share/X11/locale 12.36 + cp -a $_pkg/usr/share/X11/locale/C $fs/usr/share/X11/locale 12.37 + cp -a $_pkg/usr/share/X11/locale/iso8859-1 $fs/usr/share/X11/locale 12.38 + cp -a $_pkg/usr/share/X11/locale/iso8859-2 $fs/usr/share/X11/locale 12.39 + cp -a $_pkg/usr/share/X11/locale/iso8859-15 $fs/usr/share/X11/locale 12.40 + cp -a $_pkg/usr/share/X11/locale/*.dir $fs/usr/share/X11/locale 12.41 + cp -a $_pkg/usr/share/X11/locale/*.alias $fs/usr/share/X11/locale 12.42 +}
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/xorg-libXau-dev/receipt Tue Dec 18 13:41:02 2007 +0100 13.3 @@ -0,0 +1,21 @@ 13.4 +# SliTaz package receipt. 13.5 + 13.6 +PACKAGE="xorg-libXau-dev" 13.7 +VERSION="1.0.3" 13.8 +CATEGORY="x-window" 13.9 +SHORT_DESC="Xorg module devel files." 13.10 +MAINTAINER="pankso@slitaz.org" 13.11 +DEPENS="xorg-dev" 13.12 +WANTED="xorg-libXau" 13.13 +SOURCE="libXau" 13.14 +WEB_SITE="http://www.x.org/" 13.15 + 13.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 13.17 +genpkg_rules() 13.18 +{ 13.19 + mkdir -p $fs/usr/lib 13.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 13.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 13.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 13.23 + cp -a $_pkg/usr/include $fs/usr 13.24 +}
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/xorg-libXau/receipt Tue Dec 18 13:41:02 2007 +0100 14.3 @@ -0,0 +1,31 @@ 14.4 +# SliTaz package receipt. 14.5 + 14.6 +PACKAGE="xorg-libXau" 14.7 +VERSION="1.0.3" 14.8 +CATEGORY="x-window" 14.9 +SHORT_DESC="Xorg server module." 14.10 +MAINTAINER="pankso@slitaz.org" 14.11 +DEPENDS="xorg" 14.12 +SOURCE="libXau" 14.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 14.14 +WEB_SITE="http://www.x.org/" 14.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 14.16 + 14.17 +# Rules to configure and make the package. 14.18 +compile_rules() 14.19 +{ 14.20 + cd $src 14.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 14.22 + --mandir=/usr/share/man --localstatedir=/var \ 14.23 + $CONFIGURE_ARGS 14.24 + make 14.25 + make DESTDIR=$PWD/_pkg install 14.26 +} 14.27 + 14.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 14.29 +genpkg_rules() 14.30 +{ 14.31 + mkdir -p $fs/usr/lib 14.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 14.33 + strip -s $fs/usr/lib/* 14.34 +}
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/xorg-libXaw-dev/receipt Tue Dec 18 13:41:02 2007 +0100 15.3 @@ -0,0 +1,21 @@ 15.4 +# SliTaz package receipt. 15.5 + 15.6 +PACKAGE="xorg-libXaw-dev" 15.7 +VERSION="1.0.4" 15.8 +CATEGORY="x-window" 15.9 +SHORT_DESC="Xorg module devel files." 15.10 +MAINTAINER="pankso@slitaz.org" 15.11 +DEPENS="xorg-dev" 15.12 +WANTED="xorg-libXaw" 15.13 +SOURCE="libXaw" 15.14 +WEB_SITE="http://www.x.org/" 15.15 + 15.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 15.17 +genpkg_rules() 15.18 +{ 15.19 + mkdir -p $fs/usr/lib 15.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 15.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 15.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 15.23 + cp -a $_pkg/usr/include $fs/usr 15.24 +}
16.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 16.2 +++ b/xorg-libXaw/receipt Tue Dec 18 13:41:02 2007 +0100 16.3 @@ -0,0 +1,31 @@ 16.4 +# SliTaz package receipt. 16.5 + 16.6 +PACKAGE="xorg-libXaw" 16.7 +VERSION="1.0.4" 16.8 +CATEGORY="x-window" 16.9 +SHORT_DESC="Xorg server module." 16.10 +MAINTAINER="pankso@slitaz.org" 16.11 +DEPENDS="xorg" 16.12 +SOURCE="libXaw" 16.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 16.14 +WEB_SITE="http://www.x.org/" 16.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 16.16 + 16.17 +# Rules to configure and make the package. 16.18 +compile_rules() 16.19 +{ 16.20 + cd $src 16.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 16.22 + --mandir=/usr/share/man --localstatedir=/var \ 16.23 + $CONFIGURE_ARGS 16.24 + make 16.25 + make DESTDIR=$PWD/_pkg install 16.26 +} 16.27 + 16.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 16.29 +genpkg_rules() 16.30 +{ 16.31 + mkdir -p $fs/usr/lib 16.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 16.33 + strip -s $fs/usr/lib/* 16.34 +}
17.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 17.2 +++ b/xorg-libXcursor-dev/receipt Tue Dec 18 13:41:02 2007 +0100 17.3 @@ -0,0 +1,21 @@ 17.4 +# SliTaz package receipt. 17.5 + 17.6 +PACKAGE="xorg-libXcursor-dev" 17.7 +VERSION="1.1.9" 17.8 +CATEGORY="x-window" 17.9 +SHORT_DESC="Xorg module devel files." 17.10 +MAINTAINER="pankso@slitaz.org" 17.11 +DEPENS="xorg-dev" 17.12 +WANTED="xorg-libXcursor" 17.13 +SOURCE="libXcursor" 17.14 +WEB_SITE="http://www.x.org/" 17.15 + 17.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 17.17 +genpkg_rules() 17.18 +{ 17.19 + mkdir -p $fs/usr/lib 17.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 17.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 17.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 17.23 + cp -a $_pkg/usr/include $fs/usr 17.24 +}
18.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 18.2 +++ b/xorg-libXcursor/receipt Tue Dec 18 13:41:02 2007 +0100 18.3 @@ -0,0 +1,31 @@ 18.4 +# SliTaz package receipt. 18.5 + 18.6 +PACKAGE="xorg-libXcursor" 18.7 +VERSION="1.1.9" 18.8 +CATEGORY="x-window" 18.9 +SHORT_DESC="X cursors library." 18.10 +MAINTAINER="pankso@slitaz.org" 18.11 +DEPENDS="xorg" 18.12 +SOURCE="libXcursor" 18.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 18.14 +WEB_SITE="http://www.x.org/" 18.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 18.16 + 18.17 +# Rules to configure and make the package. 18.18 +compile_rules() 18.19 +{ 18.20 + cd $src 18.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 18.22 + --mandir=/usr/share/man --localstatedir=/var \ 18.23 + $CONFIGURE_ARGS 18.24 + make 18.25 + make DESTDIR=$PWD/_pkg install 18.26 +} 18.27 + 18.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 18.29 +genpkg_rules() 18.30 +{ 18.31 + mkdir -p $fs/usr/lib 18.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 18.33 + strip -s $fs/usr/lib/* 18.34 +}
19.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 19.2 +++ b/xorg-libXdmcp-dev/receipt Tue Dec 18 13:41:02 2007 +0100 19.3 @@ -0,0 +1,21 @@ 19.4 +# SliTaz package receipt. 19.5 + 19.6 +PACKAGE="xorg-libXdmcp-dev" 19.7 +VERSION="1.0.2" 19.8 +CATEGORY="x-window" 19.9 +SHORT_DESC="Xorg module devel files." 19.10 +MAINTAINER="pankso@slitaz.org" 19.11 +DEPENS="xorg-dev" 19.12 +WANTED="xorg-libXdmcp" 19.13 +SOURCE="libXdmcp" 19.14 +WEB_SITE="http://www.x.org/" 19.15 + 19.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 19.17 +genpkg_rules() 19.18 +{ 19.19 + mkdir -p $fs/usr/lib 19.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 19.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 19.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 19.23 + cp -a $_pkg/usr/include $fs/usr 19.24 +}
20.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 20.2 +++ b/xorg-libXdmcp/receipt Tue Dec 18 13:41:02 2007 +0100 20.3 @@ -0,0 +1,31 @@ 20.4 +# SliTaz package receipt. 20.5 + 20.6 +PACKAGE="xorg-libXdmcp" 20.7 +VERSION="1.0.2" 20.8 +CATEGORY="x-window" 20.9 +SHORT_DESC="Xorg server module." 20.10 +MAINTAINER="pankso@slitaz.org" 20.11 +DEPENDS="xorg" 20.12 +SOURCE="libXdmcp" 20.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 20.14 +WEB_SITE="http://www.x.org/" 20.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 20.16 + 20.17 +# Rules to configure and make the package. 20.18 +compile_rules() 20.19 +{ 20.20 + cd $src 20.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 20.22 + --mandir=/usr/share/man --localstatedir=/var \ 20.23 + $CONFIGURE_ARGS 20.24 + make 20.25 + make DESTDIR=$PWD/_pkg install 20.26 +} 20.27 + 20.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 20.29 +genpkg_rules() 20.30 +{ 20.31 + mkdir -p $fs/usr/lib 20.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 20.33 + strip -s $fs/usr/lib/* 20.34 +}
21.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 21.2 +++ b/xorg-libXext-dev/receipt Tue Dec 18 13:41:02 2007 +0100 21.3 @@ -0,0 +1,21 @@ 21.4 +# SliTaz package receipt. 21.5 + 21.6 +PACKAGE="xorg-libXext-dev" 21.7 +VERSION="1.0.2" 21.8 +CATEGORY="x-window" 21.9 +SHORT_DESC="Xorg module devel files." 21.10 +MAINTAINER="pankso@slitaz.org" 21.11 +DEPENS="xorg-dev" 21.12 +WANTED="xorg-libXext" 21.13 +SOURCE="libXext" 21.14 +WEB_SITE="http://www.x.org/" 21.15 + 21.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 21.17 +genpkg_rules() 21.18 +{ 21.19 + mkdir -p $fs/usr/lib 21.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 21.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 21.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 21.23 + #cp -a $_pkg/usr/include $fs/usr 21.24 +}
22.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 22.2 +++ b/xorg-libXext/receipt Tue Dec 18 13:41:02 2007 +0100 22.3 @@ -0,0 +1,31 @@ 22.4 +# SliTaz package receipt. 22.5 + 22.6 +PACKAGE="xorg-libXext" 22.7 +VERSION="1.0.2" 22.8 +CATEGORY="x-window" 22.9 +SHORT_DESC="Xorg server module." 22.10 +MAINTAINER="pankso@slitaz.org" 22.11 +DEPENDS="xorg" 22.12 +SOURCE="libXext" 22.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 22.14 +WEB_SITE="http://www.x.org/" 22.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 22.16 + 22.17 +# Rules to configure and make the package. 22.18 +compile_rules() 22.19 +{ 22.20 + cd $src 22.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 22.22 + --mandir=/usr/share/man --localstatedir=/var \ 22.23 + $CONFIGURE_ARGS 22.24 + make 22.25 + make DESTDIR=$PWD/_pkg install 22.26 +} 22.27 + 22.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 22.29 +genpkg_rules() 22.30 +{ 22.31 + mkdir -p $fs/usr/lib 22.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 22.33 + strip -s $fs/usr/lib/* 22.34 +}
23.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 23.2 +++ b/xorg-libXfixes-dev/receipt Tue Dec 18 13:41:02 2007 +0100 23.3 @@ -0,0 +1,21 @@ 23.4 +# SliTaz package receipt. 23.5 + 23.6 +PACKAGE="xorg-libXfixes-dev" 23.7 +VERSION="4.0.3" 23.8 +CATEGORY="x-window" 23.9 +SHORT_DESC="Xorg module devel files." 23.10 +MAINTAINER="pankso@slitaz.org" 23.11 +DEPENS="xorg-dev" 23.12 +WANTED="xorg-libXfixes" 23.13 +SOURCE="libXfixes" 23.14 +WEB_SITE="http://www.x.org/" 23.15 + 23.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 23.17 +genpkg_rules() 23.18 +{ 23.19 + mkdir -p $fs/usr/lib 23.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 23.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 23.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 23.23 + cp -a $_pkg/usr/include $fs/usr 23.24 +}
24.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 24.2 +++ b/xorg-libXfixes/receipt Tue Dec 18 13:41:02 2007 +0100 24.3 @@ -0,0 +1,31 @@ 24.4 +# SliTaz package receipt. 24.5 + 24.6 +PACKAGE="xorg-libXfixes" 24.7 +VERSION="4.0.3" 24.8 +CATEGORY="x-window" 24.9 +SHORT_DESC="Xorg server module." 24.10 +MAINTAINER="pankso@slitaz.org" 24.11 +DEPENDS="xorg" 24.12 +SOURCE="libXfixes" 24.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 24.14 +WEB_SITE="http://www.x.org/" 24.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 24.16 + 24.17 +# Rules to configure and make the package. 24.18 +compile_rules() 24.19 +{ 24.20 + cd $src 24.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 24.22 + --mandir=/usr/share/man --localstatedir=/var \ 24.23 + $CONFIGURE_ARGS 24.24 + make 24.25 + make DESTDIR=$PWD/_pkg install 24.26 +} 24.27 + 24.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 24.29 +genpkg_rules() 24.30 +{ 24.31 + mkdir -p $fs/usr/lib 24.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 24.33 + strip -s $fs/usr/lib/* 24.34 +}
25.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 25.2 +++ b/xorg-libXft-dev/receipt Tue Dec 18 13:41:02 2007 +0100 25.3 @@ -0,0 +1,21 @@ 25.4 +# SliTaz package receipt. 25.5 + 25.6 +PACKAGE="xorg-libXft-dev" 25.7 +VERSION="2.1.12" 25.8 +CATEGORY="x-window" 25.9 +SHORT_DESC="Xorg module devel files." 25.10 +MAINTAINER="pankso@slitaz.org" 25.11 +DEPENS="xorg-dev" 25.12 +WANTED="xorg-libXft" 25.13 +SOURCE="libXft" 25.14 +WEB_SITE="http://www.x.org/" 25.15 + 25.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 25.17 +genpkg_rules() 25.18 +{ 25.19 + mkdir -p $fs/usr/lib 25.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 25.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 25.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 25.23 + cp -a $_pkg/usr/include $fs/usr 25.24 +}
26.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 26.2 +++ b/xorg-libXft/receipt Tue Dec 18 13:41:02 2007 +0100 26.3 @@ -0,0 +1,31 @@ 26.4 +# SliTaz package receipt. 26.5 + 26.6 +PACKAGE="xorg-libXft" 26.7 +VERSION="2.1.12" 26.8 +CATEGORY="x-window" 26.9 +SHORT_DESC="Xorg server module." 26.10 +MAINTAINER="pankso@slitaz.org" 26.11 +DEPENDS="xorg" 26.12 +SOURCE="libXft" 26.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 26.14 +WEB_SITE="http://www.x.org/" 26.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 26.16 + 26.17 +# Rules to configure and make the package. 26.18 +compile_rules() 26.19 +{ 26.20 + cd $src 26.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 26.22 + --mandir=/usr/share/man --localstatedir=/var \ 26.23 + $CONFIGURE_ARGS 26.24 + make 26.25 + make DESTDIR=$PWD/_pkg install 26.26 +} 26.27 + 26.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 26.29 +genpkg_rules() 26.30 +{ 26.31 + mkdir -p $fs/usr/lib 26.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 26.33 + strip -s $fs/usr/lib/* 26.34 +}
27.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 27.2 +++ b/xorg-libXi-dev/receipt Tue Dec 18 13:41:02 2007 +0100 27.3 @@ -0,0 +1,21 @@ 27.4 +# SliTaz package receipt. 27.5 + 27.6 +PACKAGE="xorg-libXi-dev" 27.7 +VERSION="1.1.3" 27.8 +CATEGORY="x-window" 27.9 +SHORT_DESC="Xorg module devel files." 27.10 +MAINTAINER="pankso@slitaz.org" 27.11 +DEPENS="xorg-dev" 27.12 +WANTED="xorg-libXi" 27.13 +SOURCE="libXi" 27.14 +WEB_SITE="http://www.x.org/" 27.15 + 27.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 27.17 +genpkg_rules() 27.18 +{ 27.19 + mkdir -p $fs/usr/lib 27.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 27.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 27.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 27.23 + #cp -a $_pkg/usr/include $fs/usr 27.24 +}
28.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 28.2 +++ b/xorg-libXi/receipt Tue Dec 18 13:41:02 2007 +0100 28.3 @@ -0,0 +1,31 @@ 28.4 +# SliTaz package receipt. 28.5 + 28.6 +PACKAGE="xorg-libXi" 28.7 +VERSION="1.1.3" 28.8 +CATEGORY="x-window" 28.9 +SHORT_DESC="Xorg server module." 28.10 +MAINTAINER="pankso@slitaz.org" 28.11 +DEPENDS="xorg" 28.12 +SOURCE="libXi" 28.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 28.14 +WEB_SITE="http://www.x.org/" 28.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 28.16 + 28.17 +# Rules to configure and make the package. 28.18 +compile_rules() 28.19 +{ 28.20 + cd $src 28.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 28.22 + --mandir=/usr/share/man --localstatedir=/var \ 28.23 + $CONFIGURE_ARGS 28.24 + make 28.25 + make DESTDIR=$PWD/_pkg install 28.26 +} 28.27 + 28.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 28.29 +genpkg_rules() 28.30 +{ 28.31 + mkdir -p $fs/usr/lib 28.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 28.33 + strip -s $fs/usr/lib/* 28.34 +}
29.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 29.2 +++ b/xorg-libXinerama-dev/receipt Tue Dec 18 13:41:02 2007 +0100 29.3 @@ -0,0 +1,21 @@ 29.4 +# SliTaz package receipt. 29.5 + 29.6 +PACKAGE="xorg-libXinerama-dev" 29.7 +VERSION="1.0.2" 29.8 +CATEGORY="x-window" 29.9 +SHORT_DESC="Xorg module devel files." 29.10 +MAINTAINER="pankso@slitaz.org" 29.11 +DEPENS="xorg-dev" 29.12 +WANTED="xorg-libXinerama" 29.13 +SOURCE="libXinerama" 29.14 +WEB_SITE="http://www.x.org/" 29.15 + 29.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 29.17 +genpkg_rules() 29.18 +{ 29.19 + mkdir -p $fs/usr/lib 29.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 29.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 29.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 29.23 + #cp -a $_pkg/usr/include $fs/usr 29.24 +}
30.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 30.2 +++ b/xorg-libXinerama/receipt Tue Dec 18 13:41:02 2007 +0100 30.3 @@ -0,0 +1,31 @@ 30.4 +# SliTaz package receipt. 30.5 + 30.6 +PACKAGE="xorg-libXinerama" 30.7 +VERSION="1.0.2" 30.8 +CATEGORY="x-window" 30.9 +SHORT_DESC="Xorg server module." 30.10 +MAINTAINER="pankso@slitaz.org" 30.11 +DEPENDS="xorg" 30.12 +SOURCE="libXinerama" 30.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 30.14 +WEB_SITE="http://www.x.org/" 30.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 30.16 + 30.17 +# Rules to configure and make the package. 30.18 +compile_rules() 30.19 +{ 30.20 + cd $src 30.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 30.22 + --mandir=/usr/share/man --localstatedir=/var \ 30.23 + $CONFIGURE_ARGS 30.24 + make 30.25 + make DESTDIR=$PWD/_pkg install 30.26 +} 30.27 + 30.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 30.29 +genpkg_rules() 30.30 +{ 30.31 + mkdir -p $fs/usr/lib 30.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 30.33 + strip -s $fs/usr/lib/* 30.34 +}
31.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 31.2 +++ b/xorg-libXmu-dev/receipt Tue Dec 18 13:41:02 2007 +0100 31.3 @@ -0,0 +1,21 @@ 31.4 +# SliTaz package receipt. 31.5 + 31.6 +PACKAGE="xorg-libXmu-dev" 31.7 +VERSION="1.0.3" 31.8 +CATEGORY="x-window" 31.9 +SHORT_DESC="Xorg module devel files." 31.10 +MAINTAINER="pankso@slitaz.org" 31.11 +DEPENS="xorg-dev" 31.12 +WANTED="xorg-libXmu" 31.13 +SOURCE="libXmu" 31.14 +WEB_SITE="http://www.x.org/" 31.15 + 31.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 31.17 +genpkg_rules() 31.18 +{ 31.19 + mkdir -p $fs/usr/lib 31.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 31.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 31.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 31.23 + cp -a $_pkg/usr/include $fs/usr 31.24 +}
32.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 32.2 +++ b/xorg-libXmu/receipt Tue Dec 18 13:41:02 2007 +0100 32.3 @@ -0,0 +1,31 @@ 32.4 +# SliTaz package receipt. 32.5 + 32.6 +PACKAGE="xorg-libXmu" 32.7 +VERSION="1.0.3" 32.8 +CATEGORY="x-window" 32.9 +SHORT_DESC="Xorg server module." 32.10 +MAINTAINER="pankso@slitaz.org" 32.11 +DEPENDS="xorg" 32.12 +SOURCE="libXmu" 32.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 32.14 +WEB_SITE="http://www.x.org/" 32.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 32.16 + 32.17 +# Rules to configure and make the package. 32.18 +compile_rules() 32.19 +{ 32.20 + cd $src 32.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 32.22 + --mandir=/usr/share/man --localstatedir=/var \ 32.23 + $CONFIGURE_ARGS 32.24 + make 32.25 + make DESTDIR=$PWD/_pkg install 32.26 +} 32.27 + 32.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 32.29 +genpkg_rules() 32.30 +{ 32.31 + mkdir -p $fs/usr/lib 32.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 32.33 + strip -s $fs/usr/lib/* 32.34 +}
33.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 33.2 +++ b/xorg-libXpm-dev/receipt Tue Dec 18 13:41:02 2007 +0100 33.3 @@ -0,0 +1,21 @@ 33.4 +# SliTaz package receipt. 33.5 + 33.6 +PACKAGE="xorg-libXpm-dev" 33.7 +VERSION="3.5.7" 33.8 +CATEGORY="x-window" 33.9 +SHORT_DESC="Xorg module devel files." 33.10 +MAINTAINER="pankso@slitaz.org" 33.11 +DEPENS="xorg-dev" 33.12 +WANTED="xorg-libXpm" 33.13 +SOURCE="libXpm" 33.14 +WEB_SITE="http://www.x.org/" 33.15 + 33.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 33.17 +genpkg_rules() 33.18 +{ 33.19 + mkdir -p $fs/usr/lib 33.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 33.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 33.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 33.23 + cp -a $_pkg/usr/include $fs/usr 33.24 +}
34.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 34.2 +++ b/xorg-libXpm/receipt Tue Dec 18 13:41:02 2007 +0100 34.3 @@ -0,0 +1,31 @@ 34.4 +# SliTaz package receipt. 34.5 + 34.6 +PACKAGE="xorg-libXpm" 34.7 +VERSION="3.5.7" 34.8 +CATEGORY="x-window" 34.9 +SHORT_DESC="Xorg server module." 34.10 +MAINTAINER="pankso@slitaz.org" 34.11 +DEPENDS="xorg" 34.12 +SOURCE="libXpm" 34.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 34.14 +WEB_SITE="http://www.x.org/" 34.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 34.16 + 34.17 +# Rules to configure and make the package. 34.18 +compile_rules() 34.19 +{ 34.20 + cd $src 34.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 34.22 + --mandir=/usr/share/man --localstatedir=/var \ 34.23 + $CONFIGURE_ARGS 34.24 + make 34.25 + make DESTDIR=$PWD/_pkg install 34.26 +} 34.27 + 34.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 34.29 +genpkg_rules() 34.30 +{ 34.31 + mkdir -p $fs/usr/lib 34.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 34.33 + strip -s $fs/usr/lib/* 34.34 +}
35.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 35.2 +++ b/xorg-libXrandr-dev/receipt Tue Dec 18 13:41:02 2007 +0100 35.3 @@ -0,0 +1,21 @@ 35.4 +# SliTaz package receipt. 35.5 + 35.6 +PACKAGE="xorg-libXrandr-dev" 35.7 +VERSION="1.2.2" 35.8 +CATEGORY="x-window" 35.9 +SHORT_DESC="Xorg module devel files." 35.10 +MAINTAINER="pankso@slitaz.org" 35.11 +DEPENS="xorg-dev" 35.12 +WANTED="xorg-libXrandr" 35.13 +SOURCE="libXrandr" 35.14 +WEB_SITE="http://www.x.org/" 35.15 + 35.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 35.17 +genpkg_rules() 35.18 +{ 35.19 + mkdir -p $fs/usr/lib 35.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 35.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 35.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 35.23 + cp -a $_pkg/usr/include $fs/usr 35.24 +}
36.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 36.2 +++ b/xorg-libXrandr/receipt Tue Dec 18 13:41:02 2007 +0100 36.3 @@ -0,0 +1,31 @@ 36.4 +# SliTaz package receipt. 36.5 + 36.6 +PACKAGE="xorg-libXrandr" 36.7 +VERSION="1.2.2" 36.8 +CATEGORY="x-window" 36.9 +SHORT_DESC="Xorg server module." 36.10 +MAINTAINER="pankso@slitaz.org" 36.11 +DEPENDS="xorg" 36.12 +SOURCE="libXrandr" 36.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 36.14 +WEB_SITE="http://www.x.org/" 36.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 36.16 + 36.17 +# Rules to configure and make the package. 36.18 +compile_rules() 36.19 +{ 36.20 + cd $src 36.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 36.22 + --mandir=/usr/share/man --localstatedir=/var \ 36.23 + $CONFIGURE_ARGS 36.24 + make 36.25 + make DESTDIR=$PWD/_pkg install 36.26 +} 36.27 + 36.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 36.29 +genpkg_rules() 36.30 +{ 36.31 + mkdir -p $fs/usr/lib 36.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 36.33 + strip -s $fs/usr/lib/* 36.34 +}
37.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 37.2 +++ b/xorg-libXrender-dev/receipt Tue Dec 18 13:41:02 2007 +0100 37.3 @@ -0,0 +1,21 @@ 37.4 +# SliTaz package receipt. 37.5 + 37.6 +PACKAGE="xorg-libXrender-dev" 37.7 +VERSION="0.9.4" 37.8 +CATEGORY="x-window" 37.9 +SHORT_DESC="Xorg module devel files." 37.10 +MAINTAINER="pankso@slitaz.org" 37.11 +DEPENS="xorg-dev" 37.12 +WANTED="xorg-libXrender" 37.13 +SOURCE="libXrender" 37.14 +WEB_SITE="http://www.x.org/" 37.15 + 37.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 37.17 +genpkg_rules() 37.18 +{ 37.19 + mkdir -p $fs/usr/lib 37.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 37.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 37.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 37.23 + cp -a $_pkg/usr/include $fs/usr 37.24 +}
38.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 38.2 +++ b/xorg-libXrender/receipt Tue Dec 18 13:41:02 2007 +0100 38.3 @@ -0,0 +1,31 @@ 38.4 +# SliTaz package receipt. 38.5 + 38.6 +PACKAGE="xorg-libXrender" 38.7 +VERSION="0.9.4" 38.8 +CATEGORY="x-window" 38.9 +SHORT_DESC="Xorg server module." 38.10 +MAINTAINER="pankso@slitaz.org" 38.11 +DEPENDS="xorg" 38.12 +SOURCE="libXrender" 38.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 38.14 +WEB_SITE="http://www.x.org/" 38.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 38.16 + 38.17 +# Rules to configure and make the package. 38.18 +compile_rules() 38.19 +{ 38.20 + cd $src 38.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 38.22 + --mandir=/usr/share/man --localstatedir=/var \ 38.23 + $CONFIGURE_ARGS 38.24 + make 38.25 + make DESTDIR=$PWD/_pkg install 38.26 +} 38.27 + 38.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 38.29 +genpkg_rules() 38.30 +{ 38.31 + mkdir -p $fs/usr/lib 38.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 38.33 + strip -s $fs/usr/lib/* 38.34 +}
39.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 39.2 +++ b/xorg-libXt-dev/receipt Tue Dec 18 13:41:02 2007 +0100 39.3 @@ -0,0 +1,21 @@ 39.4 +# SliTaz package receipt. 39.5 + 39.6 +PACKAGE="xorg-libXt-dev" 39.7 +VERSION="1.0.4" 39.8 +CATEGORY="x-window" 39.9 +SHORT_DESC="Xorg module devel files." 39.10 +MAINTAINER="pankso@slitaz.org" 39.11 +DEPENS="xorg-dev" 39.12 +WANTED="xorg-libXt" 39.13 +SOURCE="libXt" 39.14 +WEB_SITE="http://www.x.org/" 39.15 + 39.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 39.17 +genpkg_rules() 39.18 +{ 39.19 + mkdir -p $fs/usr/lib 39.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 39.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 39.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 39.23 + cp -a $_pkg/usr/include $fs/usr 39.24 +}
40.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 40.2 +++ b/xorg-libXt/receipt Tue Dec 18 13:41:02 2007 +0100 40.3 @@ -0,0 +1,31 @@ 40.4 +# SliTaz package receipt. 40.5 + 40.6 +PACKAGE="xorg-libXt" 40.7 +VERSION="1.0.4" 40.8 +CATEGORY="x-window" 40.9 +SHORT_DESC="Xorg server module." 40.10 +MAINTAINER="pankso@slitaz.org" 40.11 +DEPENDS="xorg" 40.12 +SOURCE="libXt" 40.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 40.14 +WEB_SITE="http://www.x.org/" 40.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 40.16 + 40.17 +# Rules to configure and make the package. 40.18 +compile_rules() 40.19 +{ 40.20 + cd $src 40.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 40.22 + --mandir=/usr/share/man --localstatedir=/var \ 40.23 + $CONFIGURE_ARGS 40.24 + make 40.25 + make DESTDIR=$PWD/_pkg install 40.26 +} 40.27 + 40.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 40.29 +genpkg_rules() 40.30 +{ 40.31 + mkdir -p $fs/usr/lib 40.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 40.33 + strip -s $fs/usr/lib/* 40.34 +}
41.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 41.2 +++ b/xorg-libXtst/receipt Tue Dec 18 13:41:02 2007 +0100 41.3 @@ -0,0 +1,31 @@ 41.4 +# SliTaz package receipt. 41.5 + 41.6 +PACKAGE="xorg-libXtst" 41.7 +VERSION="1.0.3" 41.8 +CATEGORY="x-window" 41.9 +SHORT_DESC="Xorg server module." 41.10 +MAINTAINER="pankso@slitaz.org" 41.11 +DEPENDS="xorg" 41.12 +SOURCE="libXtst" 41.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 41.14 +WEB_SITE="http://www.x.org/" 41.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 41.16 + 41.17 +# Rules to configure and make the package. 41.18 +compile_rules() 41.19 +{ 41.20 + cd $src 41.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 41.22 + --mandir=/usr/share/man --localstatedir=/var \ 41.23 + $CONFIGURE_ARGS 41.24 + make 41.25 + make DESTDIR=$PWD/_pkg install 41.26 +} 41.27 + 41.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 41.29 +genpkg_rules() 41.30 +{ 41.31 + mkdir -p $fs/usr/lib 41.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 41.33 + strip -s $fs/usr/lib/* 41.34 +}
42.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 42.2 +++ b/xorg-libfontenc-dev/receipt Tue Dec 18 13:41:02 2007 +0100 42.3 @@ -0,0 +1,21 @@ 42.4 +# SliTaz package receipt. 42.5 + 42.6 +PACKAGE="xorg-libfontenc-dev" 42.7 +VERSION="1.0.4" 42.8 +CATEGORY="x-window" 42.9 +SHORT_DESC="Xorg module devel files." 42.10 +MAINTAINER="pankso@slitaz.org" 42.11 +DEPENS="xorg-dev" 42.12 +WANTED="xorg-libfontenc" 42.13 +SOURCE="libfontenc" 42.14 +WEB_SITE="http://www.x.org/" 42.15 + 42.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 42.17 +genpkg_rules() 42.18 +{ 42.19 + mkdir -p $fs/usr/lib 42.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 42.21 + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib 42.22 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 42.23 + cp -a $_pkg/usr/include $fs/usr 42.24 +}
43.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 43.2 +++ b/xorg-libfontenc/receipt Tue Dec 18 13:41:02 2007 +0100 43.3 @@ -0,0 +1,31 @@ 43.4 +# SliTaz package receipt. 43.5 + 43.6 +PACKAGE="xorg-libfontenc" 43.7 +VERSION="1.0.4" 43.8 +CATEGORY="x-window" 43.9 +SHORT_DESC="Xorg server module." 43.10 +MAINTAINER="pankso@slitaz.org" 43.11 +DEPENDS="xorg" 43.12 +SOURCE="libfontenc" 43.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 43.14 +WEB_SITE="http://www.x.org/" 43.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 43.16 + 43.17 +# Rules to configure and make the package. 43.18 +compile_rules() 43.19 +{ 43.20 + cd $src 43.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 43.22 + --mandir=/usr/share/man --localstatedir=/var \ 43.23 + $CONFIGURE_ARGS 43.24 + make 43.25 + make DESTDIR=$PWD/_pkg install 43.26 +} 43.27 + 43.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 43.29 +genpkg_rules() 43.30 +{ 43.31 + mkdir -p $fs/usr/lib 43.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 43.33 + strip -s $fs/usr/lib/* 43.34 +}
44.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 44.2 +++ b/xorg-proto/receipt Tue Dec 18 13:41:02 2007 +0100 44.3 @@ -0,0 +1,38 @@ 44.4 +# SliTaz package receipt. 44.5 + 44.6 +PACKAGE="xorg-proto" 44.7 +VERSION="7.3" 44.8 +CATEGORY="x-window" 44.9 +SHORT_DESC="Meta-package for Xorg proto (devel)." 44.10 +MAINTAINER="pankso@slitaz.org" 44.11 +WEB_SITE="http://www.x.org/" 44.12 +DEPENDS=" 44.13 +xorg-bigreqsproto 44.14 +xorg-inputproto 44.15 +xorg-kbproto 44.16 +xorg-randrproto 44.17 +xorg-renderproto 44.18 +xorg-xcmiscproto 44.19 +xorg-xextproto 44.20 +xorg-xproto" 44.21 + 44.22 +# Rules to configure and make the package. 44.23 +# This package compile all Xorg proto. 44.24 +compile_rules() 44.25 +{ 44.26 + for pkg in $DEPENDS 44.27 + do 44.28 + tazwok compile $pkg 44.29 + done 44.30 +} 44.31 + 44.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 44.33 +genpkg_rules() 44.34 +{ 44.35 + for pkg in $DEPENDS 44.36 + do 44.37 + tazwok genpkg $pkg 44.38 + done 44.39 + # Just to have a dir. 44.40 + mkdir -p $fs/usr/share/X11 44.41 +}
45.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 45.2 +++ b/xorg-randrproto/receipt Tue Dec 18 13:41:02 2007 +0100 45.3 @@ -0,0 +1,30 @@ 45.4 +# SliTaz package receipt. 45.5 + 45.6 +PACKAGE="xorg-randrproto" 45.7 +VERSION="1.2.1" 45.8 +CATEGORY="x-window" 45.9 +SHORT_DESC="Xorg server module." 45.10 +MAINTAINER="pankso@slitaz.org" 45.11 +DEPENDS="xorg" 45.12 +SOURCE="randrproto" 45.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 45.14 +WEB_SITE="http://www.x.org/" 45.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 45.16 + 45.17 +# Rules to configure and make the package. 45.18 +compile_rules() 45.19 +{ 45.20 + cd $src 45.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 45.22 + --mandir=/usr/share/man --localstatedir=/var \ 45.23 + $CONFIGURE_ARGS 45.24 + make 45.25 + make DESTDIR=$PWD/_pkg install 45.26 +} 45.27 + 45.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 45.29 +genpkg_rules() 45.30 +{ 45.31 + cp -a $_pkg/* $fs 45.32 +} 45.33 +
46.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 46.2 +++ b/xorg-recordproto/receipt Tue Dec 18 13:41:02 2007 +0100 46.3 @@ -0,0 +1,29 @@ 46.4 +# SliTaz package receipt. 46.5 + 46.6 +PACKAGE="xorg-recordproto" 46.7 +VERSION="1.13.2" 46.8 +CATEGORY="x-window" 46.9 +SHORT_DESC="Xorg record protol." 46.10 +MAINTAINER="pankso@slitaz.org" 46.11 +DEPENDS="xorg" 46.12 +SOURCE="recordproto" 46.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 46.14 +WEB_SITE="http://www.x.org/" 46.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 46.16 + 46.17 +# Rules to configure and make the package. 46.18 +compile_rules() 46.19 +{ 46.20 + cd $src 46.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 46.22 + --mandir=/usr/share/man --localstatedir=/var \ 46.23 + $CONFIGURE_ARGS 46.24 + make 46.25 + make DESTDIR=$PWD/_pkg install 46.26 +} 46.27 + 46.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 46.29 +genpkg_rules() 46.30 +{ 46.31 + cp -a $_pkg/* $fs 46.32 +}
47.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 47.2 +++ b/xorg-renderproto/receipt Tue Dec 18 13:41:02 2007 +0100 47.3 @@ -0,0 +1,30 @@ 47.4 +# SliTaz package receipt. 47.5 + 47.6 +PACKAGE="xorg-renderproto" 47.7 +VERSION="0.9.3" 47.8 +CATEGORY="x-window" 47.9 +SHORT_DESC="Xorg server module." 47.10 +MAINTAINER="pankso@slitaz.org" 47.11 +DEPENDS="xorg" 47.12 +SOURCE="renderproto" 47.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 47.14 +WEB_SITE="http://www.x.org/" 47.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 47.16 + 47.17 +# Rules to configure and make the package. 47.18 +compile_rules() 47.19 +{ 47.20 + cd $src 47.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 47.22 + --mandir=/usr/share/man --localstatedir=/var \ 47.23 + $CONFIGURE_ARGS 47.24 + make 47.25 + make DESTDIR=$PWD/_pkg install 47.26 +} 47.27 + 47.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 47.29 +genpkg_rules() 47.30 +{ 47.31 + cp -a $_pkg/* $fs 47.32 +} 47.33 +
48.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 48.2 +++ b/xorg-rgb/receipt Tue Dec 18 13:41:02 2007 +0100 48.3 @@ -0,0 +1,36 @@ 48.4 +# SliTaz package receipt. 48.5 + 48.6 +PACKAGE="xorg-rgb" 48.7 +VERSION="1.0.1" 48.8 +CATEGORY="x-window" 48.9 +SHORT_DESC="X11 RGB colors definitions." 48.10 +MAINTAINER="pankso@slitaz.org" 48.11 +DEPENDS="xorg" 48.12 +SOURCE="rgb" 48.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 48.14 +WEB_SITE="http://www.x.org/" 48.15 +WGET_URL="$XORG_MIRROR/app/$TARBALL" 48.16 + 48.17 +# Rules to configure and make the package. 48.18 +compile_rules() 48.19 +{ 48.20 + cd $src 48.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 48.22 + --mandir=/usr/share/man --localstatedir=/var \ 48.23 + $CONFIGURE_ARGS 48.24 + make 48.25 + make DESTDIR=$PWD/_pkg install 48.26 +} 48.27 + 48.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 48.29 +genpkg_rules() 48.30 +{ 48.31 + mkdir -p $fs/usr/share 48.32 + cp -a $_pkg/usr/bin $fs/usr 48.33 + cp -a $_pkg/usr/share/X11 $fs/usr/share 48.34 + strip -s $fs/usr/bin/* 48.35 + # To be compatible with Xvesa from XFree86. 48.36 + mkdir -p $fs/usr/X11R6/lib/X11 48.37 + cd $fs/usr/X11R6/lib/X11 48.38 + ln -s /usr/share/X11/rgb.txt rgb.txt 48.39 +}
49.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 49.2 +++ b/xorg-xcmiscproto/receipt Tue Dec 18 13:41:02 2007 +0100 49.3 @@ -0,0 +1,30 @@ 49.4 +# SliTaz package receipt. 49.5 + 49.6 +PACKAGE="xorg-xcmiscproto" 49.7 +VERSION="1.1.2" 49.8 +CATEGORY="x-window" 49.9 +SHORT_DESC="Xorg server module." 49.10 +MAINTAINER="pankso@slitaz.org" 49.11 +DEPENDS="xorg" 49.12 +SOURCE="xcmiscproto" 49.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 49.14 +WEB_SITE="http://www.x.org/" 49.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 49.16 + 49.17 +# Rules to configure and make the package. 49.18 +compile_rules() 49.19 +{ 49.20 + cd $src 49.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 49.22 + --mandir=/usr/share/man --localstatedir=/var \ 49.23 + $CONFIGURE_ARGS 49.24 + make 49.25 + make DESTDIR=$PWD/_pkg install 49.26 +} 49.27 + 49.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 49.29 +genpkg_rules() 49.30 +{ 49.31 + cp -a $_pkg/* $fs 49.32 +} 49.33 +
50.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 50.2 +++ b/xorg-xextproto/receipt Tue Dec 18 13:41:02 2007 +0100 50.3 @@ -0,0 +1,30 @@ 50.4 +# SliTaz package receipt. 50.5 + 50.6 +PACKAGE="xorg-xextproto" 50.7 +VERSION="7.0.2" 50.8 +CATEGORY="x-window" 50.9 +SHORT_DESC="Xorg server module." 50.10 +MAINTAINER="pankso@slitaz.org" 50.11 +DEPENDS="xorg" 50.12 +SOURCE="xextproto" 50.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 50.14 +WEB_SITE="http://www.x.org/" 50.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 50.16 + 50.17 +# Rules to configure and make the package. 50.18 +compile_rules() 50.19 +{ 50.20 + cd $src 50.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 50.22 + --mandir=/usr/share/man --localstatedir=/var \ 50.23 + $CONFIGURE_ARGS 50.24 + make 50.25 + make DESTDIR=$PWD/_pkg install 50.26 +} 50.27 + 50.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 50.29 +genpkg_rules() 50.30 +{ 50.31 + cp -a $_pkg/* $fs 50.32 +} 50.33 +
51.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 51.2 +++ b/xorg-xineramaproto/receipt Tue Dec 18 13:41:02 2007 +0100 51.3 @@ -0,0 +1,30 @@ 51.4 +# SliTaz package receipt. 51.5 + 51.6 +PACKAGE="xorg-xineramaproto" 51.7 +VERSION="1.1.2" 51.8 +CATEGORY="x-window" 51.9 +SHORT_DESC="Xorg server module." 51.10 +MAINTAINER="pankso@slitaz.org" 51.11 +DEPENDS="xorg" 51.12 +SOURCE="xineramaproto" 51.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 51.14 +WEB_SITE="http://www.x.org/" 51.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 51.16 + 51.17 +# Rules to configure and make the package. 51.18 +compile_rules() 51.19 +{ 51.20 + cd $src 51.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 51.22 + --mandir=/usr/share/man --localstatedir=/var \ 51.23 + $CONFIGURE_ARGS 51.24 + make 51.25 + make DESTDIR=$PWD/_pkg install 51.26 +} 51.27 + 51.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 51.29 +genpkg_rules() 51.30 +{ 51.31 + cp -a $_pkg/* $fs 51.32 +} 51.33 +
52.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 52.2 +++ b/xorg-xload/receipt Tue Dec 18 13:41:02 2007 +0100 52.3 @@ -0,0 +1,30 @@ 52.4 +# SliTaz package receipt. 52.5 + 52.6 +PACKAGE="xorg-xload" 52.7 +VERSION="1.0.2" 52.8 +CATEGORY="x-window" 52.9 +SHORT_DESC="X app to show system resources usage." 52.10 +MAINTAINER="pankso@slitaz.org" 52.11 +DEPENDS="xorg" 52.12 +SOURCE="xload" 52.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 52.14 +WEB_SITE="http://www.x.org/" 52.15 +WGET_URL="$XORG_MIRROR/app/$TARBALL" 52.16 + 52.17 +# Rules to configure and make the package. 52.18 +compile_rules() 52.19 +{ 52.20 + cd $src 52.21 + ./configure --prefix=/usr --mandir=/usr/share/man \ 52.22 + $CONFIGURE_ARGS 52.23 + make 52.24 + make DESTDIR=$PWD/_pkg install 52.25 +} 52.26 + 52.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 52.28 +genpkg_rules() 52.29 +{ 52.30 + mkdir -p $fs/usr 52.31 + cp -a $_pkg/usr/bin $fs/usr 52.32 + strip -s $fs/usr/bin/* 52.33 +}
53.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 53.2 +++ b/xorg-xproto/receipt Tue Dec 18 13:41:02 2007 +0100 53.3 @@ -0,0 +1,30 @@ 53.4 +# SliTaz package receipt. 53.5 + 53.6 +PACKAGE="xorg-xproto" 53.7 +VERSION="7.0.10" 53.8 +CATEGORY="x-window" 53.9 +SHORT_DESC="Xorg server module." 53.10 +MAINTAINER="pankso@slitaz.org" 53.11 +DEPENDS="xorg" 53.12 +SOURCE="xproto" 53.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 53.14 +WEB_SITE="http://www.x.org/" 53.15 +WGET_URL="$XORG_MIRROR/proto/$TARBALL" 53.16 + 53.17 +# Rules to configure and make the package. 53.18 +compile_rules() 53.19 +{ 53.20 + cd $src 53.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 53.22 + --mandir=/usr/share/man --localstatedir=/var \ 53.23 + $CONFIGURE_ARGS 53.24 + make 53.25 + make DESTDIR=$PWD/_pkg install 53.26 +} 53.27 + 53.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 53.29 +genpkg_rules() 53.30 +{ 53.31 + cp -a $_pkg/* $fs 53.32 +} 53.33 +
54.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 54.2 +++ b/xorg-xtrans/receipt Tue Dec 18 13:41:02 2007 +0100 54.3 @@ -0,0 +1,29 @@ 54.4 +# SliTaz package receipt. 54.5 + 54.6 +PACKAGE="xorg-xtrans" 54.7 +VERSION="1.0.4" 54.8 +CATEGORY="x-window" 54.9 +SHORT_DESC="Xorg server module devel package." 54.10 +MAINTAINER="pankso@slitaz.org" 54.11 +DEPENDS="xorg" 54.12 +SOURCE="xtrans" 54.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 54.14 +WEB_SITE="http://www.x.org/" 54.15 +WGET_URL="$XORG_MIRROR/lib/$TARBALL" 54.16 + 54.17 +# Rules to configure and make the package. 54.18 +compile_rules() 54.19 +{ 54.20 + cd $src 54.21 + ./configure --prefix=/usr --sysconfdir=/etc \ 54.22 + --mandir=/usr/share/man --localstatedir=/var \ 54.23 + $CONFIGURE_ARGS 54.24 + make 54.25 + make DESTDIR=$PWD/_pkg install 54.26 +} 54.27 + 54.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 54.29 +genpkg_rules() 54.30 +{ 54.31 + cp -a $_pkg/* $fs 54.32 +}
55.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 55.2 +++ b/xorg/receipt Tue Dec 18 13:41:02 2007 +0100 55.3 @@ -0,0 +1,49 @@ 55.4 +# SliTaz package receipt. 55.5 + 55.6 +PACKAGE="xorg" 55.7 +VERSION="7.3" 55.8 +CATEGORY="x-window" 55.9 +SHORT_DESC="Xorg server meta-package to compile/install all Xorg modules." 55.10 +MAINTAINER="pankso@slitaz.org" 55.11 +WEB_SITE="http://www.x.org/" 55.12 +DEPENDS=" 55.13 +xorg-libXdmcp 55.14 +xorg-libX11 55.15 +xorg-libXrandr 55.16 +xorg-libXrender 55.17 +xorg-libICE 55.18 +xorg-libSM 55.19 +xorg-libXau 55.20 +xorg-libXaw 55.21 +xorg-libXext 55.22 +xorg-libXft 55.23 +xorg-libXmu 55.24 +xorg-libXinerama 55.25 +xorg-libXpm 55.26 +xorg-libXt 55.27 +xorg-libXfixes 55.28 +xorg-libXcursor 55.29 +xorg-libXi 55.30 +xorg-libfontenc 55.31 +xorg-rgb 55.32 +xorg-xload" 55.33 + 55.34 +# Rules to configure and make the package. 55.35 +compile_rules() 55.36 +{ 55.37 + for pkg in $DEPENDS 55.38 + do 55.39 + tazwok compile $pkg 55.40 + done 55.41 +} 55.42 + 55.43 +# Rules to gen a SliTaz package suitable for Tazpkg. 55.44 +genpkg_rules() 55.45 +{ 55.46 + for pkg in $DEPENDS 55.47 + do 55.48 + tazwok genpkg $pkg 55.49 + done 55.50 + # Just to have a dir. 55.51 + mkdir -p $fs/usr/share/X11 55.52 +}