wok-6.x rev 3019
Add Xorg app: x11perf,xdriinfo,xinput,xkbutils,xprop,xrandr
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon May 11 22:38:01 2009 +0200 (2009-05-11) |
parents | 8192b7f227da |
children | 7dbe1d832560 |
files | xorg-x11perf/receipt xorg-xdriinfo/receipt xorg-xinput/receipt xorg-xkbutils/receipt xorg-xprop/receipt xorg-xrandr/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xorg-x11perf/receipt Mon May 11 22:38:01 2009 +0200 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xorg-x11perf" 1.7 +VERSION="1.5" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="Utility who runs one or more performance tests and reports." 1.10 +MAINTAINER="paul@slitaz.org" 1.11 +DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXmu" 1.12 +BUILD_DEPENDS="xorg-libXdmcp-dev xorg-kbproto xorg-xproto" 1.13 +SOURCE="x11perf" 1.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.15 +WEB_SITE="http://xorg.freedesktop.org/" 1.16 +WGET_URL="http://xorg.freedesktop.org/releases/X11R7.4/src/app/$TARBALL" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr \ 1.23 + --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.24 + make && 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 + mkdir -p $fs/usr 1.31 + cp -a $_pkg/usr/bin $fs/usr 1.32 + cp -a $_pkg/usr/lib $fs/usr 1.33 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xorg-xdriinfo/receipt Mon May 11 22:38:01 2009 +0200 2.3 @@ -0,0 +1,29 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xorg-xdriinfo" 2.7 +SOURCE="xdriinfo" 2.8 +VERSION="1.0.2" 2.9 +CATEGORY="x-window" 2.10 +SHORT_DESC="Query configuration information of DRI drivers" 2.11 +MAINTAINER="pankso@slitaz.org" 2.12 +DEPENDS="xorg-libX11" 2.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.14 +WEB_SITE="http://www.x.org/" 2.15 +WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + cd $src 2.21 + ./configure --prefix=/usr \ 2.22 + --mandir=/usr/share/man $CONFIGURE_ARGS && 2.23 + make && 2.24 + make DESTDIR=$PWD/_pkg install 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr 2.31 + cp -a $_pkg/usr/bin $fs/usr 2.32 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xorg-xinput/receipt Mon May 11 22:38:01 2009 +0200 3.3 @@ -0,0 +1,29 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xorg-xinput" 3.7 +VERSION="1.3.0" 3.8 +CATEGORY="x-window" 3.9 +SHORT_DESC="X input utility (MPX support)." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="xorg" 3.12 +SOURCE="xinput" 3.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 3.14 +WEB_SITE="http://www.x.org/" 3.15 +WGET_URL="$XORG_MIRROR/app/$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 --prefix=/usr --mandir=/usr/share/man \ 3.22 + $CONFIGURE_ARGS && 3.23 + make && 3.24 + make DESTDIR=$PWD/_pkg install 3.25 +} 3.26 + 3.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.28 +genpkg_rules() 3.29 +{ 3.30 + mkdir -p $fs/usr 3.31 + cp -a $_pkg/usr/bin $fs/usr 3.32 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xorg-xkbutils/receipt Mon May 11 22:38:01 2009 +0200 4.3 @@ -0,0 +1,30 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="xorg-xkbutils" 4.7 +VERSION="1.0.1" 4.8 +CATEGORY="x-window" 4.9 +SHORT_DESC="Xorg keyboard utility." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +DEPENDS="xorg xorg-libX11 xorg-xkeyboard-config" 4.12 +SOURCE="xkbutils" 4.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 4.14 +WEB_SITE="http://www.x.org/" 4.15 +WGET_URL="$XORG_MIRROR/app/$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 + mkdir -p $fs/usr 4.32 + cp -a $_pkg/usr/bin $fs/usr 4.33 +}
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/xorg-xprop/receipt Mon May 11 22:38:01 2009 +0200 5.3 @@ -0,0 +1,29 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="xorg-xprop" 5.7 +VERSION="1.0.4" 5.8 +CATEGORY="x-window" 5.9 +SHORT_DESC="X xprop application." 5.10 +MAINTAINER="pankso@slitaz.org" 5.11 +DEPENDS="xorg" 5.12 +SOURCE="xprop" 5.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 5.14 +WEB_SITE="http://www.x.org/" 5.15 +WGET_URL="$XORG_MIRROR/app/$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 --mandir=/usr/share/man \ 5.22 + $CONFIGURE_ARGS && 5.23 + make && 5.24 + make DESTDIR=$PWD/_pkg install 5.25 +} 5.26 + 5.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.28 +genpkg_rules() 5.29 +{ 5.30 + mkdir -p $fs/usr 5.31 + cp -a $_pkg/usr/bin $fs/usr 5.32 +}
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/xorg-xrandr/receipt Mon May 11 22:38:01 2009 +0200 6.3 @@ -0,0 +1,30 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="xorg-xrandr" 6.7 +VERSION="1.2.3" 6.8 +#VERSION="1.3.0" 6.9 +CATEGORY="x-window" 6.10 +SHORT_DESC="X app to show system resources usage." 6.11 +MAINTAINER="pankso@slitaz.org" 6.12 +DEPENDS="xorg" 6.13 +SOURCE="xrandr" 6.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 6.15 +WEB_SITE="http://www.x.org/" 6.16 +WGET_URL="$XORG_MIRROR/app/$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 --prefix=/usr --mandir=/usr/share/man \ 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 + mkdir -p $fs/usr 6.32 + cp -a $_pkg/usr/bin $fs/usr 6.33 +}