void-packages/srcpkgs/iptables/template

42 lines
1.1 KiB
Plaintext
Raw Normal View History

# Template file for 'iptables'
pkgname=iptables
2012-12-07 09:35:36 +01:00
version=1.4.16.3
revision=2
2012-02-08 14:04:00 +01:00
build_style=gnu-configure
2012-10-15 21:49:55 +02:00
configure_args="--enable-libipq --enable-shared --disable-static"
2012-05-30 00:23:36 +02:00
subpackages="$pkgname-devel"
short_desc="Linux IPv[46] packet filtering ruleset"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-07-07 18:44:20 +02:00
homepage="http://www.netfilter.org/"
license="GPL-2"
2012-05-30 00:23:36 +02:00
distfiles="$homepage/projects/iptables/files/$pkgname-$version.tar.bz2"
2012-12-07 09:35:36 +01:00
checksum=643ccf34099d53d5b839e1d889c05627745a51ec122648e76a9fcec3a8a9ec79
if [ -n "$XBPS_CROSS_TRIPLET" ]; then
makedepends="automake gettext-devel pkg-config"
pre_configure() {
autoreconf -fi
}
fi
pre_build() {
rm include/linux/types.h
}
2012-02-08 14:04:00 +01:00
post_install() {
2012-05-30 00:23:36 +02:00
# systemd services.
2012-07-09 23:08:17 +02:00
vmkdir usr/lib/systemd/system
install -m644 ${FILESDIR}/*.service ${DESTDIR}/usr/lib/systemd/system
vinstall ${FILESDIR}/iptables-flush.scripts 755 \
2012-07-09 23:08:17 +02:00
usr/lib/systemd/scripts iptables-flush
2012-05-30 00:23:36 +02:00
# Configuration files and rules.
2011-07-31 10:18:29 +02: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 18:44:20 +02:00
done
}