firewall: depend on kmod-nf-conntrack6
[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=$(PROJECT_GIT)/project/firewall3.git
16 PKG_SOURCE_DATE:=2017-11-07
17 PKG_SOURCE_VERSION:=c4309372acc7e1bef8aa230269f7da1dec790e68
18 PKG_MIRROR_HASH:=1699884d8499d01e433959185f79ff9eb69704de47885b996123374b8015b422
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 +IPV6:kmod-nf-conntrack6 +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))