mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
- Update to version 1.6 [1]
- Respect global CFLAGS during build - Mark MAKE_JOBS_UNSAFE PR: ports/167770 [1] Submitted by: Tor Halvard Furulund <squat@squat.no> (maintainer) [1]
This commit is contained in:
parent
457c1da57d
commit
01ecacedda
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=296444
3 changed files with 17 additions and 7 deletions
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= miniupnpd
|
PORTNAME= miniupnpd
|
||||||
PORTVERSION= 1.5
|
PORTVERSION= 1.6
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
MASTER_SITES= http://miniupnp.tuxfamily.org/files/ \
|
MASTER_SITES= http://miniupnp.tuxfamily.org/files/ \
|
||||||
|
@ -21,12 +21,13 @@ SUB_LIST= UUID=${UUID}
|
||||||
UUID!= uuidgen
|
UUID!= uuidgen
|
||||||
FWNAME?= pf
|
FWNAME?= pf
|
||||||
PLIST_FILES= etc/miniupnpd.conf.sample sbin/miniupnpd
|
PLIST_FILES= etc/miniupnpd.conf.sample sbin/miniupnpd
|
||||||
|
MAKE_JOBS_UNSAFE=yes
|
||||||
|
|
||||||
MAN8= miniupnpd.8
|
MAN8= miniupnpd.8
|
||||||
|
|
||||||
USE_RC_SUBR= miniupnpd.sh
|
USE_RC_SUBR= miniupnpd.sh
|
||||||
|
|
||||||
OPTIONS= PF_ENABLE_FILTER_RULES "Enable pf generation of filter rules" off \
|
OPTIONS= PF_ENABLE_FILTER_RULES "Enable pf generation of filter rules" off
|
||||||
|
|
||||||
.include <bsd.port.options.mk>
|
.include <bsd.port.options.mk>
|
||||||
.if defined(WITH_PF_ENABLE_FILTER_RULES)
|
.if defined(WITH_PF_ENABLE_FILTER_RULES)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (miniupnpd-1.5.tar.gz) = 402db10f46d23ffcafbb655ad7333daf1271fb115f92aa293e22cc974fa8da30
|
SHA256 (miniupnpd-1.6.tar.gz) = a26744025038a207d96a2dce96aa76db095886eb68dee87321b9da55cb1c8585
|
||||||
SIZE (miniupnpd-1.5.tar.gz) = 98993
|
SIZE (miniupnpd-1.6.tar.gz) = 124917
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
--- Makefile.orig 2009-11-06 08:23:18.000000000 +0800
|
--- Makefile.orig 2011-05-27 00:49:17.000000000 +0200
|
||||||
+++ Makefile 2009-11-06 08:23:31.000000000 +0800
|
+++ Makefile 2012-05-11 19:42:37.000000000 +0200
|
||||||
@@ -25,10 +25,12 @@
|
@@ -11,7 +11,7 @@
|
||||||
|
# Linux users, please use Makefile.linux :
|
||||||
|
# make -f Makefile.linux
|
||||||
|
|
||||||
|
-CFLAGS = -pipe -Wall -Os
|
||||||
|
+CFLAGS += -pipe -Wall
|
||||||
|
#CFLAGS = -pipe -Wall -O -g -DDEBUG
|
||||||
|
CC ?= gcc
|
||||||
|
RM = rm -f
|
||||||
|
@@ -32,10 +32,12 @@
|
||||||
|
|
||||||
# better way to find if we are using ipf or pf
|
# better way to find if we are using ipf or pf
|
||||||
.if $(OSNAME) == "FreeBSD"
|
.if $(OSNAME) == "FreeBSD"
|
||||||
|
|
Loading…
Add table
Reference in a new issue