23 lines
666 B
Plaintext
23 lines
666 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.4.20
|
|
release=1
|
|
source=(ftp://ftp.netfilter.org/pub/iptables/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libexecdir=/usr/lib \
|
|
--enable-libipq
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
# Install connlabel.conf unconditionally
|
|
# http://bugzilla.netfilter.org/show_bug.cgi?id=828
|
|
#install -D -m 0644 etc/xtables/connlabel.conf $PKG/etc/xtables/connlabel.conf
|
|
}
|