wok-6.x rev 451
Add some Xorg video driver + fix libX11 XKeysymDB
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Mar 18 14:04:44 2008 +0100 (2008-03-18) |
parents | 1641d1cfe0b8 |
children | 99413c1c8f14 |
files | xorg-libX11/receipt xorg-server/receipt xorg-xf86-input-evdev/receipt xorg-xf86-video-s3/receipt xorg-xf86-video-savage/receipt xorg-xf86-video-sis/receipt xorg-xf86-video-trident/receipt xorg-xkbcomp/receipt xorg-xkeyboard-config/receipt |
line diff
1.1 --- a/xorg-libX11/receipt Mon Mar 17 02:01:23 2008 +0100 1.2 +++ b/xorg-libX11/receipt Tue Mar 18 14:04:44 2008 +0100 1.3 @@ -30,11 +30,12 @@ 1.4 # Rules to gen a SliTaz package suitable for Tazpkg. 1.5 genpkg_rules() 1.6 { 1.7 - mkdir -p $fs/usr/lib 1.8 + mkdir -p $fs/usr/lib $fs/usr/share/X11/locale 1.9 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.10 - strip -s $fs/usr/lib/* 1.11 + cp -a $_pkg/usr/lib/X11 $fs/usr/lib 1.12 + cp -a $_pkg/usr/share/X11/*DB $fs/usr/share/X11 1.13 + 1.14 # X11 locale. 1.15 - mkdir -p $fs/usr/share/X11/locale 1.16 cp -a $_pkg/usr/share/X11/locale/C $fs/usr/share/X11/locale 1.17 cp -a $_pkg/usr/share/X11/locale/iso8859-1 $fs/usr/share/X11/locale 1.18 cp -a $_pkg/usr/share/X11/locale/iso8859-2 $fs/usr/share/X11/locale
2.1 --- a/xorg-server/receipt Mon Mar 17 02:01:23 2008 +0100 2.2 +++ b/xorg-server/receipt Tue Mar 18 14:04:44 2008 +0100 2.3 @@ -74,3 +74,11 @@ 2.4 rm $fs/usr/bin/$i 2.5 done 2.6 } 2.7 + 2.8 +# We need /var/tmp rw to let xkbcomp builr XKB definition. 2.9 +post_install() 2.10 +{ 2.11 + local root 2.12 + root=$1 2.13 + chmod 1777 $root/var/tmp 2.14 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xorg-xf86-input-evdev/receipt Tue Mar 18 14:04:44 2008 +0100 3.3 @@ -0,0 +1,36 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xorg-xf86-input-evdev" 3.7 +VERSION="1.1.2" 3.8 +CATEGORY="x-window" 3.9 +SHORT_DESC="Xorg input evdev driver." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="xorg xorg-server" 3.12 +SOURCE="xf86-input-evdev" 3.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 3.14 +WEB_SITE="http://www.x.org/" 3.15 +WGET_URL="$XORG_MIRROR/driver/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + ./configure \ 3.22 + --prefix=/usr \ 3.23 + --sysconfdir=/etc \ 3.24 + --mandir=/usr/share/man \ 3.25 + --localstatedir=/var \ 3.26 + --with-xorg-module-dir=/usr/lib/X11/modules \ 3.27 + $CONFIGURE_ARGS 3.28 + make 3.29 + make DESTDIR=$PWD/_pkg install 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs/usr/lib/X11/modules/input/ 3.36 + cp -a $_pkg/usr/lib/X11/modules/input/*.so \ 3.37 + $fs/usr/lib/X11/modules/input/ 3.38 +} 3.39 +
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xorg-xf86-video-s3/receipt Tue Mar 18 14:04:44 2008 +0100 4.3 @@ -0,0 +1,37 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="xorg-xf86-video-s3" 4.7 +VERSION="0.5.0" 4.8 +CATEGORY="x-window" 4.9 +SHORT_DESC="Xorg driver for trident cards." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +DEPENDS="xorg xorg-server" 4.12 +BUILD_DEPENDS="xorg-server-dev" 4.13 +SOURCE="xf86-video-s3" 4.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 4.15 +WEB_SITE="http://www.x.org/" 4.16 +WGET_URL="$XORG_MIRROR/driver/$TARBALL" 4.17 + 4.18 +# Rules to configure and make the package. 4.19 +compile_rules() 4.20 +{ 4.21 + cd $src 4.22 + ./configure \ 4.23 + --prefix=/usr \ 4.24 + --sysconfdir=/etc \ 4.25 + --mandir=/usr/share/man \ 4.26 + --localstatedir=/var \ 4.27 + --with-xorg-module-dir=/usr/lib/X11/modules \ 4.28 + $CONFIGURE_ARGS 4.29 + make 4.30 + make DESTDIR=$PWD/_pkg install 4.31 +} 4.32 + 4.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.34 +genpkg_rules() 4.35 +{ 4.36 + mkdir -p $fs/usr/lib/X11/modules/drivers/ 4.37 + cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \ 4.38 + $fs/usr/lib/X11/modules/drivers/ 4.39 +} 4.40 +
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/xorg-xf86-video-savage/receipt Tue Mar 18 14:04:44 2008 +0100 5.3 @@ -0,0 +1,37 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="xorg-xf86-video-savage" 5.7 +VERSION="2.1.3" 5.8 +CATEGORY="x-window" 5.9 +SHORT_DESC="Xorg driver for trident cards." 5.10 +MAINTAINER="pankso@slitaz.org" 5.11 +DEPENDS="xorg xorg-server" 5.12 +BUILD_DEPENDS="xorg-server-dev" 5.13 +SOURCE="xf86-video-savage" 5.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 5.15 +WEB_SITE="http://www.x.org/" 5.16 +WGET_URL="$XORG_MIRROR/driver/$TARBALL" 5.17 + 5.18 +# Rules to configure and make the package. 5.19 +compile_rules() 5.20 +{ 5.21 + cd $src 5.22 + ./configure \ 5.23 + --prefix=/usr \ 5.24 + --sysconfdir=/etc \ 5.25 + --mandir=/usr/share/man \ 5.26 + --localstatedir=/var \ 5.27 + --with-xorg-module-dir=/usr/lib/X11/modules \ 5.28 + $CONFIGURE_ARGS 5.29 + make 5.30 + make DESTDIR=$PWD/_pkg install 5.31 +} 5.32 + 5.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.34 +genpkg_rules() 5.35 +{ 5.36 + mkdir -p $fs/usr/lib/X11/modules/drivers/ 5.37 + cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \ 5.38 + $fs/usr/lib/X11/modules/drivers/ 5.39 +} 5.40 +
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/xorg-xf86-video-sis/receipt Tue Mar 18 14:04:44 2008 +0100 6.3 @@ -0,0 +1,37 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="xorg-xf86-video-sis" 6.7 +VERSION="0.9.3" 6.8 +CATEGORY="x-window" 6.9 +SHORT_DESC="Xorg driver for trident cards." 6.10 +MAINTAINER="pankso@slitaz.org" 6.11 +DEPENDS="xorg xorg-server" 6.12 +BUILD_DEPENDS="xorg-server-dev" 6.13 +SOURCE="xf86-video-sis" 6.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 6.15 +WEB_SITE="http://www.x.org/" 6.16 +WGET_URL="$XORG_MIRROR/driver/$TARBALL" 6.17 + 6.18 +# Rules to configure and make the package. 6.19 +compile_rules() 6.20 +{ 6.21 + cd $src 6.22 + ./configure \ 6.23 + --prefix=/usr \ 6.24 + --sysconfdir=/etc \ 6.25 + --mandir=/usr/share/man \ 6.26 + --localstatedir=/var \ 6.27 + --with-xorg-module-dir=/usr/lib/X11/modules \ 6.28 + $CONFIGURE_ARGS 6.29 + make 6.30 + make DESTDIR=$PWD/_pkg install 6.31 +} 6.32 + 6.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.34 +genpkg_rules() 6.35 +{ 6.36 + mkdir -p $fs/usr/lib/X11/modules/drivers/ 6.37 + cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \ 6.38 + $fs/usr/lib/X11/modules/drivers/ 6.39 +} 6.40 +
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/xorg-xf86-video-trident/receipt Tue Mar 18 14:04:44 2008 +0100 7.3 @@ -0,0 +1,37 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="xorg-xf86-video-trident" 7.7 +VERSION="1.2.3" 7.8 +CATEGORY="x-window" 7.9 +SHORT_DESC="Xorg driver for trident cards." 7.10 +MAINTAINER="pankso@slitaz.org" 7.11 +DEPENDS="xorg xorg-server" 7.12 +BUILD_DEPENDS="xorg-server-dev" 7.13 +SOURCE="xf86-video-trident" 7.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 7.15 +WEB_SITE="http://www.x.org/" 7.16 +WGET_URL="$XORG_MIRROR/driver/$TARBALL" 7.17 + 7.18 +# Rules to configure and make the package. 7.19 +compile_rules() 7.20 +{ 7.21 + cd $src 7.22 + ./configure \ 7.23 + --prefix=/usr \ 7.24 + --sysconfdir=/etc \ 7.25 + --mandir=/usr/share/man \ 7.26 + --localstatedir=/var \ 7.27 + --with-xorg-module-dir=/usr/lib/X11/modules \ 7.28 + $CONFIGURE_ARGS 7.29 + make 7.30 + make DESTDIR=$PWD/_pkg install 7.31 +} 7.32 + 7.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.34 +genpkg_rules() 7.35 +{ 7.36 + mkdir -p $fs/usr/lib/X11/modules/drivers/ 7.37 + cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \ 7.38 + $fs/usr/lib/X11/modules/drivers/ 7.39 +} 7.40 +
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/xorg-xkbcomp/receipt Tue Mar 18 14:04:44 2008 +0100 8.3 @@ -0,0 +1,32 @@ 8.4 +# SliTaz package receipt. 8.5 + 8.6 +PACKAGE="xorg-xkbcomp" 8.7 +VERSION="1.0.3" 8.8 +CATEGORY="x-window" 8.9 +SHORT_DESC="Xorg keyboard composite." 8.10 +MAINTAINER="pankso@slitaz.org" 8.11 +DEPENDS="xorg" 8.12 +SOURCE="xkbcomp xorg-libX11 xorg-xkeyboard-config" 8.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 8.14 +WEB_SITE="http://www.x.org/" 8.15 +WGET_URL="$XORG_MIRROR/app/$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 8.32 + cp -a $_pkg/usr/bin $fs/usr 8.33 + strip -s $fs/usr/bin/* 8.34 +} 8.35 +
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/xorg-xkeyboard-config/receipt Tue Mar 18 14:04:44 2008 +0100 9.3 @@ -0,0 +1,37 @@ 9.4 +# SliTaz package receipt. 9.5 + 9.6 +PACKAGE="xorg-xkeyboard-config" 9.7 +VERSION="1.2" 9.8 +CATEGORY="x-window" 9.9 +SHORT_DESC="Xorg server keyboard definition files." 9.10 +MAINTAINER="pankso@slitaz.org" 9.11 +DEPENDS="xorg xkbcomp" 9.12 +BUILD_DEPENDS="perl-xml-parser" 9.13 +SOURCE="xkeyboard-config" 9.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 9.15 +WEB_SITE="http://www.x.org/" 9.16 +WGET_URL="http://xlibs.freedesktop.org/xkbdesc/$TARBALL" 9.17 + 9.18 +# Rules to configure and make the package. 9.19 +compile_rules() 9.20 +{ 9.21 + cd $src 9.22 + ./configure \ 9.23 + --prefix=/usr\ 9.24 + --sysconfdir=/etc \ 9.25 + --mandir=/usr/share/man \ 9.26 + --localstatedir=/var \ 9.27 + --with-xkb-base=/usr/share/X11/xkb \ 9.28 + --with-xkb-rules-symlink=xorg \ 9.29 + $CONFIGURE_ARGS 9.30 + make 9.31 + make DESTDIR=$PWD/_pkg install 9.32 +} 9.33 + 9.34 +# Rules to gen a SliTaz package suitable for Tazpkg. 9.35 +genpkg_rules() 9.36 +{ 9.37 + mkdir -p $fs/usr/share 9.38 + cp -a $_pkg/usr/share/X11 $fs/usr/share 9.39 +} 9.40 +