From brix@lothlorien.brixandersen.dk  Fri Jun 22 07:56:50 2007
Return-Path: <brix@lothlorien.brixandersen.dk>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 37D4D16A421
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 22 Jun 2007 07:56:50 +0000 (UTC)
	(envelope-from brix@lothlorien.brixandersen.dk)
Received: from solow.pil.dk (relay.pil.dk [195.41.47.164])
	by mx1.freebsd.org (Postfix) with ESMTP id 0354413C489
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 22 Jun 2007 07:56:49 +0000 (UTC)
	(envelope-from brix@lothlorien.brixandersen.dk)
Received: from lothlorien.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189])
	by solow.pil.dk (Postfix) with ESMTP id 782D71CC0FB
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 22 Jun 2007 09:56:48 +0200 (CEST)
Received: by lothlorien.brixandersen.dk (Postfix, from userid 1001)
	id D31C71141D; Fri, 22 Jun 2007 09:56:47 +0200 (CEST)
Message-Id: <20070622075647.D31C71141D@lothlorien.brixandersen.dk>
Date: Fri, 22 Jun 2007 09:56:47 +0200 (CEST)
From: Henrik Brix Andersen <henrik@brixandersen.dk>
Reply-To: Henrik Brix Andersen <henrik@brixandersen.dk>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [patch] Minor fixes for net-mgmt/wispy-tools
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         113938
>Category:       ports
>Synopsis:       [patch] Minor fixes for net-mgmt/wispy-tools
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    rafan
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 22 08:00:09 GMT 2007
>Closed-Date:    Fri Jun 22 11:44:45 GMT 2007
>Last-Modified:  Fri Jun 22 11:50:11 GMT 2007
>Originator:     Henrik Brix Andersen
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
pil.dk
>Environment:
System: FreeBSD lothlorien.brixandersen.dk 7.0-CURRENT FreeBSD 7.0-CURRENT #45: Tue Jun 19 00:10:18 CEST 2007 root@lothlorien.brixandersen.dk:/usr/obj/usr/src/sys/LOTHLORIEN i386


	
>Description:
* Fix PLIST_SUB to not overload the WITH_GTK variable
* Fix typo in pkg-message
	
>How-To-Repeat:
	
>Fix:

	

--- wispy-tools.diff begins here ---
diff -urp /usr/ports/net-mgmt/wispy-tools/Makefile net-mgmt/wispy-tools/Makefile
--- /usr/ports/net-mgmt/wispy-tools/Makefile	2007-05-19 22:19:54.000000000 +0200
+++ net-mgmt/wispy-tools/Makefile	2007-06-22 09:46:00.000000000 +0200
@@ -36,9 +36,9 @@ IGNORE=	is unsupported on systems prior 
 
 .if defined(WITH_GTK)
 LIB_DEPENDS+=	gtk:${PORTSDIR}/x11-toolkits/gtk20
-PLIST_SUB=	WITH_GTK=""
+PLIST_SUB=	GTK=""
 .else
-PLIST_SUB=	WITH_GTK="@comment "
+PLIST_SUB=	GTK="@comment "
 .endif
 
 do-build:
diff -urp /usr/ports/net-mgmt/wispy-tools/pkg-message net-mgmt/wispy-tools/pkg-message
--- /usr/ports/net-mgmt/wispy-tools/pkg-message	2006-12-14 12:38:53.000000000 +0100
+++ net-mgmt/wispy-tools/pkg-message	2007-06-22 09:49:50.000000000 +0200
@@ -1,4 +1,4 @@
 ====
 In order to use the tools you need read/write access to the ugen(4)
-device node corresponding to your your Wi-Spy device.
+device node corresponding to the Wi-Spy device.
 ====
diff -urp /usr/ports/net-mgmt/wispy-tools/pkg-plist net-mgmt/wispy-tools/pkg-plist
--- /usr/ports/net-mgmt/wispy-tools/pkg-plist	2006-12-14 12:38:53.000000000 +0100
+++ net-mgmt/wispy-tools/pkg-plist	2007-06-22 09:45:50.000000000 +0200
@@ -1,4 +1,4 @@
 bin/wispy_curses
-%%WITH_GTK%%bin/wispy_gtk
+%%GTK%%bin/wispy_gtk
 bin/wispy_log
 bin/wispy_raw
--- wispy-tools.diff ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->rafan 
Responsible-Changed-By: rafan 
Responsible-Changed-When: Fri Jun 22 11:18:36 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113938 
State-Changed-From-To: open->closed 
State-Changed-By: rafan 
State-Changed-When: Fri Jun 22 11:44:43 UTC 2007 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113938 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/113938: commit references a PR
Date: Fri, 22 Jun 2007 11:44:35 +0000 (UTC)

 rafan       2007-06-22 11:44:29 UTC
 
   FreeBSD ports repository
 
   Modified files:
     net-mgmt/wispy-tools Makefile pkg-message pkg-plist 
   Log:
   - Don't overload WITH_GTK in PLIST_SUB, use GTK instead.
   - Use ALL_TARGET, so we don't need to have our own do-build target
   - Fix typo for NOPORTDOCS and typo in pkg-message
   
   PR:            ports/113938
   Submitted by:  Henrik Brix Andersen <henrik at brixandersen.dk> (maintainer)
   
   Revision  Changes    Path
   1.3       +7 -8      ports/net-mgmt/wispy-tools/Makefile
   1.2       +1 -1      ports/net-mgmt/wispy-tools/pkg-message
   1.2       +1 -1      ports/net-mgmt/wispy-tools/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
