41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
# Template file for 'iptables'
|
|
pkgname=iptables
|
|
version=1.4.18
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--enable-libipq --enable-shared --enable-static"
|
|
subpackages="$pkgname-devel"
|
|
short_desc="Linux IPv[46] packet filtering ruleset"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.netfilter.org/"
|
|
license="GPL-2"
|
|
distfiles="$homepage/projects/iptables/files/$pkgname-$version.tar.bz2"
|
|
checksum=14a99fb8b0ca22027a9ac6eb72fa32c834ceb3073820e0ba79bf251c6a7bcf3c
|
|
|
|
if [ -n "$XBPS_CROSS_TRIPLET" ]; then
|
|
makedepends="automake gettext-devel pkg-config"
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
fi
|
|
|
|
pre_build() {
|
|
rm include/linux/types.h
|
|
}
|
|
|
|
post_install() {
|
|
# systemd services.
|
|
vmkdir usr/lib/systemd/system
|
|
install -m644 ${FILESDIR}/*.service ${DESTDIR}/usr/lib/systemd/system
|
|
vinstall ${FILESDIR}/iptables-flush.scripts 755 \
|
|
usr/lib/systemd/scripts iptables-flush
|
|
|
|
# Configuration files and rules.
|
|
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
|
|
done
|
|
}
|