wok-stable diff xfe/receipt @ rev 3236
Fix: rrdtool, enable perl site configuration
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Fri May 29 23:36:34 2009 +0200 (2009-05-29) |
parents | |
children | cc233e5d5706 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xfe/receipt Fri May 29 23:36:34 2009 +0200 1.3 @@ -0,0 +1,39 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xfe" 1.7 +VERSION="1.19.2" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Xfe File manager and utility using Fox toolkit." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +DEPENDS="libpng jpeg tiff xorg-libXft fox" 1.13 +BUILD_DEPENDS="$DEPENDS libpng-dev jpeg-dev tiff-dev xorg-libXft-dev fox-dev" 1.14 +SUGGESTED="adie calculator shutterbug" 1.15 +WEB_SITE="http://roland65.free.fr/xfe/" 1.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$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 \ 1.23 + --prefix=/usr \ 1.24 + --mandir=/usr/share/man \ 1.25 + $CONFIGURE_ARGS && 1.26 + make && 1.27 + make DESTDIR=$PWD/_pkg install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr/bin $fs/usr/share/xfe/icons 1.34 + cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin 1.35 + cp -a $_pkg/usr/share/xfe/xferc $fs/usr/share/xfe 1.36 + sed -i 's/gnomeblue-theme/tango-theme/' $fs/usr/share/xfe/xferc 1.37 + # Tango/Gnome icons theme only 1.38 + cp -a $_pkg/usr/share/xfe/icons/tango-theme \ 1.39 + $fs/usr/share/xfe/icons 1.40 + cp -a $_pkg/usr/share/xfe/icons/gnome-theme \ 1.41 + $fs/usr/share/xfe/icons 1.42 +}