9800e043029b2224d7794d2c37618e069a691270
[openwrt/openwrt.git] / package / network / config / firewall / Makefile
1 #
2 # Copyright (C) 2013-2016 OpenWrt.org
3 # Copyright (C) 2016 LEDE project
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=firewall
12 PKG_RELEASE:=2
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL=$(LEDE_GIT)/project/firewall3.git
16 PKG_SOURCE_DATE:=2017-05-26
17 PKG_SOURCE_VERSION:=3d2c18a91bb7cd5f3c0dec7fecf3008934de170b
18 PKG_MIRROR_HASH:=9ec083798e09a9062664bc89a93f2f14d98bb811fb7ec67d47b66bf3a85bcc74
19 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
20 PKG_LICENSE:=ISC
21
22 PKG_CONFIG_DEPENDS := CONFIG_IPV6
23
24 include $(INCLUDE_DIR)/package.mk
25 include $(INCLUDE_DIR)/cmake.mk
26
27 define Package/firewall
28 SECTION:=net
29 CATEGORY:=Base system
30 TITLE:=OpenWrt C Firewall
31 DEPENDS:=+libubox +libubus +libuci +libip4tc +IPV6:libip6tc +libxtables +kmod-ipt-core +kmod-ipt-conntrack +kmod-ipt-nat
32 endef
33
34 define Package/firewall/description
35 This package provides a config-compatible C implementation of the UCI firewall.
36 endef
37
38 define Package/firewall/conffiles
39 /etc/config/firewall
40 /etc/firewall.user
41 endef
42
43 TARGET_CFLAGS += -ffunction-sections -fdata-sections
44 TARGET_LDFLAGS += -Wl,--gc-sections
45 CMAKE_OPTIONS += $(if $(CONFIG_IPV6),,-DDISABLE_IPV6=1)
46
47 define Package/firewall/install
48 $(INSTALL_DIR) $(1)/sbin
49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/firewall3 $(1)/sbin/fw3
50 $(INSTALL_DIR) $(1)/etc/init.d
51 $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
52 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
53 $(INSTALL_DATA) ./files/firewall.hotplug $(1)/etc/hotplug.d/iface/20-firewall
54 $(INSTALL_DIR) $(1)/etc/config/
55 $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
56 $(INSTALL_DIR) $(1)/etc/
57 $(INSTALL_DATA) ./files/firewall.user $(1)/etc/firewall.user
58 endef
59
60 $(eval $(call BuildPackage,firewall))