jobcore/iptables/PKGBUILD-arch

109 lines
3.6 KiB
Plaintext
Raw Normal View History

2022-03-20 13:19:37 +01:00
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Thomas Baechler <thomas@archlinux.org>
pkgbase=iptables
pkgname=(iptables iptables-nft)
2022-05-24 13:03:11 +02:00
pkgver=1.8.8
2022-07-26 21:08:57 +02:00
pkgrel=2
2022-03-20 13:19:37 +01:00
epoch=1
pkgdesc='Linux kernel packet control tool'
arch=(x86_64)
license=(GPL2)
url='https://www.netfilter.org/projects/iptables/index.html'
depends=(libnftnl libpcap libnfnetlink libnetfilter_conntrack bash)
makedepends=(linux-api-headers)
backup=(etc/ethertypes etc/iptables/{ip,ip6}tables.rules)
source=(https://www.netfilter.org/projects/iptables/files/$pkgbase-$pkgver.tar.bz2{,.sig}
empty.rules simple_firewall.rules empty-{filter,mangle,nat,raw,security}.rules
2022-05-24 13:03:11 +02:00
{arp,eb,ip,ip6}tables.service iptables-{legacy,nft}-flush
2022-07-26 21:08:57 +02:00
iptables-format-security.patch::https://git.netfilter.org/iptables/patch/?id=b72eb12e
iptables-apply-default-path.patch)
2022-05-24 13:03:11 +02:00
sha1sums=('98783621a5e58ff55f83b1350523f3de41af621d'
2022-03-20 13:19:37 +01:00
'SKIP'
'83b3363878e3660ce23b2ad325b53cbd6c796ecf'
'f085a71f467e4d7cb2cf094d9369b0bcc4bab6ec'
'd9f9f06b46b4187648e860afa0552335aafe3ce4'
'c45b738b5ec4cfb11611b984c21a83b91a2d58f3'
'1694d79b3e6e9d9d543f6a6e75fed06066c9a6c6'
'7db53bb882f62f6c677cc8559cff83d8bae2ef73'
'ebbd1424a1564fd45f455a81c61ce348f0a14c2e'
'95b0ee26f03132a948fea9f2136b2e2e6a4b40fe'
'b668ba50d55030c68431a95756bc1f291d74b2b2'
'8d66d21fa4cbfe2a80478301af94ba54f65e4ea0'
'9cec592787e32451f58fa608ea057870e07aa704'
'd10af7780d1634778d898c709e2d950aa1561856'
2022-05-24 13:03:11 +02:00
'15c1684f3e671f4d0ede639a7c9c08e1a841511c'
2022-07-26 21:08:57 +02:00
'df4b0a31dfa01cff65926d439ab1475f246d4e74'
'454d0a6d3bca14b8702e7c5e2672f5bc0c832b85')
2022-03-20 13:19:37 +01:00
validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4'
'37D964ACC04981C75500FB9BD55D978A8A1420E4') # Netfilter Core Team
prepare() {
mkdir build
cd $pkgbase-$pkgver
# use system one
rm include/linux/types.h
2022-05-24 13:03:11 +02:00
ln -rs libiptc/linux_list.h include/libiptc
patch -p1 -i ../iptables-format-security.patch # Fix build with -Werror=format-security
2022-07-26 21:08:57 +02:00
# use Arch path
patch -p0 -i ../iptables-apply-default-path.patch
2022-03-20 13:19:37 +01:00
}
build() {
cd build
../$pkgbase-$pkgver/configure \
--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--libexecdir=/usr/lib \
--enable-bpf-compiler \
--enable-devel \
--enable-libipq \
--enable-shared
sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' -i libtool
make
}
package_iptables() {
pkgdesc+=' (using legacy interface)'
_package legacy
}
package_iptables-nft() {
pkgdesc+=' (using nft interface)'
depends+=(nftables)
provides=(iptables arptables ebtables)
conflicts=(iptables arptables ebtables)
backup+=(etc/{arp,eb}tables.conf)
_package nft
install -Dt "$pkgdir/usr/lib/systemd/system" -m644 {arp,eb}tables.service
touch "$pkgdir"/etc/{arp,eb}tables.conf
}
_package() {
DESTDIR="$pkgdir" make -C build install
2022-07-26 21:08:57 +02:00
for _x in {arp,eb,ip,ip6}tables{,-restore,-save} iptables-xml; do
2022-03-20 13:19:37 +01:00
if [[ $1 = nft || $_x = ip* ]]; then
ln -sf xtables-$1-multi "$pkgdir/usr/bin/$_x"
else
rm "$pkgdir/usr/bin/$_x"
fi
done
install -Dt "$pkgdir/usr/lib/systemd/system" -m644 {ip,ip6}tables.service
install -D iptables-$1-flush "$pkgdir/usr/lib/systemd/scripts/iptables-flush"
install -Dm644 empty.rules "$pkgdir/etc/iptables/iptables.rules"
install -Dm644 empty.rules "$pkgdir/etc/iptables/ip6tables.rules"
install -Dt "$pkgdir/usr/share/iptables" -m644 *.rules
ln -srt "$pkgdir/etc/iptables" "$pkgdir"/usr/share/iptables/{empty,simple_firewall}.rules
}
# vim:set sw=2 et: