From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 22 10:00:02 2013 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 ESMTP id 37C54BC0 for ; Tue, 22 Oct 2013 10:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14AD92CF0 for ; Tue, 22 Oct 2013 10:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9MA01kG051013 for ; Tue, 22 Oct 2013 10:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9MA01PV051012; Tue, 22 Oct 2013 10:00:01 GMT (envelope-from gnats) Resent-Date: Tue, 22 Oct 2013 10:00:01 GMT Resent-Message-Id: <201310221000.r9MA01PV051012@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, Mathieu Arnold 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 ESMTP id 7AD16A16; Tue, 22 Oct 2013 09:56:45 +0000 (UTC) (envelope-from mat@aragorn.in.absolight.net) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F36C2CBE; Tue, 22 Oct 2013 09:56:45 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 7A401BDC1D; Tue, 22 Oct 2013 11:56:43 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 70040BDC25; Tue, 22 Oct 2013 11:56:42 +0200 (CEST) Received: from aragorn.in.absolight.net (aragorn.in.absolight.net [79.143.241.225]) by gw.in.absolight.net (Postfix) with ESMTP id BD9996113; Tue, 22 Oct 2013 11:56:41 +0200 (CEST) Received: by aragorn.in.absolight.net (Postfix, from userid 1000) id 28F2A14269C; Tue, 22 Oct 2013 11:56:41 +0200 (CEST) Message-Id: <20131022095641.28F2A14269C@aragorn.in.absolight.net> Date: Tue, 22 Oct 2013 11:56:41 +0200 (CEST) From: Mathieu Arnold To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/183190: [PATCH] net/ntraceroute: Support staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Oct 2013 10:00:02 -0000 >Number: 183190 >Category: ports >Synopsis: [PATCH] net/ntraceroute: Support staging >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 22 10:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 9.2-RELEASE i386 >Organization: Absolight >Environment: System: FreeBSD aragorn.in.absolight.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC >Description: Support staging. Port maintainer (zi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- ntraceroute-6.4.2_1.patch begins here --- diff -ruN /usr/ports/net/ntraceroute/Makefile ./Makefile --- /usr/ports/net/ntraceroute/Makefile 2013-09-21 00:10:23.000000000 +0200 +++ ./Makefile 2013-10-22 11:46:00.000000000 +0200 @@ -21,16 +21,13 @@ EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= . -NOMAN= defined PLIST_FILES= sbin/${PORTNAME} -NO_STAGE= yes do-build: ${CC} -o ${WRKSRC}/${PORTNAME} -lm \ ${WRKSRC}/${DISTFILES} do-install: - ${INSTALL} ${COPY} ${STRIP} -o root -g wheel -m 04555 \ - ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin .include --- ntraceroute-6.4.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: