From nemysis@gmx.ch  Sat Aug 18 16:24:58 2012
Return-Path: <nemysis@gmx.ch>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7368C106564A
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 18 Aug 2012 16:24:58 +0000 (UTC)
	(envelope-from nemysis@gmx.ch)
Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22])
	by mx1.freebsd.org (Postfix) with SMTP id C28278FC14
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 18 Aug 2012 16:24:57 +0000 (UTC)
Received: (qmail invoked by alias); 18 Aug 2012 16:24:55 -0000
Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57]
  by mail.gmx.net (mp034) with SMTP; 18 Aug 2012 18:24:55 +0200
Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 18:24:55 +0200
Message-Id: <20120818162458.7368C106564A@hub.freebsd.org>
Date: Sat, 18 Aug 2012 18:24:55 +0200
From: nemysis <nemysis@gmx.ch>
To: FreeBSD-gnats-submit@freebsd.org
Cc: jgh@FreeBSD.org
Subject: [MAINTAINER] graphics/founts: Makefile changed, OptionsNG
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         170749
>Category:       ports
>Synopsis:       [MAINTAINER] graphics/founts: Makefile changed, OptionsNG
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    jgh
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 18 16:30:08 UTC 2012
>Closed-Date:    Sat Aug 25 06:09:26 UTC 2012
>Last-Modified:  Sat Aug 25 06:10:02 UTC 2012
>Originator:     nemysis
>Release:        FreeBSD 9.0-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC
>Description:

Makefile changed:

Changed all to ${PORTNAME}


OptionsNG

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MDOCS}

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

--- founts-12_1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/graphics/founts/Makefile ./Makefile
--- /usr/ports/graphics/founts/Makefile	2012-05-06 16:30:38.000000000 +0200
+++ ./Makefile	2012-08-18 18:21:50.000000000 +0200
@@ -7,6 +7,7 @@
 
 PORTNAME=	founts
 PORTVERSION=	12
+PORTREVISION=	1
 CATEGORIES=	graphics games
 MASTER_SITES=	http://www.linuxmotors.com/founts/downloads/
 EXTRACT_SUFX=	.tgz
@@ -18,10 +19,12 @@
 
 USE_SDL=	sdl
 
-PLIST_FILES=	bin/founts
+PLIST_FILES=	bin/${PORTNAME}
 
 PORTDOCS=	Changelog README
 
+.include <bsd.port.options.mk>
+
 do-build:
 	cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
 		-lm `${SDL_CONFIG} --cflags --libs` founts.c
@@ -29,8 +32,9 @@
 do-install:
 # Executable
 	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+
 # Documentation
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	${MKDIR} ${DOCSDIR}
 .  for f in ${PORTDOCS}
 	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
--- founts-12_1.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->jgh 
Responsible-Changed-By: jgh 
Responsible-Changed-When: Sun Aug 19 23:22:14 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=170749 
State-Changed-From-To: open->closed 
State-Changed-By: jgh 
State-Changed-When: Sat Aug 25 06:09:25 UTC 2012 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/170749: commit references a PR
Date: Sat, 25 Aug 2012 06:09:03 +0000 (UTC)

 Author: jgh
 Date: Sat Aug 25 06:08:48 2012
 New Revision: 303114
 URL: http://svn.freebsd.org/changeset/ports/303114
 
 Log:
   - update to optionsNG for DOCS
   
   PR:	170749
   Submitted by:	nemysis@gmx.ch
 
 Modified:
   head/graphics/founts/Makefile   (contents, props changed)
 
 Modified: head/graphics/founts/Makefile
 ==============================================================================
 --- head/graphics/founts/Makefile	Sat Aug 25 04:25:12 2012	(r303113)
 +++ head/graphics/founts/Makefile	Sat Aug 25 06:08:48 2012	(r303114)
 @@ -18,10 +18,12 @@ LICENSE=	GPLv2
  
  USE_SDL=	sdl
  
 -PLIST_FILES=	bin/founts
 +PLIST_FILES=	bin/${PORTNAME}
  
  PORTDOCS=	Changelog README
  
 +.include <bsd.port.options.mk>
 +
  do-build:
  	cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
  		-lm `${SDL_CONFIG} --cflags --libs` founts.c
 @@ -29,8 +31,9 @@ do-build:
  do-install:
  # Executable
  	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 +
  # Documentation
 -.if !defined(NOPORTDOCS)
 +.if ${PORT_OPTIONS:MDOCS}
  	${MKDIR} ${DOCSDIR}
  .  for f in ${PORTDOCS}
  	${INSTALL_DATA} ${WRKSRC}/${f} ${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:
