2022-03-20 13:19:37 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
|
|
# Website : https://pozol.eu
|
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
|
|
|
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=02
|
2022-03-20 13:19:37 +01:00
|
|
|
epoch=1
|
|
|
|
pkgdesc='Linux kernel packet control tool - w/o ipv6 & systemd'
|
|
|
|
arch=(x86_64)
|
|
|
|
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}
|
2022-05-24 13:03:11 +02:00
|
|
|
empty.rules simple_firewall.rules empty-{filter,mangle,nat,raw,security}.rules
|
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-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
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 \
|
|
|
|
--disable-ipv6
|
|
|
|
sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' -i libtool
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package_iptables() {
|
|
|
|
pkgdesc+=' (using legacy interface - no ipv6)'
|
|
|
|
_package legacy
|
|
|
|
}
|
|
|
|
|
|
|
|
package_iptables-nft() {
|
|
|
|
pkgdesc+=' (using nft interface - no ipv6)'
|
|
|
|
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}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
|
|
|
|
}
|
|
|
|
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
|
|
|
|
license=(GPL2)
|
|
|
|
|
|
|
|
validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4'
|
|
|
|
'37D964ACC04981C75500FB9BD55D978A8A1420E4') # Netfilter Core Team
|
|
|
|
|
2022-05-24 13:03:11 +02:00
|
|
|
sha256sums=(71c75889dc710676631553eb1511da0177bbaaf1b551265b912d236c3f51859f # iptables-1.8.8.tar.bz2
|
|
|
|
b2352cadec0594289948d9f43868057fdf2a34e5e6dd5420be862c631e177c00 # iptables-1.8.8.tar.bz2.sig
|
2022-03-20 13:19:37 +01:00
|
|
|
630d774f089703c2c7370db6d7c188dae25d00c26feaa3d3de8eb52519033948 # empty.rules
|
|
|
|
9e83d7ae39d31881790f814930d44acbaeab1520adb2fb4fcb80f0bbfab174b9 # simple_firewall.rules
|
|
|
|
09b90da35c2c8cb0fbda63b300f06d2387a102ca53a40980ef0b49829e249528 # empty-filter.rules
|
|
|
|
92755648f456e235d17a8faeb5f46d27af66eb4db10ea4bac0abd3e35e2dae07 # empty-mangle.rules
|
|
|
|
52bd70dff3e1e1a64127ad7ed86840834b79756c3bdb6947b7c6279ffe95dd48 # empty-nat.rules
|
|
|
|
5768a471c0559848635c39d270e456bfa5c43eda65f5f6f666fea2d277183a37 # empty-raw.rules
|
2022-05-24 13:03:11 +02:00
|
|
|
91161a73f323016a9efc5eabd16243d20f8ca2467995cf0eabfb95f845090121 # empty-security.rules
|
2022-07-26 21:08:57 +02:00
|
|
|
9d9e23d6452632e7944d942ccbf6c82deb327780a084611aa7444eb88c596a70 # iptables-format-security.patch
|
|
|
|
770ceaedce26d05eb1b9d0c4c65f5b8e92facd1dc0652a29c859336d6bc347f6) # iptables-apply-default-path.patch
|