mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 23:51:58 +01:00
93 lines
2.8 KiB
Plaintext
93 lines
2.8 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
|
|
pkgname=iptables
|
|
pkgver=1.8.2
|
|
pkgrel=0
|
|
pkgdesc="Linux kernel firewall, NAT and packet mangling tools"
|
|
url="https://www.netfilter.org/projects/iptables/index.html"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
depends_dev="linux-headers"
|
|
makedepends="$depends_dev libnftnl-dev bison flex autoconf automake"
|
|
subpackages="ip6tables $pkgname-doc $pkgname-dev"
|
|
provides="ebtables" # for backards compat
|
|
replaces="ebtables"
|
|
source="https://www.netfilter.org/projects/iptables/files/iptables-$pkgver.tar.bz2
|
|
iptables-1.8.2-musl-fixes.patch
|
|
iptables.initd
|
|
iptables.confd
|
|
ip6tables.confd
|
|
"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
cd "$builddir"
|
|
sed -i -e '/if_packet/i#define __aligned_u64 __u64 __attribute__((aligned(8)))' \
|
|
extensions/libxt_pkttype.c
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
export CFLAGS="$CFLAGS -D_GNU_SOURCE"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--sbindir=/sbin \
|
|
--without-kernel \
|
|
--enable-devel \
|
|
--enable-libipq \
|
|
--enable-shared
|
|
|
|
# do not use rpath
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
MAKEFLAGS="$MAKEFLAGS -j2" make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make -j1 install DESTDIR="$pkgdir"
|
|
|
|
mkdir -p "$pkgdir"/usr/include/libiptc \
|
|
"$pkgdir"/usr/lib \
|
|
"$pkgdir"/var/lib/iptables \
|
|
"$pkgdir"/etc/iptables
|
|
|
|
install -m644 include/iptables.h include/ip6tables.h \
|
|
"$pkgdir"/usr/include/
|
|
install include/libiptc/*.h "$pkgdir"/usr/include/libiptc/
|
|
|
|
install -D -m755 "$srcdir"/iptables.initd "$pkgdir"/etc/init.d/iptables
|
|
install -D -m644 "$srcdir"/iptables.confd "$pkgdir"/etc/conf.d/iptables
|
|
}
|
|
|
|
ip6tables() {
|
|
depends="iptables"
|
|
|
|
mkdir -p "$subpkgdir"
|
|
cd "$subpkgdir"
|
|
|
|
mkdir -p sbin \
|
|
var/lib/ip6tables \
|
|
usr/lib/xtables
|
|
|
|
mv "$pkgdir"/sbin/ip6* sbin/
|
|
mv "$pkgdir"/usr/lib/xtables/libip6* usr/lib/xtables/
|
|
|
|
install -D -m755 "$srcdir"/iptables.initd etc/init.d/ip6tables
|
|
install -D -m644 "$srcdir"/ip6tables.confd etc/conf.d/ip6tables
|
|
}
|
|
|
|
sha512sums="8cf0f515764e1dc6e03284581d682d1949b33e8f25fea29c27ae856f1089fe8ca7b1814524b85f4378fd1fc7c7c7d002f06557b257ae2bbc945f8555bad0dc76 iptables-1.8.2.tar.bz2
|
|
90a4fe20e8adba9a6a0890cccd70896493ddfa36d091cb62e95c0c940a99e32532b877474d53484a74e4aa385ba41a5c51dff485c382e39a0a00618989759196 iptables-1.8.2-musl-fixes.patch
|
|
059b3bd8dd7dec60060ec5eb1e639fe8203207629f3a7dd4fdbe5ebca3f7e9b80df5592ebb27542e31830fd15a53cffac5772567053c104dfccf9b78613a31a1 iptables.initd
|
|
cb7fecd5cab2c78bd3f215a41f39ec11c37eb360efbe83982378a0e647e0aa9dc0b7ec915a5b5081aa2f7747464787e69404aa15ba15a063c32cb8fb7dd13d1e iptables.confd
|
|
0897a7a22f8b700f7f1f5c355ad6cbf39740e44d6c962af99e479978d8a2d556ca7fe4e31f238829046b4a871ce0b5fd52e2544f1361d15dd1ea3e33992646c4 ip6tables.confd"
|