From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 26 19:00:38 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4701716A403 for ; Thu, 26 Oct 2006 19:00:38 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA9B643D49 for ; Thu, 26 Oct 2006 19:00:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9QJ0aeQ004743 for ; Thu, 26 Oct 2006 19:00:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9QJ0alT004739; Thu, 26 Oct 2006 19:00:36 GMT (envelope-from gnats) Resent-Date: Thu, 26 Oct 2006 19:00:36 GMT Resent-Message-Id: <200610261900.k9QJ0alT004739@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, Rong-En Fan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CB7E16A412; Thu, 26 Oct 2006 18:58:40 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id E10D943D5C; Thu, 26 Oct 2006 18:58:39 +0000 (GMT) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.13.8/8.13.8) with ESMTP id k9QIwdA3079900; Fri, 27 Oct 2006 02:58:39 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.13.8/8.13.8/Submit) id k9QIwcMJ074538; Fri, 27 Oct 2006 02:58:38 +0800 (CST) (envelope-from rafan) Message-Id: <200610261858.k9QIwcMJ074538@svm.csie.ntu.edu.tw> Date: Fri, 27 Oct 2006 02:58:38 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ale@FreeBSD.org Subject: ports/104838: [PATCH] sysutils/portconf: auto detect real path of /usr/ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Oct 2006 19:00:38 -0000 >Number: 104838 >Category: ports >Synopsis: [PATCH] sysutils/portconf: auto detect real path of /usr/ports >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: Thu Oct 26 19:00:36 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 6.2-PRERELEASE amd64 >Organization: NTU CSIE >Environment: >Description: Make make.conf auto detect where the real path of /usr/ports is. If your /usr/ports is a symlink, portconf can still work. Port maintainer (ale@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- portconf-1.2_1.patch begins here --- Index: Makefile =================================================================== RCS file: /big/freebsd-cvsup/ncvs/ports/sysutils/portconf/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 6 Sep 2006 12:50:31 -0000 1.3 +++ Makefile 26 Oct 2006 18:57:12 -0000 @@ -9,6 +9,7 @@ PORTNAME= portconf PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= # none DISTFILES= # none Index: pkg-install =================================================================== RCS file: /big/freebsd-cvsup/ncvs/ports/sysutils/portconf/pkg-install,v retrieving revision 1.1 diff -u -u -r1.1 pkg-install --- pkg-install 9 Jun 2006 08:17:35 -0000 1.1 +++ pkg-install 26 Oct 2006 18:57:12 -0000 @@ -7,7 +7,12 @@ cat >> ${MAKE_CONF} << EOF # Begin portconf settings # Do not touch these lines -.if !empty(.CURDIR:M/usr/ports*) && exists(${PKG_PREFIX}/libexec/portconf) +.if !empty(\${PORTSDIR}) +_PORTSDIR!= /bin/realpath \${PORTSDIR} +.else +_PORTSDIR!= /bin/realpath /usr/ports +.endif +.if \${.CURDIR:M\${_PORTSDIR}*} != "" && exists(${PKG_PREFIX}/libexec/portconf) _PORTCONF!=${PKG_PREFIX}/libexec/portconf .for i in \${_PORTCONF:S/|/ /g} \${i:S/%/ /g} --- portconf-1.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: