382031c5c2
It also includes the following changes: * use the shorewall "restore" action (very quick) if available in the initscript's restart action * modify the 110-MODULESDIR.patch to include /lib/modules/$(uname -r) in the module search path * include an iface hotplug action to reload the ruleset on interface transitions Signed-off-by: Brian J. Murrell <brian@interlinx.bc.ca> git-svn-id: svn://svn.openwrt.org/openwrt/packages@18737 3c298f89-4303-0410-b956-a3cf2f4a3e73
66 lines
2.1 KiB
Makefile
66 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=shorewall-lite
|
|
PKG_VERSION:=4.2.11
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=http://www.shorewall.net/pub/shorewall/4.2/shorewall-$(PKG_VERSION)/ \
|
|
http://www1.shorewall.net/pub/shorewall/4.2/shorewall-$(PKG_VERSION)/ \
|
|
http://slovakia.shorewall.net/pub/shorewall/4.2/shorewall-$(PKG_VERSION)/ \
|
|
http://shorewall.de/pub/shorewall/4.2/shorewall-$(PKG_VERSION)/ \
|
|
http://www.shorewall.com.au/4.2/shorewall-$(PKG_VERSION)/ \
|
|
http://shorewall.infohiiway.com/pub/shorewall/4.2/shorewall-$(PKG_VERSION)/ \
|
|
http://www.shorewall.com.ar/pub/shorewall/shorewall/4.2/shorewall-$(PKG_VERSION)/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_MD5SUM:=cb34824f076fdff6b7457d85e124ea74
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/shorewall-lite
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+ip +iptables +iptables-utils
|
|
TITLE:=Shorewall Lite
|
|
URL:=http://www.shorewall.net/
|
|
SUBMENU:=firewall
|
|
endef
|
|
|
|
define Package/shorewall-lite/description
|
|
Shoreline Firewall Lite is an iptables-based firewall for Linux systems.
|
|
endef
|
|
|
|
define Package/shorewall-lite/conffiles
|
|
/etc/shorewall-lite/shorewall-lite.conf
|
|
/etc/shorewall-lite/vardir
|
|
endef
|
|
|
|
define Build/Compile
|
|
rm -rf $(PKG_INSTALL_DIR)
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
PREFIX=$(PKG_INSTALL_DIR) $(PKG_BUILD_DIR)/install.sh
|
|
endef
|
|
|
|
define Package/shorewall-lite/install
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
$(INSTALL_DIR) $(1)/etc/shorewall-lite
|
|
$(INSTALL_DIR) $(1)/usr/share
|
|
$(INSTALL_BIN) ./files/shorewall-lite.init $(1)/etc/init.d/shorewall-lite
|
|
$(INSTALL_BIN) ./files/hotplug_iface $(1)/etc/hotplug.d/iface/05-shorewall-lite
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/shorewall-lite $(1)/sbin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/share/shorewall-lite $(1)/usr/share
|
|
$(INSTALL_BIN) ./files/hostname $(1)/usr/share/shorewall-lite
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/shorewall-lite $(1)/etc
|
|
$(CP) ./files/vardir $(1)/etc/shorewall-lite
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,shorewall-lite))
|