# HG changeset patch # User Rohit Joshi # Date 1242071106 0 # Node ID 3ffef2e6351e383229fb11c556f3a26d9ed3b70c # Parent b50bab5c00cdf92a25743164a40f6f7b9eabbcb5 Add: Xorg apps : xbacklight xfontsel diff -r b50bab5c00cd -r 3ffef2e6351e xorg-xbacklight/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xbacklight/receipt Mon May 11 19:45:06 2009 +0000 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xbacklight" +VERSION="1.1" +CATEGORY="x-window" +SHORT_DESC="utility for x-server to set the backlight level using the RandR" +MAINTAINER="jozee@slitaz.org" +SOURCE="xbacklight" +TARBALL="$SOURCE-$VERSION.tar.bz2" +DEPENDS="" +BUILD_DEPENDS="xorg-dev" +WEB_SITE="http://xorg.freedesktop.org/" +WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" +TAGS="utility xorg power backlight" + +# Rules to configure and make the package.ls sr +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} + diff -r b50bab5c00cd -r 3ffef2e6351e xorg-xfontsel/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xfontsel/receipt Mon May 11 19:45:06 2009 +0000 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xfontsel" +VERSION="1.0.2" +CATEGORY="x-window" +SHORT_DESC="point and click selection utility of X11 font names" +MAINTAINER="jozee@slitaz.org" +SOURCE="xfontsel" +TARBALL="$SOURCE-$VERSION.tar.bz2" +DEPENDS="" +BUILD_DEPENDS="xorg-dev" +WEB_SITE="http://xorg.freedesktop.org/" +WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" +TAGS="utility xorg fonts" + +# Rules to configure and make the package.ls sr +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/X11 $fs/usr/share +} +