wok-next rev 86
Add : XCB supprot for Xorg (X11)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Jan 02 22:18:03 2008 +0100 (2008-01-02) |
parents | af8e994c9b2f |
children | da39ce2eb72c |
files | libpthread-stubs/receipt libxcb-dev/receipt libxcb/receipt xcb-proto/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libpthread-stubs/receipt Wed Jan 02 22:18:03 2008 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libpthread-stubs" 1.7 +VERSION="0.1" 1.8 +CATEGORY="devel" 1.9 +SHORT_DESC="libpthread-stubs needed to build xcb libs." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +DEPENDS="xorg-proto" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://xcb.freedesktop.org/" 1.14 +WGET_URL="http://xcb.freedesktop.org/dist/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + ./configure --prefix=/usr --sysconfdir=/etc \ 1.21 + --mandir=/usr/share/man --localstatedir=/var \ 1.22 + $CONFIGURE_ARGS 1.23 + make 1.24 + make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + cp -a $_pkg/* $fs 1.31 +} 1.32 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libxcb-dev/receipt Wed Jan 02 22:18:03 2008 +0100 2.3 @@ -0,0 +1,18 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libxcb-dev" 2.7 +VERSION="1.1" 2.8 +CATEGORY="devel" 2.9 +SHORT_DESC="The X protocol C-language Binding devel files" 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +WANTED="libxcb" 2.12 +WEB_SITE="http://xcb.freedesktop.org/" 2.13 + 2.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.15 +genpkg_rules() 2.16 +{ 2.17 + mkdir -p $fs/usr/lib 2.18 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 2.19 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 2.20 + cp -a $_pkg/usr/include $fs/usr 2.21 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libxcb/receipt Wed Jan 02 22:18:03 2008 +0100 3.3 @@ -0,0 +1,33 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="libxcb" 3.7 +VERSION="1.1" 3.8 +CATEGORY="x-window" 3.9 +SHORT_DESC="The X protocol C-language Binding" 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +BUILD_DEPENDS="libpthread-stubs xorg-proto" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.13 +WEB_SITE="http://xcb.freedesktop.org/" 3.14 +WGET_URL="http://xcb.freedesktop.org/dist/$TARBALL" 3.15 + 3.16 +# Rules to configure and make the package. 3.17 +compile_rules() 3.18 +{ 3.19 + cd $src 3.20 + ./configure \ 3.21 + --prefix=/usr \ 3.22 + --infodir=/usr/share/info \ 3.23 + --mandir=/usr/share/man \ 3.24 + --with-html-dir=/usr/share/doc \ 3.25 + $CONFIGURE_ARGS 3.26 + make 3.27 + make DESTDIR=$PWD/_pkg install 3.28 +} 3.29 + 3.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.31 +genpkg_rules() 3.32 +{ 3.33 + mkdir -p $fs/usr/lib 3.34 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 3.35 + strip -s $fs/usr/lib/* 3.36 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xcb-proto/receipt Wed Jan 02 22:18:03 2008 +0100 4.3 @@ -0,0 +1,29 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="xcb-proto" 4.7 +VERSION="1.1" 4.8 +CATEGORY="devel" 4.9 +SHORT_DESC="XCB protocol." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +DEPENDS="xorg-proto" 4.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 4.13 +WEB_SITE="http://xcb.freedesktop.org/" 4.14 +WGET_URL="http://xcb.freedesktop.org/dist/$TARBALL" 4.15 + 4.16 +# Rules to configure and make the package. 4.17 +compile_rules() 4.18 +{ 4.19 + cd $src 4.20 + ./configure --prefix=/usr --sysconfdir=/etc \ 4.21 + --mandir=/usr/share/man --localstatedir=/var \ 4.22 + $CONFIGURE_ARGS 4.23 + make 4.24 + make DESTDIR=$PWD/_pkg install 4.25 +} 4.26 + 4.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.28 +genpkg_rules() 4.29 +{ 4.30 + cp -a $_pkg/* $fs 4.31 +} 4.32 +