2005-03-21 10:12:49 +02:00
|
|
|
# $Id$
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ebtables
|
|
|
|
PKG_VERSION:=2.0.6
|
2006-05-24 10:00:32 +03:00
|
|
|
PKG_RELEASE:=2
|
2005-03-21 10:12:49 +02:00
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/ebtables-v$(PKG_VERSION)
|
2006-05-10 02:20:58 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/ebtables
|
|
|
|
PKG_MD5SUM:=c4559af2366c764c6c42a3fdd40d60d3
|
2005-03-06 05:34:52 +02:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
2005-05-12 22:50:04 +03:00
|
|
|
include $(TOPDIR)/package/rules.mk
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-05-10 02:20:58 +03:00
|
|
|
define Package/ebtables
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Ethernet bridge firewall administration utility
|
|
|
|
DESCRIPTION:=Ethernet Bridge Firewalling (ebtables)
|
|
|
|
URL:=http://ebtables.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ebtables/install
|
2006-05-24 10:00:32 +03:00
|
|
|
install -d -m0755 $(1)/etc
|
|
|
|
install -m0644 $(PKG_BUILD_DIR)/ethertypes $(1)/etc/
|
2006-05-11 19:00:43 +03:00
|
|
|
install -d -m0755 $(1)/usr/sbin
|
2006-05-24 10:00:32 +03:00
|
|
|
install -m0755 $(PKG_BUILD_DIR)/ebtables $(1)/usr/sbin/
|
2006-05-10 22:16:02 +03:00
|
|
|
endef
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-05-10 02:20:58 +03:00
|
|
|
$(eval $(call BuildPackage,ebtables))
|