wok rev 189

Add vte and let geany load terminal if installed
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 06 21:29:05 2008 +0100 (2008-02-06)
parents b8f57e976a5d
children 1a5abc7285e2
files geany/receipt vte/receipt
line diff
     1.1 --- a/geany/receipt	Wed Feb 06 18:25:01 2008 +0100
     1.2 +++ b/geany/receipt	Wed Feb 06 21:29:05 2008 +0100
     1.3 @@ -6,6 +6,7 @@
     1.4  SHORT_DESC="Small and fast IDE using GTK+ toolkit."
     1.5  MAINTAINER="pankso@slitaz.org"
     1.6  DEPENDS="gtk+ libxml2"
     1.7 +SUGGESTED="vte"
     1.8  BUILD_DEPENDS="gtk+-dev libxml2-dev perl-xml-parser"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WEB_SITE="http://geany.uvena.de/"
    1.11 @@ -13,13 +14,13 @@
    1.12  JWM_MENU='Development:<Program icon="geany.png" label="Geany IDE">geany</Program>'
    1.13  
    1.14  # Rules to configure and make the package.
    1.15 +# Without vte : --disable-vte
    1.16  compile_rules()
    1.17  {
    1.18  	cd $src
    1.19  	./configure \
    1.20  		--prefix=/usr \
    1.21  		--mandir=/usr/share/man \
    1.22 -    	--disable-vte \
    1.23      	$CONFIGURE_ARGS
    1.24  	make
    1.25  	make DESTDIR=$PWD/_pkg install
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/vte/receipt	Wed Feb 06 21:29:05 2008 +0100
     2.3 @@ -0,0 +1,37 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="vte"
     2.7 +VERSION="0.15.6"
     2.8 +CATEGORY="extra"
     2.9 +SHORT_DESC=""
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.12 +WEB_SITE="http://www.gnome.org/"
    2.13 +WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/vte/0.15/$TARBALL"
    2.14 +
    2.15 +# Rules to configure and make the package.
    2.16 +compile_rules()
    2.17 +{
    2.18 +	cd $src
    2.19 +	./configure \
    2.20 +		--prefix=/usr \
    2.21 +		--libexecdir=/usr/lib/vte \
    2.22 +		--infodir=/usr/share/info \
    2.23 +		--mandir=/usr/share/man \
    2.24 +		--with-html-dir=/usr/share/doc \
    2.25 +		--with-pcre \
    2.26 +		$CONFIGURE_ARGS
    2.27 +	make
    2.28 +	make DESTDIR=$PWD/_pkg install
    2.29 +}
    2.30 +
    2.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.32 +genpkg_rules()
    2.33 +{
    2.34 +	mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share/locale
    2.35 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.36 +	cp -a $_pkg/usr/lib/vte $fs/usr/lib
    2.37 +	cp -a $_pkg/usr/bin/vte $fs/usr/bin
    2.38 +	cp -a $_pkg/usr/share/vte $fs/usr/share
    2.39 +	strip -s $fs/usr/lib/vte/* 2>/dev/null
    2.40 +}