diff options
author | marino <marino@FreeBSD.org> | 2014-11-05 05:11:12 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-11-05 05:11:12 +0800 |
commit | 48db221372fccab8374503a730413440bc894245 (patch) | |
tree | 4d6c2669f221c12892ed95097adeafeb485ec51d /net/miniupnpd | |
parent | 247d907ab7697a6f3536f7b122336b0782652feb (diff) | |
download | freebsd-ports-gnome-48db221372fccab8374503a730413440bc894245.tar.gz freebsd-ports-gnome-48db221372fccab8374503a730413440bc894245.tar.zst freebsd-ports-gnome-48db221372fccab8374503a730413440bc894245.zip |
net/miniupnpd: Upgrade version 1.8.20140523 => 1.8.20141022
PR: 193577
Submitted by: razzfazz (gmail)
Approved by: maintainer (Tor Halvard Furulund)
Diffstat (limited to 'net/miniupnpd')
-rw-r--r-- | net/miniupnpd/Makefile | 2 | ||||
-rw-r--r-- | net/miniupnpd/distinfo | 4 | ||||
-rw-r--r-- | net/miniupnpd/files/patch-Makefile | 51 |
3 files changed, 3 insertions, 54 deletions
diff --git a/net/miniupnpd/Makefile b/net/miniupnpd/Makefile index d7c6cf13fc91..86c2b395a7f0 100644 --- a/net/miniupnpd/Makefile +++ b/net/miniupnpd/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= miniupnpd -PORTVERSION= 1.8.20140523 +PORTVERSION= 1.8.20141022 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= http://miniupnp.tuxfamily.org/files/ \ diff --git a/net/miniupnpd/distinfo b/net/miniupnpd/distinfo index dd3396826999..32ec837dc2f2 100644 --- a/net/miniupnpd/distinfo +++ b/net/miniupnpd/distinfo @@ -1,2 +1,2 @@ -SHA256 (miniupnpd-1.8.20140523.tar.gz) = e72cd1e515aa9e6281e519e1814fe74e7689f5da71ce463a996a17e787ffe490 -SIZE (miniupnpd-1.8.20140523.tar.gz) = 190936 +SHA256 (miniupnpd-1.8.20141022.tar.gz) = e6dc0776b2af7adf815a893876617dcdbb569039844719b8d171c9209ab11ecb +SIZE (miniupnpd-1.8.20141022.tar.gz) = 191630 diff --git a/net/miniupnpd/files/patch-Makefile b/net/miniupnpd/files/patch-Makefile deleted file mode 100644 index 7ee99c33d946..000000000000 --- a/net/miniupnpd/files/patch-Makefile +++ /dev/null @@ -1,51 +0,0 @@ ---- Makefile.orig 2014-04-20 09:47:29.000000000 -0700 -+++ Makefile 2014-06-20 22:53:14.863342337 -0700 -@@ -15,7 +15,7 @@ - # $ CONFIG_OPTIONS="--ipv6 --igd2" make - # - --CFLAGS ?= -pipe -Os -+CFLAGS ?= -pipe - #CFLAGS = -pipe -O -g -DDEBUG - #CFLAGS += -ansi - CFLAGS += -Wall -@@ -45,25 +45,36 @@ - .endif - - # better way to find if we are using ipf or pf --.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - .if $(OSNAME) == "FreeBSD" -+.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - FWNAME != . /etc/rc.subr; . /etc/rc.conf; \ -- if checkyesno ipfilter_enable; then \ -+ if checkyesno firewall_enable; then \ -+ echo "ipfw"; elif checkyesno ipfilter_enable; then \ - echo "ipf"; elif checkyesno pf_enable; then \ -- echo "pf"; else echo "ipfw"; fi -+ echo "pf"; else echo "pf"; fi -+.else -+FWNAME = pf -+.endif - .endif - - .if $(OSNAME) == "NetBSD" -+.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - FWNAME != . /etc/rc.subr; . /etc/rc.conf; \ - if checkyesno ipfilter; then \ - echo "ipf"; else echo "pf"; fi -+.else -+FWNAME = pf -+.endif - .endif - - .if $(OSNAME) == "DragonFly" -+.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - FWNAME != . /etc/rc.subr; . /etc/rc.conf; \ - if checkyesno ipfilter; then \ - echo "ipf"; elif checkyesno pf_enable; then \ - echo "pf"; else echo "ipfw"; fi -+.else -+FWNAME = ipfw - .endif - .endif - |