summaryrefslogtreecommitdiffstats
path: root/recipes/iptables/iptables.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/iptables/iptables.inc')
-rw-r--r--recipes/iptables/iptables.inc33
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes/iptables/iptables.inc b/recipes/iptables/iptables.inc
new file mode 100644
index 0000000000..4868abb8ee
--- /dev/null
+++ b/recipes/iptables/iptables.inc
@@ -0,0 +1,33 @@
+DESCRIPTION = "iptables network filtering tools"
+HOMEPAGE = "http://www.netfilter.org/"
+SECTION = "console/utils"
+LICENSE = "GPL"
+
+SRC_URI = "http://netfilter.org/projects/iptables/files/iptables-${PV}.tar.bz2"
+S = "${WORKDIR}/iptables-${PV}"
+
+PARALLEL_MAKE = ""
+
+export COPT_FLAGS = "${CFLAGS}"
+export KERNEL_DIR = "${STAGING_INCDIR}"
+
+do_compile () {
+ unset CFLAGS
+ oe_runmake BINDIR=${D}${sbindir} LIBDIR=${D}${libdir} MANDIR=${D}${mandir} NO_SHARED_LIBS=1
+}
+
+do_install () {
+ unset CFLAGS
+ oe_runmake BINDIR=${D}${sbindir} LIBDIR=${D}${libdir} MANDIR=${D}${mandir} install NO_SHARED_LIBS=1
+}
+
+PACKAGES =+ "${PN}-utils"
+FILES_${PN}-utils = "${sbindir}/iptables-save ${sbindir}/iptables-restore"
+FILES_${PN}-doc += "${mandir}"
+
+RRECOMMENDS = "\
+ kernel-module-ip-tables \
+ kernel-module-iptable-nat \
+ kernel-module-iptable-filter \
+ kernel-module-ipt-masquerade \
+"