# HG changeset patch # User Christophe Lincoln # Date 1204903598 -3600 # Node ID 63336924cada450ab779d1880359d30bafe84a1a # Parent 2b7d1b0c7352ec55c0e8f4421450a96a36902c26 Final touch for SliTaz desktop (shadows and opacity effects) diff -r 2b7d1b0c7352 -r 63336924cada transset-df/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/transset-df/receipt Fri Mar 07 16:26:38 2008 +0100 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="transset-df" +VERSION="6" +CATEGORY="x-window" +SHORT_DESC="Tool to set windows opacity." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg-libXdamage xorg-libXcomposite xorg-xcompmgr" +BUILD_DEPENDS="xorg-libXdamage-dev xorg-libXcomposite-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.forchheimer.se/transset-df/" +WGET_URL="http://www.forchheimer.se/transset-df/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/transset-df $fs/usr/bin +} diff -r 2b7d1b0c7352 -r 63336924cada xorg-libXdamage-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-libXdamage-dev/receipt Fri Mar 07 16:26:38 2008 +0100 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="xorg-libXdamage-dev" +VERSION="1.0.4" +CATEGORY="development" +SHORT_DESC="Xorg damage extension devel files." +MAINTAINER="pankso@slitaz.org" +DEPENS="xorg-dev" +WANTED="xorg-libXdamage" +SOURCE="libXdamage" +WEB_SITE="http://www.x.org/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg + cp -a $_pkg/usr/lib/*.*a* $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r 2b7d1b0c7352 -r 63336924cada xorg-libXdamage/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-libXdamage/receipt Fri Mar 07 16:26:38 2008 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="xorg-libXdamage" +VERSION="1.0.4" +CATEGORY="x-window" +SHORT_DESC="Xorg damage extension." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg" +SOURCE="libXdamage" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/lib/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --sysconfdir=/etc \ + --mandir=/usr/share/man --localstatedir=/var \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + strip -s $fs/usr/lib/* +} diff -r 2b7d1b0c7352 -r 63336924cada xorg-xcompmgr/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xcompmgr/receipt Fri Mar 07 16:26:38 2008 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xcompmgr" +VERSION="1.1.4" +CATEGORY="x-window" +SHORT_DESC="X composite manager." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg-libXdamage xorg-libXcomposite xorg-libX11" +BUILD_DEPENDS="xorg-libXdamage-dev xorg-libXcomposite-dev xorg-libX11-dev" +SOURCE="xcompmgr" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.x.org/" +WGET_URL="http://xorg.freedesktop.org/archive/individual/app/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --sysconfdir=/etc \ + --mandir=/usr/share/man --localstatedir=/var \ + $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 +}