You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.9 KiB

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