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