diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-10-01 19:53:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-10-01 19:53:36 +0000 |
commit | 874198ef2a03bbc584f95e69f2ec1116f306fc32 (patch) | |
tree | 809214261fb156452e590b2b811d5b504c18c6c9 /package | |
parent | d712c45e308971372b80d057b8c043015d755c2e (diff) | |
download | upstream-874198ef2a03bbc584f95e69f2ec1116f306fc32.tar.gz upstream-874198ef2a03bbc584f95e69f2ec1116f306fc32.tar.bz2 upstream-874198ef2a03bbc584f95e69f2ec1116f306fc32.zip |
Split ebtables into ebtables and ebtables-utils, bump release number
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12818 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/ebtables/Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/package/ebtables/Makefile b/package/ebtables/Makefile index aef4285d28..05e0169b9e 100644 --- a/package/ebtables/Makefile +++ b/package/ebtables/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ebtables PKG_VERSION:=2.0.8-2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/ebtables @@ -28,6 +28,11 @@ define Package/ebtables URL:=http://ebtables.sourceforge.net/ endef +define Package/ebtables-utils + $(call Package/ebtables) + TITLE:=ebtables save/restore utilities +endef + define Package/ebtables/description The ebtables program is a filtering tool for a bridging firewall. The filtering is focussed on the Link Layer Ethernet frame fields. Apart @@ -35,6 +40,10 @@ define Package/ebtables/description addresses and implement a brouter. endef +define Package/ebtables-utils/description + $(call Package/ebtables/description) +endef + MAKE_FLAGS += \ CFLAGS="$(TARGET_CFLAGS)" \ LIBDIR="/usr/lib/ebtables" @@ -47,8 +56,12 @@ define Package/ebtables/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/extensions/*.so $(1)/usr/lib/ebtables/ $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/ebtables $(1)/usr/sbin/ +endef + +define Package/ebtables-utils/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/ebtables-save $(1)/usr/sbin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/ebtables-restore $(1)/usr/sbin/ endef $(eval $(call BuildPackage,ebtables)) +$(eval $(call BuildPackage,ebtables-utils)) |