From owner-svn-ports-head@FreeBSD.ORG Sun Jan 26 13:56:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E49BDADF; Sun, 26 Jan 2014 13:56:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B6963191F; Sun, 26 Jan 2014 13:56:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0QDudfE057777; Sun, 26 Jan 2014 13:56:39 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0QDudZb057776; Sun, 26 Jan 2014 13:56:39 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401261356.s0QDudZb057776@svn.freebsd.org> From: John Marino Date: Sun, 26 Jan 2014 13:56:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341174 - head/net/miniupnpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 13:56:40 -0000 Author: marino Date: Sun Jan 26 13:56:39 2014 New Revision: 341174 URL: http://svnweb.freebsd.org/changeset/ports/341174 QAT: https://qat.redports.org/buildarchive/r341174/ Log: net/miniupnpd: Fix PF rules issue, support stage PR: ports/184726 Submitted by: Chris Scott Approved by: maintainer (Tor Halvard Furulund) Stage support: marino@ Modified: head/net/miniupnpd/Makefile Modified: head/net/miniupnpd/Makefile ============================================================================== --- head/net/miniupnpd/Makefile Sun Jan 26 13:48:06 2014 (r341173) +++ head/net/miniupnpd/Makefile Sun Jan 26 13:56:39 2014 (r341174) @@ -9,26 +9,24 @@ MASTER_SITES= http://miniupnp.tuxfamily. http://miniupnp.free.fr/files/ MAINTAINER= squat@squat.no -COMMENT= A UPnP IGD implementation which uses pf/ipf +COMMENT= UPnP IGD implementation which uses pf/ipf SUB_FILES= miniupnpd.conf.sample SUB_LIST= UUID=${UUID} UUID!= uuidgen FWNAME?= pf -PLIST_FILES= etc/miniupnpd.conf.sample sbin/miniupnpd +PLIST_FILES= etc/miniupnpd.conf.sample sbin/miniupnpd \ + man/man8/miniupnpd.8.gz MAKE_JOBS_UNSAFE=yes -MAN8= miniupnpd.8 - USE_RC_SUBR= miniupnpd OPTIONS_DEFINE= PF_ENABLE_FILTER_RULES PF_ENABLE_FILTER_RULES_DESC= Enable pf generation of filter rules -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MWITH_PF_ENABLE_FILTER_RULES} +.if ${PORT_OPTIONS:MPF_ENABLE_FILTER_RULES} EXTRA_PATCHES= ${PATCHDIR}/pf_enable_filter_rules.patch .endif @@ -37,9 +35,10 @@ post-patch-script: ${WRKSRC}/Makefile do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/miniupnpd ${PREFIX}/sbin - @${INSTALL_DATA} ${WRKDIR}/miniupnpd.conf.sample ${PREFIX}/etc/miniupnpd.conf.sample - @${INSTALL_MAN} ${WRKSRC}/miniupnpd.8 ${MAN8PREFIX}/man/man8/miniupnpd.8 - @${CAT} ${PKGMESSAGE} + @${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