1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 20:31:07 +03:00

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
This commit is contained in:
florian 2008-10-01 19:53:36 +00:00
parent 142b9d1d3d
commit 1f14cd6ff3

View File

@ -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))