wok diff gtkdialog/receipt @ rev 10788

gtkdialog: remove example and desktop file
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 01 19:42:36 2011 +0200 (2011-06-01)
parents d1768332cee0
children a61559756120
line diff
     1.1 --- a/gtkdialog/receipt	Sun May 08 09:01:58 2011 +0000
     1.2 +++ b/gtkdialog/receipt	Wed Jun 01 19:42:36 2011 +0200
     1.3 @@ -5,12 +5,13 @@
     1.4  CATEGORY="x-window"
     1.5  SHORT_DESC="Small utility for fast and easy GUI building using GTK+."
     1.6  MAINTAINER="pankso@slitaz.org"
     1.7 -DEPENDS="gtk+ libglade xorg-libXdamage"
     1.8 -BUILD_DEPENDS="gtk+-dev libglade-dev xorg-libXdamage-dev"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WEB_SITE="http://linux.pte.hu/~pipas/gtkdialog/"
    1.11  WGET_URL="ftp://linux.pte.hu/pub/gtkdialog/$TARBALL"
    1.12  
    1.13 +DEPENDS="gtk+ libglade xorg-libXdamage"
    1.14 +BUILD_DEPENDS="gtk+-dev libglade-dev xorg-libXdamage-dev"
    1.15 +
    1.16  # Rules to configure and make the package.
    1.17  compile_rules()
    1.18  {
    1.19 @@ -19,19 +20,14 @@
    1.20  	patch -p 0 < $stuff/glade_support.patch || return 1
    1.21  	./configure \
    1.22  		--prefix=/usr \
    1.23 -		--infodir=/usr/share/info \
    1.24 -		--mandir=/usr/share/man \
    1.25  		$CONFIGURE_ARGS &&
    1.26  	make &&
    1.27 -	make DESTDIR=$PWD/_pkg install
    1.28 +	make DESTDIR=$DESTDIR install
    1.29  }
    1.30  
    1.31  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.32  genpkg_rules()
    1.33  {
    1.34 -	mkdir -p $fs/usr/share/examples
    1.35 -	cp -a $_pkg/usr/bin $fs/usr
    1.36 -	# Fiew examples.
    1.37 -	cp -a stuff/examples $fs/usr/share/examples/gtkdialog
    1.38 +	mkdir -p $fs/usr
    1.39 +	cp -a $install/usr/bin $fs/usr
    1.40  }
    1.41 -