summaryrefslogtreecommitdiffstats
path: root/package/iptables
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-05 21:40:11 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-05 21:40:11 +0000
commit55807e35d6b4188a49b2b7544cd545a039e23da6 (patch)
treec85fb60d532dcdd35e44a3b7039500d26b0ab345 /package/iptables
parent7459ff18ad2a8f4571c7ed4da9a02e192678a630 (diff)
Package ip6tables-utils as well (#2318)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8636 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables')
-rw-r--r--package/iptables/Makefile15
1 files changed, 14 insertions, 1 deletions
diff --git a/package/iptables/Makefile b/package/iptables/Makefile
index 83f615250..70b6161ce 100644
--- a/package/iptables/Makefile
+++ b/package/iptables/Makefile
@@ -181,6 +181,13 @@ define Package/ip6tables
TITLE:=IPv6 firewall administration tool
endef
+define Package/ip6tables-utils
+ $(call Package/iptables/Default)
+ DEPENDS:=ip6tables
+ CATEGORY:=Network
+ TITLE:=ip6tables save and restore utilities
+endef
+
define Build/Configure
rm -f $(PKG_BUILD_DIR)/.configured*
$(MAKE) -C $(PKG_BUILD_DIR) \
@@ -196,7 +203,7 @@ define Build/Compile
LDFLAGS="-rdynamic -static-libgcc" \
KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
DESTDIR="$(PKG_INSTALL_DIR)" \
- all install
+ all experimental install install-experimental
endef
define Build/InstallDev
@@ -252,6 +259,11 @@ define Package/ip6tables/install
)
endef
+define Package/ip6tables-utils/install
+ $(INSTALL_DIR) $(1)/usr/sbin
+ $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables-{save,restore} $(1)/usr/sbin/
+endef
+
define BuildPlugin
define Package/$(1)/install
$(INSTALL_DIR) $$(1)/usr/lib/iptables
@@ -281,3 +293,4 @@ $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
$(eval $(call BuildPlugin,iptables-mod-iprange,$(IPT_IPRANGE-m)))
$(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
$(eval $(call BuildPackage,ip6tables))
+$(eval $(call BuildPackage,ip6tables-utils))