2013-02-18 03:26:52 +08:00
|
|
|
#
|
2014-02-21 07:20:10 +08:00
|
|
|
# Copyright (C) 2013-2014 OpenWrt.org
|
2013-02-18 03:26:52 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2013-06-04 20:21:52 +08:00
|
|
|
PKG_NAME:=firewall
|
2014-07-11 00:44:20 +08:00
|
|
|
PKG_VERSION:=2014-07-10a
|
2013-02-18 03:26:52 +08:00
|
|
|
PKG_RELEASE:=$(PKG_SOURCE_VERSION)
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2013-06-04 20:23:47 +08:00
|
|
|
PKG_SOURCE_URL:=git://nbd.name/firewall3.git
|
2013-02-18 03:26:52 +08:00
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
2014-07-11 00:44:20 +08:00
|
|
|
PKG_SOURCE_VERSION:=0aaf63b89efb27bfa370aabc7550de10335abbe3
|
2013-02-18 03:26:52 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
|
|
|
|
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
2013-06-04 20:21:52 +08:00
|
|
|
define Package/firewall
|
2013-02-18 03:26:52 +08:00
|
|
|
SECTION:=net
|
2013-06-04 20:21:52 +08:00
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=OpenWrt C Firewall
|
2013-07-10 19:33:48 +08:00
|
|
|
DEPENDS:=+libubox +libubus +libuci +libip4tc +IPV6:libip6tc +libxtables +kmod-ipt-core +kmod-ipt-nat
|
2013-02-18 03:26:52 +08:00
|
|
|
endef
|
|
|
|
|
2013-06-04 20:21:52 +08:00
|
|
|
define Package/firewall/description
|
2013-02-18 03:26:52 +08:00
|
|
|
This package provides a config-compatible C implementation of the UCI firewall.
|
|
|
|
endef
|
|
|
|
|
2013-06-04 20:21:52 +08:00
|
|
|
define Package/firewall/conffiles
|
2013-03-05 21:45:09 +08:00
|
|
|
/etc/config/firewall
|
|
|
|
/etc/firewall.user
|
|
|
|
endef
|
|
|
|
|
2013-05-27 23:13:19 +08:00
|
|
|
define Build/Configure
|
2013-06-06 22:02:29 +08:00
|
|
|
$(foreach file,$(wildcard $(STAGING_DIR)/usr/lib/iptables/libext*.a),$(CP) $(file) $(PKG_BUILD_DIR)/$(notdir $(file));)
|
2013-05-27 23:13:19 +08:00
|
|
|
$(call Build/Configure/Default)
|
2013-05-21 18:15:14 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
2013-05-24 20:49:06 +08:00
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections
|
2013-05-27 23:13:19 +08:00
|
|
|
CMAKE_OPTIONS += $(if $(CONFIG_IPV6),,-DDISABLE_IPV6=1)
|
2013-05-21 18:15:14 +08:00
|
|
|
|
2013-06-04 20:21:52 +08:00
|
|
|
define Package/firewall/install
|
2013-02-18 03:26:52 +08:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
2013-06-04 20:30:50 +08:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/firewall3 $(1)/sbin/fw3
|
2013-02-18 03:26:52 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
|
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
|
|
$(INSTALL_DATA) ./files/firewall.hotplug $(1)/etc/hotplug.d/iface/20-firewall
|
2013-03-05 21:45:09 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config/
|
|
|
|
$(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
|
|
|
|
$(INSTALL_DIR) $(1)/etc/
|
|
|
|
$(INSTALL_DATA) ./files/firewall.user $(1)/etc/firewall.user
|
2013-02-18 03:26:52 +08:00
|
|
|
endef
|
|
|
|
|
2013-06-04 20:21:52 +08:00
|
|
|
$(eval $(call BuildPackage,firewall))
|