summaryrefslogtreecommitdiff
path: root/package/ebtables
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-11-29 12:46:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-11-29 12:46:11 +0100
commitd89c077bd8905bdd079d69b11bedc1eb440067b9 (patch)
tree2c7bd2a8b642bd1ba0383adc4259bfe53b8515ec /package/ebtables
parent706b94b351d574c66f9a6142f5bcae33a98274f3 (diff)
add etables, finetune squid package, more busybox finetuning
Diffstat (limited to 'package/ebtables')
-rw-r--r--package/ebtables/Config.in6
-rw-r--r--package/ebtables/Makefile28
2 files changed, 34 insertions, 0 deletions
diff --git a/package/ebtables/Config.in b/package/ebtables/Config.in
new file mode 100644
index 000000000..7e78aeedd
--- /dev/null
+++ b/package/ebtables/Config.in
@@ -0,0 +1,6 @@
+config ADK_PACKAGE_EBTABLES
+ prompt "ebtables.......................... Ethernet bridging firewall tool"
+ tristate
+ default n
+ help
+ http://ebtables.sourceforge.net/
diff --git a/package/ebtables/Makefile b/package/ebtables/Makefile
new file mode 100644
index 000000000..8499b12e9
--- /dev/null
+++ b/package/ebtables/Makefile
@@ -0,0 +1,28 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= iptables
+PKG_VERSION:= 2.0.9
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 44f13990132c20299c1994cd6f425140
+PKG_DESCR:= ethernet bridging firewall tool
+PKG_SECTION:= net
+PKG_URL:= http://ebtables.sourceforge.net
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=ebtables/}
+
+DISTFILES:= ${PKG_NAME}-v${PKG_VERSION}-1.tar.gz
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,EBTABLES,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_EBTABLES}/usr/sbin
+
+include ${TOPDIR}/mk/pkg-bottom.mk