Split ebtables into ebtables and ebtables-utils, bump release number
SVN-Revision: 12818
This commit is contained in:
parent
b4e9e7ae45
commit
9ce3b1ade7
1 changed files with 14 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue