Merge pull request #4732 from hashashin/bash-4.4.12
[feed/packages.git] / net / shorewall6-lite / Makefile
1 #
2 # Copyright (C) 2008-2012 OpenWrt.org
3 # Copyright (C) 2017 Willem van den Akker <wvdakker@wilsoft.nl>
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:=shorewall6-lite
12 PKG_VERSION:=5.1.4.1
13 PKG_DIRECTORY:=5.1
14 PKG_MAINVERSION:=5.1.4
15 PKG_RELEASE:=2
16
17 PKG_SOURCE_URL:=http://www.shorewall.net/pub/shorewall/$(PKG_DIRECTORY)/shorewall-$(PKG_MAINVERSION)/
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
19 PKG_HASH:=29a2f2be295b4f995b38e663b771660ccdc6321134bcfbd0f9378f9bb1237e3c
20
21 PKG_MAINTAINER:=Willem van den Akker <wvdakker@wilsoft.nl>
22 PKG_LICENSE:=GPL-2.0+
23 PKG_LICENSE_FILES:=COPYING
24
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/shorewall6-lite
29 SECTION:=net
30 CATEGORY:=Network
31 DEPENDS:=+ip +ip6tables +shorewall-core
32 TITLE:=Shorewall6 Lite
33 URL:=http://www.shorewall.net/
34 SUBMENU:=Firewall
35 endef
36
37 define Package/shorewall6-lite/description
38 The Shoreline Firewall, is high-level tool for configuring Netfilter.
39
40 Shorewall6 allows for central administration of multiple IPv6 firewalls
41 through use of Shorewall6 lite. The full Shorewall6 product is installed
42 on a central administrative system where compiled Shorewall6 scripts are
43 generated. These scripts are copied to the firewall systems where they
44 run under the control of Shorewall6-lite.
45
46 Note: This is the IPv6 implementation of Shorewall.
47 endef
48
49 define Package/shorewall6-lite/conffiles
50 /etc/shorewall6-lite/shorewall6-lite.conf
51 /etc/shorewall6-lite/vardir
52 endef
53
54 CONFIGURE_ARGS += \
55 vendor=openwrt
56
57 define Build/Compile
58 DESTDIR=$(PKG_INSTALL_DIR) $(PKG_BUILD_DIR)/install.sh
59 endef
60
61 define Package/shorewall6-lite/install
62 $(INSTALL_DIR) $(1)/usr/sbin
63 $(INSTALL_DIR) $(1)/etc/init.d
64 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
65 $(INSTALL_DIR) $(1)/etc/shorewall6-lite/state
66 $(INSTALL_DIR) $(1)/usr/share
67 $(INSTALL_BIN) ./files/hotplug_iface $(1)/etc/hotplug.d/iface/05-shorewall6-lite
68 $(CP) $(PKG_INSTALL_DIR)/usr/share/shorewall6-lite $(1)/usr/share
69 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/shorewall6-lite $(1)/usr/sbin
70 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/shorewall6-lite/shorecap $(1)/usr/share/shorewall6-lite
71 $(INSTALL_BIN) ./files/hostname $(1)/usr/share/shorewall6-lite
72 $(CP) $(PKG_INSTALL_DIR)/etc/shorewall6-lite $(1)/etc
73 $(CP) $(PKG_INSTALL_DIR)/etc/init.d $(1)/etc
74 $(CP) ./files/vardir $(1)/etc/shorewall6-lite
75 endef
76
77 $(eval $(call BuildPackage,shorewall6-lite))