license info - revert r43155
[openwrt/openwrt.git] / package / network / config / firewall / Makefile
1 #
2 # Copyright (C) 2013-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=firewall
11 PKG_VERSION:=2014-09-19
12 PKG_RELEASE:=$(PKG_SOURCE_VERSION)
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=git://nbd.name/firewall3.git
16 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17 PKG_SOURCE_VERSION:=50e97c52e75bdfd325cf20d43b32d294ff84d92f
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
19 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
20 PKG_LICENSE:=ISC
21
22
23 include $(INCLUDE_DIR)/package.mk
24 include $(INCLUDE_DIR)/cmake.mk
25
26 define Package/firewall
27 SECTION:=net
28 CATEGORY:=Base system
29 TITLE:=OpenWrt C Firewall
30 DEPENDS:=+libubox +libubus +libuci +libip4tc +IPV6:libip6tc +libxtables +kmod-ipt-core +kmod-ipt-nat
31 endef
32
33 define Package/firewall/description
34 This package provides a config-compatible C implementation of the UCI firewall.
35 endef
36
37 define Package/firewall/conffiles
38 /etc/config/firewall
39 /etc/firewall.user
40 endef
41
42 define Build/Configure
43 $(foreach file,$(wildcard $(STAGING_DIR)/usr/lib/iptables/libext*.a),$(CP) $(file) $(PKG_BUILD_DIR)/$(notdir $(file));)
44 $(call Build/Configure/Default)
45 endef
46
47 TARGET_CFLAGS += -ffunction-sections -fdata-sections
48 TARGET_LDFLAGS += -Wl,--gc-sections
49 CMAKE_OPTIONS += $(if $(CONFIG_IPV6),,-DDISABLE_IPV6=1)
50
51 define Package/firewall/install
52 $(INSTALL_DIR) $(1)/sbin
53 $(INSTALL_BIN) $(PKG_BUILD_DIR)/firewall3 $(1)/sbin/fw3
54 $(INSTALL_DIR) $(1)/etc/init.d
55 $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
56 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
57 $(INSTALL_DATA) ./files/firewall.hotplug $(1)/etc/hotplug.d/iface/20-firewall
58 $(INSTALL_DIR) $(1)/etc/config/
59 $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
60 $(INSTALL_DIR) $(1)/etc/
61 $(INSTALL_DATA) ./files/firewall.user $(1)/etc/firewall.user
62 endef
63
64 $(eval $(call BuildPackage,firewall))