Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 09 Jul 2012 23:06:53 -0700
From:      Jason Helfman <jgh@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        beat@FreeBSD.org
Subject:   ports/169760: [PATCH] ports-mgmt/portsopt: report on new Options Framework
Message-ID:  <1341900413.282913.37925.nullmailer@experts-exchange.com>
Resent-Message-ID: <201207100610.q6A6A9NI034802@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         169760
>Category:       ports
>Synopsis:       [PATCH] ports-mgmt/portsopt: report on new Options Framework
>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 Jul 10 06:10:09 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Jason Helfman
>Release:        FreeBSD 8.3-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD dormouse.experts-exchange.com 8.3-RELEASE FreeBSD 8.3-RELEASE #0: Mon Apr  9 21:23:18 UTC
>Description:
Report on new options framework

May want to update COMMENT line, as well.

Added file(s):
- files/patch-portsopt

Port maintainer (beat@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS)
>How-To-Repeat:
>Fix:

--- portsopt-1.4_1.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/ports-mgmt/portsopt/Makefile,v
retrieving revision 1.6
diff -u -r1.6 Makefile
--- Makefile	28 Jan 2009 23:25:20 -0000	1.6
+++ Makefile	10 Jul 2012 06:07:22 -0000
@@ -7,6 +7,7 @@
 
 PORTNAME=	portsopt
 PORTVERSION=	1.4
+PORTREVISION=	1
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	http://www.chruetertee.ch/files/download/
 
Index: files/patch-portsopt
===================================================================
RCS file: files/patch-portsopt
diff -N files/patch-portsopt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ files/patch-portsopt	10 Jul 2012 06:07:22 -0000
@@ -0,0 +1,37 @@
+--- ./portsopt.orig	2007-03-14 14:17:02.000000000 -0700
++++ ./portsopt	2012-07-09 23:03:20.000000000 -0700
+@@ -22,7 +22,7 @@
+ 	echo ''
+ 	echo 'Options:'
+ 	echo '-c Call make config. If -r is set too, make config-recursive will be called'
+-	echo '-r Show WITH* knobs also from the port depencies' 
++	echo '-r Show (WITH*|PORT_OPTIONS) knobs also from the port dependencies'
+ 	echo '-h Display this help'
+ 	exit 0
+ }
+@@ -60,10 +60,10 @@
+ 	fi
+ 	echo `pwd`
+ 	make showconfig
+-	grep WITH Makefile | search
++	egrep '(WITH|PORT_OPTIONS)' Makefile | search
+ 	for j in `find . -name "Makefile.*" | grep -v files`
+ 	do
+-			grep WITH ${j} | search
++			egrep '(WITH|PORT_OPTIONS)' ${j} | search
+ 	done
+ else
+ 	echo Makefile not found
+@@ -79,10 +79,10 @@
+ 		echo ${i} 
+ 		cd ${i}
+ 		make showconfig
+-		grep WITH Makefile | search
++		egrep '(WITH|PORT_OPTIONS)' Makefile | search
+ 		for j in `find . -name "Makefile.*" | grep -v files`
+ 		do
+-			grep WITH ${j} | search
++			egrep '(WITH|PORT_OPTIONS)' ${j} | search
+ 		done
+ 	done
+ 	rm -f /tmp/portsdep_$$
--- portsopt-1.4_1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1341900413.282913.37925.nullmailer>