From nemysis@gmx.ch  Thu Sep  6 01:55:51 2012
Return-Path: <nemysis@gmx.ch>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 266F6106566C
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  6 Sep 2012 01:55:51 +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 8B1AC8FC15
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  6 Sep 2012 01:55:50 +0000 (UTC)
Received: (qmail invoked by alias); 06 Sep 2012 01:55:48 -0000
Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201]
  by mail.gmx.net (mp020) with SMTP; 06 Sep 2012 03:55:48 +0200
Received: by something.email.com (sSMTP sendmail emulation); Thu, 06 Sep 2012 03:55:48 +0200
Message-Id: <20120906015551.266F6106566C@hub.freebsd.org>
Date: Thu, 06 Sep 2012 03:55:48 +0200
From: nemysis <nemysis@gmx.ch>
To: FreeBSD-gnats-submit@freebsd.org
Cc: jgh@FreeBSD.org
Subject: [MAINTAINER] games/gottet: Makefile simplified
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         171363
>Category:       ports
>Synopsis:       [MAINTAINER] games/gottet: Makefile simplified
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    amdmi3
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 06 02:00:10 UTC 2012
>Closed-Date:    Wed Nov 28 23:41:29 UTC 2012
>Last-Modified:  Wed Nov 28 23:41:29 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 simplified

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

--- gottet-1.0.4_1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/games/gottet/Makefile ./Makefile
--- /usr/ports/games/gottet/Makefile	2012-08-17 15:24:40.000000000 +0200
+++ ./Makefile	2012-09-06 03:54:38.000000000 +0200
@@ -7,21 +7,26 @@
 
 PORTNAME=	gottet
 PORTVERSION=	1.0.4
+PORTREVISION=	1
 CATEGORIES=	games
 MASTER_SITES=	http://gottcode.org/${PORTNAME}/
-EXTRACT_SUFX=	-src.tar.bz2
+DISTNAME=	${PORTNAME}-${DISTVERSION}-src
 
 MAINTAINER=	nemysis@gmx.ch
-COMMENT=	A Tetris clone
+COMMENT=	Tetris clone
 
 LICENSE=	GPLv3
 
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
 USE_BZIP2=	yes
-USE_QT_VER=	4
-QT_COMPONENTS=	moc_build qmake_build rcc_build iconengines imageformats
-USE_GMAKE=	yes
+USE_QT4=	moc_build qmake_build rcc_build iconengines imageformats
 MAKE_JOBS_SAFE=	yes
 
+do-configure:
+	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
+		${QMAKE} PREFIX=${PREFIX} ${WRKSRC}/${PORTNAME}.pro
+
 PORTDOCS=	ChangeLog
 
 PLIST_FILES=	bin/${PORTNAME} \
@@ -31,18 +36,9 @@
 
 .include <bsd.port.options.mk>
 
-do-configure:
-	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
-		${QMAKE} ${QMAKEFLAGS}
-
-do-install:
-# Executable
-	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
-
-# Pixmaps and Desktop
+post-install:
+# Pixmaps
 	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
-	${MKDIR} ${PREFIX}/share/applications
-	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
 
 # Documentation
 .if ${PORT_OPTIONS:MDOCS}
--- gottet-1.0.4_1.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 
Responsible-Changed-By: amdmi3 
Responsible-Changed-When: Sat Sep 8 00:04:57 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

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

From: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: nemysis <nemysis@gmx.ch>
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/171363: [MAINTAINER] games/gottet: Makefile simplified
Date: Sat, 8 Sep 2012 04:46:59 +0400

 * nemysis (nemysis@gmx.ch) wrote:
 
 > --- gottet-1.0.4_1.patch begins here ---
 > diff -ruN --exclude=CVS /usr/ports/games/gottet/Makefile ./Makefile
 > --- /usr/ports/games/gottet/Makefile	2012-08-17 15:24:40.000000000 +0200
 > +++ ./Makefile	2012-09-06 03:54:38.000000000 +0200
 > @@ -7,21 +7,26 @@
 >  
 >  PORTNAME=	gottet
 >  PORTVERSION=	1.0.4
 > +PORTREVISION=	1
 >  CATEGORIES=	games
 >  MASTER_SITES=	http://gottcode.org/${PORTNAME}/
 > -EXTRACT_SUFX=	-src.tar.bz2
 > +DISTNAME=	${PORTNAME}-${DISTVERSION}-src
 ...
 > +WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 > +
 
 For the sake of simplicity I suggest to leave the first variant.
 To specify EXTRACT_SUFX is simplier that to specify both DISTNAME
 and WRKSRC.
 
 > +do-configure:
 > +	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
 > +		${QMAKE} PREFIX=${PREFIX} ${WRKSRC}/${PORTNAME}.pro
 > +
 
 Don't forget, targets come after all variables. Also, ${QMAKEFLAGS}
 for qmake are required to make the port respect systemwide CXX/CXXFLAGS
 settings. Full path to .pro is not needed since you've chdir'ed
 into WRKSRC already; actually, specifying .pro file is not needed
 at all as if there's a single .pro file in the directory, qmake picks it
 up automatically.
 
 Finally, you've missed that qmake also installs
 
 share/icons/hicolor/48x48/apps/gottet.png
 
 It'll require too many PLIST_DIRSTRY lines in the Makefile, so I
 suggest to switch to pkg-plist.
 
 Modified diff, what do you think:
 
 --- gottet.patch begins here ---
 Index: Makefile
 ===================================================================
 --- Makefile	(revision 303845)
 +++ Makefile	(working copy)
 @@ -7,42 +7,31 @@
  
  PORTNAME=	gottet
  PORTVERSION=	1.0.4
 +PORTREVISION=	1
  CATEGORIES=	games
  MASTER_SITES=	http://gottcode.org/${PORTNAME}/
  EXTRACT_SUFX=	-src.tar.bz2
  
  MAINTAINER=	nemysis@gmx.ch
 -COMMENT=	A Tetris clone
 +COMMENT=	Tetris clone
  
  LICENSE=	GPLv3
  
  USE_BZIP2=	yes
 -USE_QT_VER=	4
 -QT_COMPONENTS=	moc_build qmake_build rcc_build iconengines imageformats
 -USE_GMAKE=	yes
 +USE_QT4=	moc_build qmake_build rcc_build iconengines imageformats
  MAKE_JOBS_SAFE=	yes
  
  PORTDOCS=	ChangeLog
  
 -PLIST_FILES=	bin/${PORTNAME} \
 -		share/applications/${PORTNAME}.desktop \
 -		share/pixmaps/${PORTNAME}.png
 -PLIST_DIRSTRY=	share/applications
 -
  .include <bsd.port.options.mk>
  
  do-configure:
  	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
 -		${QMAKE} ${QMAKEFLAGS}
 +		${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX}
  
 -do-install:
 -# Executable
 -	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 -
 -# Pixmaps and Desktop
 +post-install:
 +# Pixmaps
  	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
 -	${MKDIR} ${PREFIX}/share/applications
 -	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
  
  # Documentation
  .if ${PORT_OPTIONS:MDOCS}
 Index: pkg-plist
 ===================================================================
 --- pkg-plist	(revision 0)
 +++ pkg-plist	(working copy)
 @@ -0,0 +1,9 @@
 +bin/gottet
 +share/applications/gottet.desktop
 +share/icons/hicolor/48x48/apps/gottet.png
 +share/pixmaps/gottet.png
 +@dirrmtry share/icons/hicolor/48x48/apps
 +@dirrmtry share/icons/hicolor/48x48
 +@dirrmtry share/icons/hicolor
 +@dirrmtry share/icons
 +@dirrmtry share/applications
 
 
 -- 
 Dmitry Marakasov   .   55B5 0596 FF1E 8D84 5F56  9510 D35A 80DD F9D2 F77D
 amdmi3@amdmi3.ru  ..:  jabber: amdmi3@jabber.ru    http://www.amdmi3.ru

From: nemysis <nemysis@gmx.ch>
To: bug-followup@FreeBSD.org, Dmitry Marakasov <amdmi3@amdmi3.ru>
Cc:  
Subject: Re: ports/171363: [MAINTAINER] games/gottet: Makefile simplified
Date: Sat, 8 Sep 2012 03:10:38 +0200

 --Sig_/0l=Y6lCnVV=WgvWeh=ewCpB
 Content-Type: multipart/mixed; boundary="MP_/=Pt/BIybXiInmRpqxQhdxNM"
 
 --MP_/=Pt/BIybXiInmRpqxQhdxNM
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: inline
 
 
 --MP_/=Pt/BIybXiInmRpqxQhdxNM
 Content-Type: text/x-patch
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: attachment; filename=gottet.diff
 
 =3D=3D=3D> Generating patch
 =3D=3D=3D> Viewing diff with more
 diff -ruN --exclude=3DCVS /usr/ports/games/gottet/Makefile ./Makefile
 --- /usr/ports/games/gottet/Makefile	2012-08-17 15:24:40.000000000 +0200
 +++ ./Makefile	2012-09-08 03:06:57.000000000 +0200
 @@ -7,42 +7,33 @@
 =20
  PORTNAME=3D	gottet
  PORTVERSION=3D	1.0.4
 +PORTREVISION=3D	1
  CATEGORIES=3D	games
  MASTER_SITES=3D	http://gottcode.org/${PORTNAME}/
 -EXTRACT_SUFX=3D	-src.tar.bz2
 +DISTNAME=3D	${PORTNAME}-${DISTVERSION}-src
 =20
  MAINTAINER=3D	nemysis@gmx.ch
 -COMMENT=3D	A Tetris clone
 +COMMENT=3D	Tetris clone
 =20
  LICENSE=3D	GPLv3
 =20
 +WRKSRC=3D		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 +
  USE_BZIP2=3D	yes
 -USE_QT_VER=3D	4
 -QT_COMPONENTS=3D	moc_build qmake_build rcc_build iconengines imageformats
 -USE_GMAKE=3D	yes
 +USE_QT4=3D	moc_build qmake_build rcc_build iconengines imageformats
  MAKE_JOBS_SAFE=3D	yes
 =20
 -PORTDOCS=3D	ChangeLog
 -
 -PLIST_FILES=3D	bin/${PORTNAME} \
 -		share/applications/${PORTNAME}.desktop \
 -		share/pixmaps/${PORTNAME}.png
 -PLIST_DIRSTRY=3D	share/applications
 -
 -.include <bsd.port.options.mk>
 -
  do-configure:
  	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
 -		${QMAKE} ${QMAKEFLAGS}
 +		  ${QMAKE} ${QMAKEFLAGS} PREFIX=3D${PREFIX} ${WRKSRC}/${PORTNAME}.pro
 +
 +PORTDOCS=3D	ChangeLog
 =20
 -do-install:
 -# Executable
 -	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 +.include <bsd.port.options.mk>
 =20
 -# Pixmaps and Desktop
 +post-install:
 +# Pixmaps
  	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
 -	${MKDIR} ${PREFIX}/share/applications
 -	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/appli=
 cations/
 =20
  # Documentation
  .if ${PORT_OPTIONS:MDOCS}
 diff -ruN --exclude=3DCVS /usr/ports/games/gottet/pkg-plist ./pkg-plist
 --- /usr/ports/games/gottet/pkg-plist	1970-01-01 01:00:00.000000000 +0100
 +++ ./pkg-plist	2012-09-08 03:07:49.000000000 +0200
 @@ -0,0 +1,9 @@
 +bin/gottet
 +share/applications/gottet.desktop
 +share/icons/hicolor/48x48/apps/gottet.png
 +share/pixmaps/gottet.png
 +@dirrmtry share/icons/hicolor/48x48/apps
 +@dirrmtry share/icons/hicolor/48x48
 +@dirrmtry share/icons/hicolor
 +@dirrmtry share/icons
 +@dirrmtry share/applications
 =3D=3D=3D> Done
 
 --MP_/=Pt/BIybXiInmRpqxQhdxNM--
 
 --Sig_/0l=Y6lCnVV=WgvWeh=ewCpB
 Content-Type: application/pgp-signature; name=signature.asc
 Content-Disposition: attachment; filename=signature.asc
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.19 (FreeBSD)
 
 iF4EAREIAAYFAlBKmw4ACgkQSY5SjAQUAPuPzAD+MZwRY77GqqZRFzb9aP8vc0OF
 3npRjzW35E4Z9Y4Q9fwA/1BH8gPo6CPq6Ka8KKF084e0FurepV2v5ruPbDVsNtwX
 =G9EK
 -----END PGP SIGNATURE-----
 
 --Sig_/0l=Y6lCnVV=WgvWeh=ewCpB--

From: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: nemysis <nemysis@gmx.ch>
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/171363: [MAINTAINER] games/gottet: Makefile simplified
Date: Sat, 8 Sep 2012 05:38:31 +0400

 * nemysis (nemysis@gmx.ch) wrote:
 
 > ===> Generating patch
 > ===> Viewing diff with more
 > diff -ruN --exclude=CVS /usr/ports/games/gottet/Makefile ./Makefile
 > --- /usr/ports/games/gottet/Makefile	2012-08-17 15:24:40.000000000 +0200
 > +++ ./Makefile	2012-09-08 03:06:57.000000000 +0200
 > @@ -7,42 +7,33 @@
 >  
 >  PORTNAME=	gottet
 >  PORTVERSION=	1.0.4
 > +PORTREVISION=	1
 >  CATEGORIES=	games
 >  MASTER_SITES=	http://gottcode.org/${PORTNAME}/
 > -EXTRACT_SUFX=	-src.tar.bz2
 > +DISTNAME=	${PORTNAME}-${DISTVERSION}-src
 
 Why don't you want to stick with EXTRACT_SUFX to not add extra
 WRKSRC?
 
 > +WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
 > -PORTDOCS=	ChangeLog
 > -
 > -PLIST_FILES=	bin/${PORTNAME} \
 > -		share/applications/${PORTNAME}.desktop \
 > -		share/pixmaps/${PORTNAME}.png
 > -PLIST_DIRSTRY=	share/applications
 > -
 > -.include <bsd.port.options.mk>
 > -
 >  do-configure:
 >  	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
 > -		${QMAKE} ${QMAKEFLAGS}
 > +		  ${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX} ${WRKSRC}/${PORTNAME}.pro
 > +
 > +PORTDOCS=	ChangeLog
 >  
 > -do-install:
 > -# Executable
 > -	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 > +.include <bsd.port.options.mk>
 >  
 > -# Pixmaps and Desktop
 > +post-install:
 > +# Pixmaps
 >  	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
 > -	${MKDIR} ${PREFIX}/share/applications
 > -	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
 
 Order is still incorrect, you define PORTDOCS after do-configure.
 
 -- 
 Dmitry Marakasov   .   55B5 0596 FF1E 8D84 5F56  9510 D35A 80DD F9D2 F77D
 amdmi3@amdmi3.ru  ..:  jabber: amdmi3@jabber.ru    http://www.amdmi3.ru

From: nemysis <nemysis@gmx.ch>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/171363: [MAINTAINER] games/gottet: Makefile simplified
Date: Sat, 8 Sep 2012 04:43:07 +0200

 --MP_/639u3NSWhukK8Iis4gQS6hM
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 
 --MP_/639u3NSWhukK8Iis4gQS6hM
 Content-Type: text/x-patch
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment; filename=gottet.diff
 
 ===> Generating patch
 ===> Viewing diff with more
 diff -ruN --exclude=CVS /usr/ports/games/gottet/Makefile ./Makefile
 --- /usr/ports/games/gottet/Makefile	2012-08-17 15:24:40.000000000 +0200
 +++ ./Makefile	2012-09-08 03:54:31.000000000 +0200
 @@ -7,42 +7,31 @@
  
  PORTNAME=	gottet
  PORTVERSION=	1.0.4
 +PORTREVISION=	1
  CATEGORIES=	games
  MASTER_SITES=	http://gottcode.org/${PORTNAME}/
  EXTRACT_SUFX=	-src.tar.bz2
  
  MAINTAINER=	nemysis@gmx.ch
 -COMMENT=	A Tetris clone
 +COMMENT=	Tetris clone
  
  LICENSE=	GPLv3
  
  USE_BZIP2=	yes
 -USE_QT_VER=	4
 -QT_COMPONENTS=	moc_build qmake_build rcc_build iconengines imageformats
 -USE_GMAKE=	yes
 +USE_QT4=	moc_build qmake_build rcc_build iconengines imageformats
  MAKE_JOBS_SAFE=	yes
  
  PORTDOCS=	ChangeLog
  
 -PLIST_FILES=	bin/${PORTNAME} \
 -		share/applications/${PORTNAME}.desktop \
 -		share/pixmaps/${PORTNAME}.png
 -PLIST_DIRSTRY=	share/applications
 -
  .include <bsd.port.options.mk>
  
  do-configure:
  	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
 -		${QMAKE} ${QMAKEFLAGS}
 -
 -do-install:
 -# Executable
 -	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 +		${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX}
  
 -# Pixmaps and Desktop
 +post-install:
 +# Pixmaps
  	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
 -	${MKDIR} ${PREFIX}/share/applications
 -	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
  
  # Documentation
  .if ${PORT_OPTIONS:MDOCS}
 diff -ruN --exclude=CVS /usr/ports/games/gottet/pkg-plist ./pkg-plist
 --- /usr/ports/games/gottet/pkg-plist	1970-01-01 01:00:00.000000000 +0100
 +++ ./pkg-plist	2012-09-08 03:07:49.000000000 +0200
 @@ -0,0 +1,9 @@
 +bin/gottet
 +share/applications/gottet.desktop
 +share/icons/hicolor/48x48/apps/gottet.png
 +share/pixmaps/gottet.png
 +@dirrmtry share/icons/hicolor/48x48/apps
 +@dirrmtry share/icons/hicolor/48x48
 +@dirrmtry share/icons/hicolor
 +@dirrmtry share/icons
 +@dirrmtry share/applications
 ===> Done
 
 --MP_/639u3NSWhukK8Iis4gQS6hM--

From: nemysis <nemysis@gmx.ch>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/171363: [MAINTAINER] games/gottet: Makefile simplified
Date: Thu, 11 Oct 2012 04:10:48 +0200

 --MP_/kLX+hMFbG7OfuuQxVsegM17
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 
 --MP_/kLX+hMFbG7OfuuQxVsegM17
 Content-Type: text/x-patch
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment; filename=gottet.diff
 
 ===> Generating patch
 ===> Viewing diff with more
 diff -ruN --exclude=CVS /usr/ports/games/gottet/Makefile ./Makefile
 --- /usr/ports/games/gottet/Makefile	2012-09-20 02:00:30.000000000 +0200
 +++ ./Makefile	2012-10-07 03:37:13.000000000 +0200
 @@ -12,7 +12,7 @@
  EXTRACT_SUFX=	-src.tar.bz2
  
  MAINTAINER=	nemysis@gmx.ch
 -COMMENT=	A Tetris clone
 +COMMENT=	Tetris clone
  
  LICENSE=	GPLv3
  
 @@ -32,21 +32,18 @@
  
  do-configure:
  	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
 -		${QMAKE} ${QMAKEFLAGS}
 +		${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX}
  
  do-install:
 -# Executable
  	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
  
 -# Pixmaps and Desktop
  	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/
  	${MKDIR} ${PREFIX}/share/applications
  	${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
  
 -# Documentation
  .if ${PORT_OPTIONS:MDOCS}
  	${MKDIR} ${DOCSDIR}
 -	${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
 +	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
  .endif
  
  .include <bsd.port.mk>
 ===> Done
 
 --MP_/kLX+hMFbG7OfuuQxVsegM17--
State-Changed-From-To: open->closed 
State-Changed-By: amdmi3 
State-Changed-When: Wed Nov 28 23:41:29 UTC 2012 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=171363 
>Unformatted:
