diff options
Diffstat (limited to 'iptables')
-rw-r--r-- | iptables/iptables_1.2.9.oe | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/iptables/iptables_1.2.9.oe b/iptables/iptables_1.2.9.oe index e69de29bb2..55af54b770 100644 --- a/iptables/iptables_1.2.9.oe +++ b/iptables/iptables_1.2.9.oe @@ -0,0 +1,17 @@ +DESCRIPTION = iptables network filtering tools +DEPENDS = virtual/libc +RDEPENDS = libc6 + +SRC_URI = http://www.netfilter.org/files/iptables-1.2.9.tar.bz2 + +S = "${WORKDIR}/iptables-1.2.9" + +do_compile () { + unset CFLAGS + oe_runmake PREFIX=${prefix} +} + +do_install () { + unset CFLAGS + oe_runmake PREFIX=${prefix} DESTDIR=${D} install +} |