tweak ebtables package:
[10.03/openwrt.git] / openwrt / package / ebtables / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=ebtables
6 PKG_VERSION:=2.0.6
7 PKG_RELEASE:=2
8 PKG_MD5SUM:=c4559af2366c764c6c42a3fdd40d60d3
9
10 PKG_SOURCE_URL:=@SF/ebtables
11 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
12 PKG_CAT:=zcat
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/ebtables-v$(PKG_VERSION)
15
16 include $(TOPDIR)/package/rules.mk
17
18 $(eval $(call PKG_template,EBTABLES,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
19
20 $(PKG_BUILD_DIR)/.configured:
21         touch $@
22
23 $(PKG_BUILD_DIR)/.built:
24         $(MAKE) -C $(PKG_BUILD_DIR) \
25                 CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
26                 CFLAGS="$(TARGET_CFLAGS) -Wall"
27         touch $@
28
29 $(IPKG_EBTABLES):
30         install -d -m0755 $(IDIR_EBTABLES)/etc
31         install -m0644 $(PKG_BUILD_DIR)/ethertypes $(IDIR_EBTABLES)/etc/
32         install -d -m0755 $(IDIR_EBTABLES)/usr/sbin
33         install -m0755 $(PKG_BUILD_DIR)/ebtables $(IDIR_EBTABLES)/usr/sbin/
34         $(RSTRIP) $(IDIR_EBTABLES)
35         $(IPKG_BUILD) $(IDIR_EBTABLES) $(PACKAGE_DIR)