aboutsummaryrefslogtreecommitdiff
path: root/net/miniupnpd
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-11-04 21:11:12 +0000
committerJohn Marino <marino@FreeBSD.org>2014-11-04 21:11:12 +0000
commit8829d0f92267449ff66706a9c239bfa84769cb3b (patch)
tree4d6c2669f221c12892ed95097adeafeb485ec51d /net/miniupnpd
parentd0a8ed3d7497caaf3e082a723f2ca292a56a03f6 (diff)
downloadports-8829d0f92267449ff66706a9c239bfa84769cb3b.tar.gz
ports-8829d0f92267449ff66706a9c239bfa84769cb3b.zip
Notes
Diffstat (limited to 'net/miniupnpd')
-rw-r--r--net/miniupnpd/Makefile2
-rw-r--r--net/miniupnpd/distinfo4
-rw-r--r--net/miniupnpd/files/patch-Makefile51
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
-