Port arptables to -ng
SVN-Revision: 4340
This commit is contained in:
parent
b4e7510acf
commit
241ab4e10c
3 changed files with 59 additions and 0 deletions
9
openwrt/package/arptables/Config.in
Normal file
9
openwrt/package/arptables/Config.in
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
config BR2_PACKAGE_ARPTABLES
|
||||||
|
prompt "arptables......................... ARP firewall administration utility"
|
||||||
|
tristate
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
ARP Firewalling (arptables)
|
||||||
|
|
||||||
|
http://ebtables.sourceforge.net/
|
||||||
|
|
46
openwrt/package/arptables/Makefile
Normal file
46
openwrt/package/arptables/Makefile
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# Copyright (C) 2006 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=arptables
|
||||||
|
PKG_VERSION:=0.0.3
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=1672244603c8979577aa4738be35a759
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=@SF/ebtables
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/arptables
|
||||||
|
SECTION:=net
|
||||||
|
CATEGORY:=Network
|
||||||
|
TITLE:=ARP firewalling software
|
||||||
|
DESCRIPTION:=ARP firewalling software
|
||||||
|
URL:=http://ebtables.sourceforge.net
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
|
||||||
|
COPT_FLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
KERNEL_DIR="./include/linux"
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/arptables/install
|
||||||
|
install -m0755 -d $(1)/usr/sbin
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,arptables))
|
4
openwrt/package/arptables/ipkg/arptables.control
Normal file
4
openwrt/package/arptables/ipkg/arptables.control
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Package: arptables
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Description: ARP firewalling software
|
Loading…
Reference in a new issue