2010-05-21 18:23:02 +03:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-07-30 20:53:04 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=arptables
|
2010-05-21 18:23:02 +03:00
|
|
|
PKG_VERSION:=0.0.3-4
|
2006-07-30 20:53:04 +03:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
|
2006-09-23 15:24:07 +03:00
|
|
|
PKG_SOURCE_URL:=@SF/ebtables
|
2010-05-21 18:23:02 +03:00
|
|
|
PKG_MD5SUM:=1d4ab05761f063b0751645d8f2b8f8e5
|
2006-07-30 20:53:04 +03:00
|
|
|
|
2006-09-24 23:49:31 +03:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
|
|
|
|
|
2006-07-30 20:53:04 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/arptables
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=ARP firewalling software
|
2006-11-19 00:54:13 +02:00
|
|
|
DEPENDS:=+kmod-arptables
|
2006-07-30 20:53:04 +03:00
|
|
|
URL:=http://ebtables.sourceforge.net
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-08-19 00:21:06 +03:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2006-07-30 20:53:04 +03:00
|
|
|
COPT_FLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
KERNEL_DIR="./include/linux"
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/arptables/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2006-07-30 20:53:04 +03:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,arptables))
|