disable entropy gathering in wlcompat-debug
[openwrt/svn-archive/archive.git] / package / arptables / Makefile
1 # Copyright (C) 2006 OpenWrt.org
2 #
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5 #
6 # $Id$
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=arptables
11 PKG_VERSION:=0.0.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/ebtables
16 PKG_MD5SUM:=1672244603c8979577aa4738be35a759
17 PKG_CAT:=zcat
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/arptables
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=ARP firewalling software
27 URL:=http://ebtables.sourceforge.net
28 endef
29
30 define Build/Compile
31 $(MAKE) -C $(PKG_BUILD_DIR) \
32 $(TARGET_CONFIGURE_OPTS) \
33 COPT_FLAGS="$(TARGET_CFLAGS)" \
34 KERNEL_DIR="./include/linux"
35 endef
36
37 define Package/arptables/install
38 install -m0755 -d $(1)/usr/sbin
39 $(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
40 endef
41
42 $(eval $(call BuildPackage,arptables))