diff options
author | Renato Botelho <garga@FreeBSD.org> | 2015-09-19 12:20:32 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2015-09-19 12:20:32 +0000 |
commit | 4476787a1812f8a15f1fe9a862d36176a5f89df8 (patch) | |
tree | a300aeb10ed39b698c3b5bcc61c5422dfc17b663 /net/miniupnpd/Makefile | |
parent | 4e7dc1cf18fc93b30ceae1ee8ddffc51c2804ff6 (diff) | |
download | ports-4476787a1812f8a15f1fe9a862d36176a5f89df8.tar.gz ports-4476787a1812f8a15f1fe9a862d36176a5f89df8.zip |
- Update net/miniupnpd to 1.9.20150721 [1]
- Stop calling uuidgen on port Makefile, miniupnpd Makefile already does it
- Do not modify CFLAGS since it's already attributed using ?=
- Remove do-install: target from ports Makefile, let miniupnpd Makefile
installs it
- Patch miniupnpd Makefile to install conf with .sample suffix
- Patch miniupnpd Makefile to install manpage in the proper place, respecting
MANPREFIX
PR: 203191 [1]
Submitted by: Tor Halvard Furulund <squat@squat.no> [1]
Approved by: Tor Halvard Furulund <squat@squat.no> (maintainer)
Sponsored by: Rubicon Communications (Netgate)
Notes
Notes:
svn path=/head/; revision=397321
Diffstat (limited to 'net/miniupnpd/Makefile')
-rw-r--r-- | net/miniupnpd/Makefile | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/net/miniupnpd/Makefile b/net/miniupnpd/Makefile index adba2f60b24b..3b64596096d1 100644 --- a/net/miniupnpd/Makefile +++ b/net/miniupnpd/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= miniupnpd -PORTVERSION= 1.9 -PORTREVISION= 1 +PORTVERSION= 1.9.20150721 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= http://miniupnp.tuxfamily.org/files/ \ @@ -12,12 +11,10 @@ MASTER_SITES= http://miniupnp.tuxfamily.org/files/ \ MAINTAINER= squat@squat.no COMMENT= UPnP IGD implementation which uses pf/ipf -SUB_FILES= miniupnpd.conf.sample -SUB_LIST= UUID=${UUID} +LICENSE= BSD3CLAUSE USES= cpe CPE_VENDOR= miniupnp_project -UUID!= uuidgen PLIST_FILES= etc/miniupnpd.conf.sample sbin/miniupnpd \ man/man8/miniupnpd.8.gz MAKE_JOBS_UNSAFE=yes @@ -42,15 +39,4 @@ UPNP_IGDV2_EXTRA_PATCHES= ${PATCHDIR}/enable_igdv2.patch UPNP_STRICT_EXTRA_PATCHES= ${PATCHDIR}/enable_upnp_strict.patch LEASEFILE_EXTRA_PATCHES= ${PATCHDIR}/enable_leasefile.patch -post-patch: - @${REINPLACE_CMD} 's|CFLAGS ?= -pipe -Os|CFLAGS ?= -pipe|' \ - ${WRKSRC}/Makefile - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/miniupnpd ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_DATA} ${WRKDIR}/miniupnpd.conf.sample \ - ${STAGEDIR}${PREFIX}/etc/miniupnpd.conf.sample - ${INSTALL_MAN} ${WRKSRC}/miniupnpd.8 \ - ${STAGEDIR}${MAN8PREFIX}/man/man8/miniupnpd.8 - .include <bsd.port.mk> |