wok-next rev 16193
Add libxkbcommon and up libxcb with xkb support
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Mar 30 21:43:58 2014 +0200 (2014-03-30) |
parents | 6cf7c4365e6d |
children | e6bbb8cc0677 |
files | libxcb-dev/receipt libxcb/receipt libxkbcommon-dev/receipt libxkbcommon/receipt xcb-proto/receipt |
line diff
1.1 --- a/libxcb-dev/receipt Sun Mar 30 19:59:41 2014 +0200 1.2 +++ b/libxcb-dev/receipt Sun Mar 30 21:43:58 2014 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxcb-dev" 1.7 -VERSION="1.9.1" 1.8 +VERSION="1.10" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for libxcb" 1.11 MAINTAINER="mallory@sweetpeople.org" 1.12 @@ -10,7 +10,7 @@ 1.13 HOST_ARCH="i486 arm" 1.14 1.15 WANTED="libxcb" 1.16 -DEPENDS="libxcb xorg-libXau-dev xorg-libXdmcp-dev pkg-config" 1.17 +DEPENDS="xorg-libXau-dev xorg-libXdmcp-dev pkg-config" 1.18 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules()
2.1 --- a/libxcb/receipt Sun Mar 30 19:59:41 2014 +0200 2.2 +++ b/libxcb/receipt Sun Mar 30 21:43:58 2014 +0200 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libxcb" 2.7 -VERSION="1.9.1" 2.8 +VERSION="1.10" 2.9 CATEGORY="x-window" 2.10 SHORT_DESC="A C binding to the X11 protocol" 2.11 MAINTAINER="pankso@slitaz.org" 2.12 @@ -29,6 +29,7 @@ 2.13 autoreconf -fi && 2.14 ./configure \ 2.15 --enable-xinput \ 2.16 + --enable-xkb \ 2.17 --disable-build-docs \ 2.18 --disable-static \ 2.19 $CONFIGURE_ARGS &&
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libxkbcommon-dev/receipt Sun Mar 30 21:43:58 2014 +0200 3.3 @@ -0,0 +1,19 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="libxkbcommon-dev" 3.7 +VERSION="0.4.1" 3.8 +CATEGORY="development" 3.9 +SHORT_DESC="libxkbcommon include files." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +LICENSE="custom" 3.12 +WANTED="libxkbcommon" 3.13 +WEB_SITE="http://xkbcommon.org" 3.14 + 3.15 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.16 +genpkg_rules() 3.17 +{ 3.18 + mkdir -p $fs/usr/lib 3.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 3.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 3.21 + cp -a $install/usr/include $fs/usr 3.22 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/libxkbcommon/receipt Sun Mar 30 21:43:58 2014 +0200 4.3 @@ -0,0 +1,30 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="libxkbcommon" 4.7 +VERSION="0.4.1" 4.8 +CATEGORY="x-window" 4.9 +SHORT_DESC="Keyboard handling library using XKB data." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +LICENSE="custom" 4.12 +TARBALL="$PACKAGE-$VERSION.tar.xz" 4.13 +WEB_SITE="http://xkbcommon.org" 4.14 +WGET_URL="http://xkbcommon.org/download/$TARBALL" 4.15 + 4.16 +DEPENDS="xorg-xkeyboard-config libxcb" 4.17 +BUILD_DEPENDS="libxcb-dev xorg-util-macros xorg-xkeyboard-config-dev bison" 4.18 + 4.19 +# Rules to configure and make the package. 4.20 +compile_rules() 4.21 +{ 4.22 + ./configure \ 4.23 + --with-xkb-config-root=/usr/share/X11/xkb \ 4.24 + $CONFIGURE_ARGS && 4.25 + make && make install 4.26 +} 4.27 + 4.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.29 +genpkg_rules() 4.30 +{ 4.31 + mkdir -p $fs/usr/lib 4.32 + cp -a $install/usr/lib/*.so* $fs/usr/lib 4.33 +}
5.1 --- a/xcb-proto/receipt Sun Mar 30 19:59:41 2014 +0200 5.2 +++ b/xcb-proto/receipt Sun Mar 30 21:43:58 2014 +0200 5.3 @@ -1,7 +1,7 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="xcb-proto" 5.7 -VERSION="1.8" 5.8 +VERSION="1.10" 5.9 CATEGORY="development" 5.10 SHORT_DESC="X protocol descriptions for XCB" 5.11 MAINTAINER="mallory@sweetpeople.org"