From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 16 20:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C8B7BE2 for ; Fri, 16 May 2014 20:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69BB423DC for ; Fri, 16 May 2014 20:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4GKA0eX006067 for ; Fri, 16 May 2014 20:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4GKA0qw006064; Fri, 16 May 2014 20:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 16 May 2014 20:10:00 GMT Resent-Message-Id: <201405162010.s4GKA0qw006064@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Smith Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0331C8DC for ; Fri, 16 May 2014 20:01:31 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E506F237D for ; Fri, 16 May 2014 20:01:30 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s4GK1UiR012876 for ; Fri, 16 May 2014 20:01:30 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s4GK1UiN012873; Fri, 16 May 2014 20:01:30 GMT (envelope-from nobody) Message-Id: <201405162001.s4GK1UiN012873@cgiserv.freebsd.org> Date: Fri, 16 May 2014 20:01:30 GMT From: Dan Smith To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/189871: [maintainer update] dns/dnsmax-perl - use staging and shebangfix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 May 2014 20:10:00 -0000 >Number: 189871 >Category: ports >Synopsis: [maintainer update] dns/dnsmax-perl - use staging and shebangfix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri May 16 20:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dan Smith >Release: 8.4-RELEASE-p9 >Organization: Algenta >Environment: 8.4-RELEASE-p9 FreeBSD 8.4-RELEASE-p9 #0: Tue Apr 29 20:31:17 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: [maintainer update] Update the dnsmax perl client to use the new staging and fix issue with shebang use STAGEDIR Remove code to show pkg-message USES=shebangfix >How-To-Repeat: >Fix: Apply patch to /ports/dns/dnsmax-perl Makefile Patch attached with submission follows: --- Makefile.orig 2014-05-16 14:43:51.000000000 -0500 +++ Makefile 2014-05-16 14:50:31.000000000 -0500 @@ -3,6 +3,7 @@ PORTNAME= dnsmax-perl PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= SF/dynamicdns/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME:tl}-${PORTVERSION:S/.p/-pre/:S/.b/-beta/} @@ -15,20 +16,18 @@ p5-libwww>=0:${PORTSDIR}/www/p5-libwww NO_BUILD= yes -USES= perl5 zip +USES= perl5 zip shebangfix +SHEBANG_FILES= dnsmax.pl PLIST_FILES= bin/dnsmax-perl PORTDOCS= LICENSE INSTALL README -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/dnsmax.pl ${PREFIX}/bin/dnsmax-perl + ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/dnsmax.pl ${STAGEDIR}${PREFIX}/bin/dnsmax-perl .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKDIR}/${DISTNAME} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKDIR}/${DISTNAME} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif -post-install: - @${CAT} ${PKGMESSAGE} .include >Release-Note: >Audit-Trail: >Unformatted: