From tkato432@yahoo.com  Mon Dec 30 21:02:19 2013
Return-Path: <tkato432@yahoo.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 8D51EA39
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 30 Dec 2013 21:01:32 +0000 (UTC)
Received: from omta01.auone-net.jp (mail-or2-f145.auone-net.jp [111.87.219.145])
	by mx1.freebsd.org (Postfix) with ESMTP id 5EECD1F7D
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 30 Dec 2013 21:01:32 +0000 (UTC)
Received: from coppermine.my.domain (ZT028061.ppp.dion.ne.jp [59.128.28.61])
	by omta01.auone-net.jp (au one net mail) with ESMTP id E7F509800D1
	for <FreeBSD-gnats-submit@FreeBSD.org>; Tue, 31 Dec 2013 06:01:30 +0900 (JST)
Message-Id: <20131231054717.a66d775cc7cdb668aa602186@yahoo.com>
Date: Tue, 31 Dec 2013 05:47:17 +0900
From: KATO Tsuguru <tkato432@yahoo.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Subject: emulators/tuxnes: Fix build with clang

>Number:         185310
>Category:       ports
>Synopsis:       emulators/tuxnes: Fix build with clang
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 30 21:10:00 UTC 2013
>Closed-Date:    Sun Jan 19 13:49:25 UTC 2014
>Last-Modified:  Sat Jan 25 13:20:01 UTC 2014
>Originator:     KATO Tsuguru
>Release:        FreeBSD 8.4-RELEASE-p4 i386
>Organization:
>Environment:
>Description:
- Fix build with clang
- Add LICENSE
- Add DESKTOP_ENTRIES

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/emulators/tuxnes/Makefile emulators/tuxnes/Makefile
--- /usr/ports/emulators/tuxnes/Makefile	2013-11-06 22:06:24.000000000 +0900
+++ emulators/tuxnes/Makefile	2013-12-31 00:00:00.000000000 +0900
@@ -3,21 +3,40 @@
 
 PORTNAME=	tuxnes
 PORTVERSION=	0.75
-PORTREVISION=	4
+PORTREVISION=	6
 CATEGORIES=	emulators
 MASTER_SITES=	SF/${PORTNAME}/TuxNES/TuxNES%20v${PORTVERSION}
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	A Nintendo Entertainment System 8-bit emulator
+COMMENT=	Nintendo Entertainment System 8-bit emulator
+
+LICENSE=	GPLv2
 
 ONLY_FOR_ARCHS=	i386
 ONLY_FOR_ARCHS_REASON=	uses i386 assembly code
 
+USES=		compiler gmake
 USE_XORG=	x11 ice sm xext xpm
-USE_GMAKE=	yes
+USE_BINUTILS=	yes
 GNU_CONFIGURE=	yes
 
-PLIST_FILES=	bin/romfixer bin/tuxnes
+PLIST_FILES=	bin/romfixer bin/tuxnes share/pixmaps/tuxnes.xpm
+
+DESKTOP_ENTRIES="TuxNES" "" "${PREFIX}/share/pixmaps/tuxnes.xpm" \
+		"${PORTNAME}" "" ""
+
+.include <bsd.port.pre.mk>
+
+.if ${COMPILER_TYPE} == "clang"
+CPPFLAGS+=	-no-integrated-as
+.endif
+
+post-patch:
+	@${REINPLACE_CMD} -e \
+		's|^CFLAGS=|#CFLAGS=|' ${WRKSRC}/configure
+
+post-install:
+	(cd ${WRKSRC} && ${INSTALL_DATA} tuxnes.xpm \
+		${STAGEDIR}${PREFIX}/share/pixmaps)
 
-NO_STAGE=	yes
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Sun Jan 19 13:49:25 UTC 2014 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185310: commit references a PR
Date: Sun, 19 Jan 2014 13:49:28 +0000 (UTC)

 Author: miwi
 Date: Sun Jan 19 13:49:20 2014
 New Revision: 340296
 URL: http://svnweb.freebsd.org/changeset/ports/340296
 QAT: https://qat.redports.org/buildarchive/r340296/
 
 Log:
   - Fix build with clang
   - Add LICENSE
   - Add DESKTOP_ENTRIES
   
   PR:		185310
   Submitted by:	Ports Fury
 
 Modified:
   head/emulators/tuxnes/Makefile   (contents, props changed)
 
 Modified: head/emulators/tuxnes/Makefile
 ==============================================================================
 --- head/emulators/tuxnes/Makefile	Sun Jan 19 13:48:29 2014	(r340295)
 +++ head/emulators/tuxnes/Makefile	Sun Jan 19 13:49:20 2014	(r340296)
 @@ -3,21 +3,40 @@
  
  PORTNAME=	tuxnes
  PORTVERSION=	0.75
 -PORTREVISION=	4
 +PORTREVISION=	6
  CATEGORIES=	emulators
  MASTER_SITES=	SF/${PORTNAME}/TuxNES/TuxNES%20v${PORTVERSION}
  
  MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A Nintendo Entertainment System 8-bit emulator
 +COMMENT=	Nintendo Entertainment System 8-bit emulator
 +
 +LICENSE=	GPLv2
  
  ONLY_FOR_ARCHS=	i386
  ONLY_FOR_ARCHS_REASON=	uses i386 assembly code
  
 +USES=		compiler gmake
  USE_XORG=	x11 ice sm xext xpm
 -USE_GMAKE=	yes
 +USE_BINUTILS=	yes
  GNU_CONFIGURE=	yes
  
 -PLIST_FILES=	bin/romfixer bin/tuxnes
 +PLIST_FILES=	bin/romfixer bin/tuxnes share/pixmaps/tuxnes.xpm
 +
 +DESKTOP_ENTRIES="TuxNES" "" "${PREFIX}/share/pixmaps/tuxnes.xpm" \
 +		"${PORTNAME}" "" ""
 +
 +.include <bsd.port.pre.mk>
 +
 +.if ${COMPILER_TYPE} == "clang"
 +CPPFLAGS+=	-no-integrated-as
 +.endif
 +
 +post-patch:
 +	@${REINPLACE_CMD} -e \
 +		's|^CFLAGS=|#CFLAGS=|' ${WRKSRC}/configure
 +
 +post-install:
 +	(cd ${WRKSRC} && ${INSTALL_DATA} tuxnes.xpm \
 +		${STAGEDIR}${PREFIX}/share/pixmaps)
  
 -NO_STAGE=	yes
 -.include <bsd.port.mk>
 +.include <bsd.port.post.mk>
 _______________________________________________
 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"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185310: commit references a PR
Date: Sat, 25 Jan 2014 13:10:37 +0000 (UTC)

 Author: miwi
 Date: Sat Jan 25 13:10:29 2014
 New Revision: 341029
 URL: http://svnweb.freebsd.org/changeset/ports/341029
 QAT: https://qat.redports.org/buildarchive/r341029/
 
 Log:
   MFH: r340296
   
   - Fix build with clang
   - Add LICENSE
   - Add DESKTOP_ENTRIES
   
   PR:		185310
   Submitted by:	Ports Fury
 
 Modified:
   branches/2014Q1/emulators/tuxnes/Makefile   (contents, props changed)
 Directory Properties:
   branches/2014Q1/   (props changed)
 
 Modified: branches/2014Q1/emulators/tuxnes/Makefile
 ==============================================================================
 --- branches/2014Q1/emulators/tuxnes/Makefile	Sat Jan 25 13:08:42 2014	(r341028)
 +++ branches/2014Q1/emulators/tuxnes/Makefile	Sat Jan 25 13:10:29 2014	(r341029)
 @@ -3,21 +3,40 @@
  
  PORTNAME=	tuxnes
  PORTVERSION=	0.75
 -PORTREVISION=	4
 +PORTREVISION=	6
  CATEGORIES=	emulators
  MASTER_SITES=	SF/${PORTNAME}/TuxNES/TuxNES%20v${PORTVERSION}
  
  MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A Nintendo Entertainment System 8-bit emulator
 +COMMENT=	Nintendo Entertainment System 8-bit emulator
 +
 +LICENSE=	GPLv2
  
  ONLY_FOR_ARCHS=	i386
  ONLY_FOR_ARCHS_REASON=	uses i386 assembly code
  
 +USES=		compiler gmake
  USE_XORG=	x11 ice sm xext xpm
 -USE_GMAKE=	yes
 +USE_BINUTILS=	yes
  GNU_CONFIGURE=	yes
  
 -PLIST_FILES=	bin/romfixer bin/tuxnes
 +PLIST_FILES=	bin/romfixer bin/tuxnes share/pixmaps/tuxnes.xpm
 +
 +DESKTOP_ENTRIES="TuxNES" "" "${PREFIX}/share/pixmaps/tuxnes.xpm" \
 +		"${PORTNAME}" "" ""
 +
 +.include <bsd.port.pre.mk>
 +
 +.if ${COMPILER_TYPE} == "clang"
 +CPPFLAGS+=	-no-integrated-as
 +.endif
 +
 +post-patch:
 +	@${REINPLACE_CMD} -e \
 +		's|^CFLAGS=|#CFLAGS=|' ${WRKSRC}/configure
 +
 +post-install:
 +	(cd ${WRKSRC} && ${INSTALL_DATA} tuxnes.xpm \
 +		${STAGEDIR}${PREFIX}/share/pixmaps)
  
 -NO_STAGE=	yes
 -.include <bsd.port.mk>
 +.include <bsd.port.post.mk>
 _______________________________________________
 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:
