Juergen Daubert
703c33f44e
ABI has been changed, rebuild of direct dependent ports like iproute2 required. See the announcement for more informations: https://lists.netfilter.org/pipermail/netfilter-announce/2015/000217.html Note: in the current port the iptables over nftables infrastructure is disabled because additional libraries are required for it to work. We will add these later on.
19 lines
481 B
Plaintext
19 lines
481 B
Plaintext
# Description: A Linux kernel packet filter control tool
|
|
# URL: http://www.iptables.org/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=iptables
|
|
version=1.6.0
|
|
release=1
|
|
source=(ftp://ftp.netfilter.org/pub/iptables/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--enable-libipq \
|
|
--disable-nftables
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|