wok diff fluxbox/receipt @ rev 12254

Up: slitaz-configs (4.9.1) - Last minute bug fix
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 10 13:54:27 2012 +0200 (2012-04-10)
parents d1768332cee0
children 96d7eeb131d6
line diff
     1.1 --- a/fluxbox/receipt	Sun May 08 09:01:58 2011 +0000
     1.2 +++ b/fluxbox/receipt	Tue Apr 10 13:54:27 2012 +0200
     1.3 @@ -1,37 +1,41 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fluxbox"
     1.7 -VERSION="1.3.1"
     1.8 +VERSION="1.3.2"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="Fluxbox is a windowmanager for X. It is very light on resources and easy to handle but yet full of features."
    1.11 -MAINTAINER="mallory@sweetpeople.org"
    1.12 -DEPENDS="fontconfig imlib2 xorg-libICE xorg-libSM xorg-libX11 \
    1.13 -xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXft xorg-libXinerama \
    1.14 -xorg-libXpm xorg-libXrandr xorg-libXrender gcc-lib-base"
    1.15 +SHORT_DESC="Fluxbox is a light and fast window manager for X."
    1.16 +MAINTAINER="pankso@slitaz.org"
    1.17  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18  WEB_SITE="http://www.fluxbox.org/"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20  TAGS="wm window-manager"
    1.21  
    1.22 +DEPENDS="xorg fontconfig imlib2"
    1.23 +BUILD_DEPENDS="xorg fontconfig imlib2"
    1.24 +
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28  	cd $src
    1.29 -	patch -p1 < $stuff/fluxbox-gcc-4.3.3.diff
    1.30 -	./configure \
    1.31 -		--prefix=/usr \
    1.32 -		--infodir=/usr/share/info \
    1.33 -		--mandir=/usr/share/man \
    1.34 -		$CONFIGURE_ARGS &&
    1.35 -	make && make DESTDIR=$PWD/_pkg install
    1.36 +	#patch -p1 < $stuff/fluxbox-gcc-4.3.3.diff
    1.37 +	./configure $CONFIGURE_ARGS &&
    1.38 +	make && make install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr
    1.45 -	cp -a $_pkg/usr/bin $fs/usr
    1.46 -	cp -a $_pkg/usr/share $fs/usr
    1.47 +	mkdir -p $fs/usr/share/fluxbox/styles
    1.48 +	cp -a $install/usr/bin $fs/usr
    1.49 +	for f in apps keys overlay windowmenu init menu
    1.50 +	do
    1.51 +		cp -a $install/usr/share/fluxbox/$f $fs/usr/share/fluxbox
    1.52 +	done
    1.53 +	for s in Shade Flux bloe Results
    1.54 +	do
    1.55 +		cp -a $install/usr/share/fluxbox/styles/$s \
    1.56 +			$fs/usr/share/fluxbox/styles
    1.57 +	done
    1.58  }
    1.59  
    1.60  post_install()