wok annotate knock/receipt @ rev 1586

knock: fix CONFIG_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 16 17:56:33 2008 +0000 (2008-10-16)
parents b94e60fe7b4e
children 087a1ee211fc
rev   line source
pascal@1435 1 # SliTaz package receipt.
pascal@1435 2
pascal@1435 3 PACKAGE="knock"
pascal@1435 4 VERSION="0.5"
pascal@1435 5 CATEGORY="security"
pascal@1435 6 SHORT_DESC="Port knock sequence listener."
pascal@1435 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1435 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1461 9 BUILD_DEPENDS="libpcap"
pascal@1435 10 WEB_SITE="http://www.zeroflux.org/$PACKAGE"
pascal@1435 11 WGET_URL="http://www.zeroflux.org/proj/$PACKAGE/files/$TARBALL"
pascal@1586 12 CONFIG_FILES="/etc/knockd.conf"
pascal@1435 13
pascal@1435 14 # Rules to configure and make the package.
pascal@1435 15 compile_rules()
pascal@1435 16 {
pascal@1435 17 cd $src
pascal@1461 18 [ -f done.knock.u ] || patch -p1 < ../stuff/knock.u
pascal@1461 19 touch done.knock.u
pascal@1435 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1435 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1435 22 make &&
pascal@1435 23 make DESTDIR=$PWD/_pkg install
pascal@1435 24 }
pascal@1435 25
pascal@1435 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1435 27 genpkg_rules()
pascal@1435 28 {
pascal@1435 29 mkdir -p $fs/usr
pascal@1435 30 cp -a $_pkg/etc $fs
pascal@1435 31 cp -a $_pkg/usr/sbin $fs/usr
pascal@1435 32 cp -a $_pkg/usr/bin $fs/usr
pascal@1435 33 cp -a stuff/etc $fs
pascal@1435 34 }
pascal@1435 35