From jhelfman@experts-exchange.com  Tue Jul 31 17:01:26 2012
Return-Path: <jhelfman@experts-exchange.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id E80BF106564A;
	Tue, 31 Jul 2012 17:01:26 +0000 (UTC)
	(envelope-from jhelfman@experts-exchange.com)
Received: from mail.dw.redsrci.com (mail.pub.dw.redsrci.com [72.29.183.251])
	by mx1.freebsd.org (Postfix) with ESMTP id C76458FC19;
	Tue, 31 Jul 2012 17:01:26 +0000 (UTC)
Received: from mail.dw.redsrci.com (localhost [127.0.0.1])
	by mail.dw.redsrci.com (Postfix) with ESMTP id 8653A6F255F;
	Tue, 31 Jul 2012 10:01:26 -0700 (PDT)
Received: from mail.dw.redsrci.com ([127.0.0.1])
	by mail.dw.redsrci.com (mail.dw.redsrci.com [127.0.0.1]) (amavisd-new, port 10024)
	with ESMTP id LalKqynQowEC; Tue, 31 Jul 2012 10:01:26 -0700 (PDT)
Received: from experts-exchange.com (unknown [192.168.103.120])
	by mail.dw.redsrci.com (Postfix) with SMTP id 611A36F255E;
	Tue, 31 Jul 2012 10:01:26 -0700 (PDT)
Received: (nullmailer pid 24394 invoked by uid 1001);
	Tue, 31 Jul 2012 16:59:27 -0000
Message-Id: <1343753967.034969.24393.nullmailer@experts-exchange.com>
Date: Tue, 31 Jul 2012 09:59:27 -0700
From: Jason Helfman <jgh@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: sylvio@FreeBSD.org
Subject: [PATCH] x11/xdialog: drop master_sites, adopt optionng
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         170297
>Category:       ports
>Synopsis:       [PATCH] x11/xdialog: drop master_sites, adopt optionng
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    jgh
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jul 31 17:10:09 UTC 2012
>Closed-Date:    Thu Oct 04 16:36:27 UTC 2012
>Last-Modified:  Thu Oct  4 16:40:02 UTC 2012
>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:
drop bad master_sites (confirmed) http://lists.freebsd.org/pipermail/freebsd-ports/2012-July/077202.html
adopt optionsng

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

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

--- xdialog-2.3.1_5.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 301799)
+++ Makefile	(working copy)
@@ -10,8 +10,7 @@
 PORTVERSION=	2.3.1
 PORTREVISION=	5
 CATEGORIES=	x11
-MASTER_SITES=	http://thgodef.nerim.net/xdialog/ \
-		http://xdialog.free.fr/
+MASTER_SITES=	http://xdialog.free.fr/
 DISTNAME=	${PORTNAME:S/x/X/}-${PORTVERSION}
 
 MAINTAINER=	sylvio@FreeBSD.org
@@ -26,7 +25,9 @@
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-.if defined(WITHOUT_NLS)
+.include <bsd.port.options.mk>
+
+.if empty(PORT_OPTIONS:MNLS)
 CONFIGURE_ARGS+=	--disable-nls
 PLIST_SUB+=	NLS="@comment "
 .else
@@ -44,7 +45,7 @@
 		${WRKSRC}/doc/Xdialog.man
 
 post-install:
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${DOCSDIR}/samples
 	${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/doc/*.png ${DOCSDIR}
--- xdialog-2.3.1_5.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->sylvio 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue Jul 31 17:10:19 UTC 2012 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=170297 
Responsible-Changed-From-To: sylvio->jgh 
Responsible-Changed-By: jgh 
Responsible-Changed-When: Thu Oct 4 16:36:12 UTC 2012 
Responsible-Changed-Why:  
maintainer timeout, 65 days 

http://www.freebsd.org/cgi/query-pr.cgi?pr=170297 
State-Changed-From-To: open->closed 
State-Changed-By: jgh 
State-Changed-When: Thu Oct 4 16:36:26 UTC 2012 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/170297: commit references a PR
Date: Thu,  4 Oct 2012 16:35:39 +0000 (UTC)

 Author: jgh
 Date: Thu Oct  4 16:35:25 2012
 New Revision: 305265
 URL: http://svn.freebsd.org/changeset/ports/305265
 
 Log:
   - drop broken MASTER_SITE
   - while here adopt optionsNG
   
   PR:		170297
   Submitted by:	jgh@ (myself)
   Approved by:	maintainer timeout ( 65 days )
 
 Modified:
   head/x11/xdialog/Makefile
 
 Modified: head/x11/xdialog/Makefile
 ==============================================================================
 --- head/x11/xdialog/Makefile	Thu Oct  4 16:30:16 2012	(r305264)
 +++ head/x11/xdialog/Makefile	Thu Oct  4 16:35:25 2012	(r305265)
 @@ -10,8 +10,7 @@ PORTNAME=	xdialog
  PORTVERSION=	2.3.1
  PORTREVISION=	5
  CATEGORIES=	x11
 -MASTER_SITES=	http://thgodef.nerim.net/xdialog/ \
 -		http://xdialog.free.fr/
 +MASTER_SITES=	http://xdialog.free.fr/
  DISTNAME=	${PORTNAME:S/x/X/}-${PORTVERSION}
  
  MAINTAINER=	sylvio@FreeBSD.org
 @@ -26,7 +25,9 @@ MAN1=		Xdialog.1
  CPPFLAGS+=	-I${LOCALBASE}/include
  LDFLAGS+=	-L${LOCALBASE}/lib
  
 -.if defined(WITHOUT_NLS)
 +.include <bsd.port.options.mk>
 +
 +.if empty(PORT_OPTIONS:MNLS)
  CONFIGURE_ARGS+=	--disable-nls
  PLIST_SUB+=	NLS="@comment "
  .else
 @@ -44,7 +45,7 @@ post-patch:
  		${WRKSRC}/doc/Xdialog.man
  
  post-install:
 -.if !defined(NOPORTDOCS)
 +.if ${PORT_OPTIONS:MDOCS}
  	@${MKDIR} ${DOCSDIR}/samples
  	${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}
  	${INSTALL_DATA} ${WRKSRC}/doc/*.png ${DOCSDIR}
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
