# HG changeset patch # User Pascal Bellard # Date 1223068230 0 # Node ID b94e60fe7b4ef13fb2d8ae4fb38410f97b645be6 # Parent f08ead2d5191c6545808ab233f95ab670ec9a34f knock lxml lxtask: update BUILD_DEPENDS diff -r f08ead2d5191 -r b94e60fe7b4e knock/receipt --- a/knock/receipt Fri Oct 03 20:14:14 2008 +0000 +++ b/knock/receipt Fri Oct 03 21:10:30 2008 +0000 @@ -6,6 +6,7 @@ SHORT_DESC="Port knock sequence listener." MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" +BUILD_DEPENDS="libpcap" WEB_SITE="http://www.zeroflux.org/$PACKAGE" WGET_URL="http://www.zeroflux.org/proj/$PACKAGE/files/$TARBALL" CONFIG_FILES="/etc/knock" @@ -14,7 +15,8 @@ compile_rules() { cd $src - patch -p1 < ../stuff/knock.u + [ -f done.knock.u ] || patch -p1 < ../stuff/knock.u + touch done.knock.u ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS && make && diff -r f08ead2d5191 -r b94e60fe7b4e lxml/receipt --- a/lxml/receipt Fri Oct 03 20:14:14 2008 +0000 +++ b/lxml/receipt Fri Oct 03 21:10:30 2008 +0000 @@ -9,13 +9,13 @@ WEB_SITE="http://codespeak.net/lxml/" WGET_URL="http://codespeak.net/$PACKAGE/$TARBALL" DEPENDS="python libxml2 libxslt" -BUILD_DEPENDS="python" +BUILD_DEPENDS="python libxslt-dev" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py build + python setup.py build && python setup.py install --root=$PWD/_pkg } diff -r f08ead2d5191 -r b94e60fe7b4e lxtask/receipt --- a/lxtask/receipt Fri Oct 03 20:14:14 2008 +0000 +++ b/lxtask/receipt Fri Oct 03 21:10:30 2008 +0000 @@ -4,7 +4,8 @@ VERSION="0.1" CATEGORY="system-tools" SHORT_DESC="Ssytem task manager with a nice GTK interface." -BUILD_DEPENDS="gtk+-dev" +DEPENDS="gtk+" +BUILD_DEPENDS="pkg-config gtk+-dev xorg-xproto" MAINTAINER="pankso@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://lxde.sourceforge.net/" @@ -16,8 +17,8 @@ cd $src ./configure \ --prefix=/usr \ - --mandir=/usr/share/man - make + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install }