diff options
author | Brian J. Murrell <brian@interlinx.bc.ca> | 2017-12-06 17:50:13 -0500 |
---|---|---|
committer | Brian J. Murrell <brian@interlinx.bc.ca> | 2017-12-07 21:26:03 -0500 |
commit | 5d3d2f46540f1120cea19cc1ae46634dc1ad3696 (patch) | |
tree | e45c9a22e6f0408bf2f572fe1ecd104a1ae42412 /net/shorewall-lite/Makefile | |
parent | eef2998ffa62494fe2c42843e5a9103e2d4d2e5e (diff) |
shorewall-lite: Multiple source sources
Maintainer: @wvdakker
Description:
Specify multiple sources for fetching the source tarball
for redundancy.
Pulled out of a historical version of these packages before
they were removed a while ago.
Signed-off-by: Brian J. Murrell <brian@interlinx.bc.ca>
Diffstat (limited to 'net/shorewall-lite/Makefile')
-rw-r--r-- | net/shorewall-lite/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/net/shorewall-lite/Makefile b/net/shorewall-lite/Makefile index 7f1648f7e..4cd90dcf8 100644 --- a/net/shorewall-lite/Makefile +++ b/net/shorewall-lite/Makefile @@ -9,12 +9,18 @@ include $(TOPDIR)/rules.mk PKG_NAME:=shorewall-lite -PKG_VERSION:=5.1.8.1 -PKG_DIRECTORY:=5.1 -PKG_MAINVERSION:=5.1.8 +PKG_MAJOR_MINOR_VERSION:=5.1 +PKG_BUGFIX_MAJOR_VERSION:=8 +PKG_BUGFIX_MINOR_VERSION:=.1 +PKG_VERSION:=$(PKG_MAJOR_MINOR_VERSION).$(PKG_BUGFIX_MAJOR_VERSION)$(PKG_BUGFIX_MINOR_VERSION) +PKG_DIRECTORY:=$(PKG_MAJOR_MINOR_VERSION).$(PKG_BUGFIX_MAJOR_VERSION) PKG_RELEASE:=1 -PKG_SOURCE_URL:=http://www.shorewall.net/pub/shorewall/$(PKG_DIRECTORY)/shorewall-$(PKG_MAINVERSION)/ +PKG_SOURCE_URL:=http://www.shorewall.net/pub/shorewall/$(PKG_MAJOR_MINOR_VERSION)/shorewall-$(PKG_DIRECTORY)/ \ + http://www1.shorewall.net/pub/shorewall/$(PKG_MAJOR_MINOR_VERSION)/shorewall-$(PKG_DIRECTORY)/ \ + http://slovakia.shorewall.net/pub/shorewall/$(PKG_MAJOR_MINOR_VERSION)/shorewall-$(PKG_DIRECTORY)/ \ + http://shorewall.de/pub/shorewall/$(PKG_MAJOR_MINOR_VERSION)/shorewall-$(PKG_DIRECTORY)/ \ + http://www.shorewall.com.au/$(PKG_MAJOR_MINOR_VERSION)/shorewall-$(PKG_DIRECTORY)/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_HASH:=2efc424c1d4f737618f91864ba8e618328605514965e497660ee0ac9020b6048 |