void-packages/srcpkgs/iptables/template

50 lines
1.7 KiB
Text
Raw Normal View History

# Template file for 'iptables'
pkgname=iptables
2012-02-08 13:04:00 +00:00
version=1.4.12.2
2011-12-02 10:14:49 +00:00
homepage="http://www.iptables.org"
distfiles="$homepage/projects/iptables/files/$pkgname-$version.tar.bz2"
2012-02-08 13:04:00 +00:00
build_style=gnu-configure
configure_args="--enable-devel --enable-libipq --enable-shared --enable-static"
short_desc="Linux IPv[46] packet filtering ruleset"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-07-07 16:44:20 +00:00
homepage="http://www.netfilter.org/"
license="GPL-2"
2012-02-08 13:04:00 +00:00
checksum=09fff7dfe6af95675474fd5d0fc67622fac5a0f3d6e02ee614deae9a2e5dae13
long_desc="
iptables is the userspace command line program used to configure the Linux
2011-07-31 08:18:29 +00:00
IPv4 packet filtering ruleset. It is targeted towards system administrators.
Since Network Address Translation is also configured from the packet filter
ruleset, iptables is used for this, too.
The iptables package also includes ip6tables. ip6tables is used for
configuring the IPv6 packet filter."
subpackages="$pkgname-devel"
2011-07-07 16:44:20 +00:00
Add_dependency build sed
2012-02-08 13:04:00 +00:00
pre_configure() {
# Fix build with kernel-libc-headers >= 3.2
sed -i '/if_packet/i#define __aligned_u64 __u64 __attribute__((aligned(8)))' \
extensions/libxt_pkttype.c
sed -i '87 i libxt_RATEEST.so: libxt_RATEEST.oo' extensions/GNUmakefile.in
sed -i '88 i \\t${AM_VERBOSE_CCLD} ${CCLD} ${AM_LDFLAGS} -lm -shared ${LDFLAGS} -o $@ $<;\n' \
2011-07-07 16:44:20 +00:00
extensions/GNUmakefile.in
}
2012-02-08 13:04:00 +00:00
post_install() {
vinstall ${FILESDIR}/iptables.service 644 lib/systemd/system
vinstall ${FILESDIR}/ip6tables.service 644 lib/systemd/system
vinstall ${FILESDIR}/iptables-flush.scripts 755 \
lib/systemd/scripts iptables-flush
2011-07-31 08:18:29 +00:00
for f in empty.rules simple_firewall.rules; do
vinstall ${FILESDIR}/${f} 644 etc/iptables
done
for f in filter mangle nat raw security; do
vinstall ${FILESDIR}/empty-${f}.rules 644 \
var/lib/iptables empty-${f}.rules
2011-07-07 16:44:20 +00:00
done
}