wok view iptables/receipt @ rev 9997

libsdl-gfx: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 01:19:54 2011 +0200 (2011-05-19)
parents 4742a035ef9b
children 65d54154cd5d
line source
1 # SliTaz package receipt.
3 PACKAGE="iptables"
4 VERSION="1.4.10"
5 CATEGORY="security"
6 SHORT_DESC="Packet filtering framework (Firewall)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="linux-netfilter"
9 BUILD_DEPENDS="linux-module-headers"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.netfilter.org/"
12 WGET_URL="http://www.netfilter.org/projects/iptables/files/$TARBALL"
13 TAGS="firewall"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 # Set the right Kernel path to compile.
21 KERNEL_PATH="/usr/src/linux"
22 ./configure \
23 --prefix=/usr \
24 --libexecdir=/usr/lib/iptables \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 EXTRAVERSION="_`grep ^VERSION= $WOK/linux/receipt | cut -d '\"' -f 2`"
35 mkdir -p $fs/usr
36 cp -a $_pkg/usr/sbin $fs/sbin
37 cp -a $_pkg/usr/lib $fs/usr
38 }