wok-6.x rev 1461
knock lxml lxtask: update BUILD_DEPENDS
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 03 21:10:30 2008 +0000 (2008-10-03) |
parents | f08ead2d5191 |
children | c26d98c9bc75 |
files | knock/receipt lxml/receipt lxtask/receipt |
line diff
1.1 --- a/knock/receipt Fri Oct 03 20:14:14 2008 +0000 1.2 +++ b/knock/receipt Fri Oct 03 21:10:30 2008 +0000 1.3 @@ -6,6 +6,7 @@ 1.4 SHORT_DESC="Port knock sequence listener." 1.5 MAINTAINER="pascal.bellard@slitaz.org" 1.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.7 +BUILD_DEPENDS="libpcap" 1.8 WEB_SITE="http://www.zeroflux.org/$PACKAGE" 1.9 WGET_URL="http://www.zeroflux.org/proj/$PACKAGE/files/$TARBALL" 1.10 CONFIG_FILES="/etc/knock" 1.11 @@ -14,7 +15,8 @@ 1.12 compile_rules() 1.13 { 1.14 cd $src 1.15 - patch -p1 < ../stuff/knock.u 1.16 + [ -f done.knock.u ] || patch -p1 < ../stuff/knock.u 1.17 + touch done.knock.u 1.18 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.19 --mandir=/usr/share/man $CONFIGURE_ARGS && 1.20 make &&
2.1 --- a/lxml/receipt Fri Oct 03 20:14:14 2008 +0000 2.2 +++ b/lxml/receipt Fri Oct 03 21:10:30 2008 +0000 2.3 @@ -9,13 +9,13 @@ 2.4 WEB_SITE="http://codespeak.net/lxml/" 2.5 WGET_URL="http://codespeak.net/$PACKAGE/$TARBALL" 2.6 DEPENDS="python libxml2 libxslt" 2.7 -BUILD_DEPENDS="python" 2.8 +BUILD_DEPENDS="python libxslt-dev" 2.9 2.10 # Rules to configure and make the package. 2.11 compile_rules() 2.12 { 2.13 cd $src 2.14 - python setup.py build 2.15 + python setup.py build && 2.16 python setup.py install --root=$PWD/_pkg 2.17 } 2.18
3.1 --- a/lxtask/receipt Fri Oct 03 20:14:14 2008 +0000 3.2 +++ b/lxtask/receipt Fri Oct 03 21:10:30 2008 +0000 3.3 @@ -4,7 +4,8 @@ 3.4 VERSION="0.1" 3.5 CATEGORY="system-tools" 3.6 SHORT_DESC="Ssytem task manager with a nice GTK interface." 3.7 -BUILD_DEPENDS="gtk+-dev" 3.8 +DEPENDS="gtk+" 3.9 +BUILD_DEPENDS="pkg-config gtk+-dev xorg-xproto" 3.10 MAINTAINER="pankso@slitaz.org" 3.11 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.12 WEB_SITE="http://lxde.sourceforge.net/" 3.13 @@ -16,8 +17,8 @@ 3.14 cd $src 3.15 ./configure \ 3.16 --prefix=/usr \ 3.17 - --mandir=/usr/share/man 3.18 - make 3.19 + --mandir=/usr/share/man $CONFIGURE_ARGS && 3.20 + make && 3.21 make DESTDIR=$PWD/_pkg install 3.22 } 3.23