From nemysis@gmx.ch  Sun Nov  4 05:33:28 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 342ABC0F
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  4 Nov 2012 05:33:28 +0000 (UTC)
	(envelope-from nemysis@gmx.ch)
Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23])
	by mx1.freebsd.org (Postfix) with SMTP id A65278FC14
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  4 Nov 2012 05:33:27 +0000 (UTC)
Received: (qmail invoked by alias); 04 Nov 2012 05:33:25 -0000
Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201]
  by mail.gmx.net (mp035) with SMTP; 04 Nov 2012 06:33:25 +0100
Received: by something.email.com (sSMTP sendmail emulation); Sun, 04 Nov 2012 06:33:24 +0100
Message-Id: <20121104053328.342ABC0F@hub.freebsd.org>
Date: Sun, 04 Nov 2012 06:33:24 +0100
From: nemysis <nemysis@gmx.ch>
To: FreeBSD-gnats-submit@freebsd.org
Cc: jgh@FreeBSD.org
Subject: [PATCH] games/gtkatlantic: OptionsNG, changed Makefile, added Desktop entries, icons, take maintainership
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         173352
>Category:       ports
>Synopsis:       [PATCH] games/gtkatlantic: OptionsNG, changed Makefile, added Desktop entries, icons, take maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    nemysis
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Nov 04 05:40:00 UTC 2012
>Closed-Date:    Fri Jan 31 11:20:32 UTC 2014
>Last-Modified:  Fri Jan 31 11:50:02 UTC 2014
>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:

- Take maintainership

Makefile changed:
+LICENSE=	GPLv2
+BUILD_DEPENDS=	xpmtoppm:${PORTSDIR}/graphics/netpbm
+PORTDOCS=
+INSTALLS_ICONS=	yes
+ICON_SIZES=	16x16 32x32 48x48
+DESKTOP_ENTRIES
+.include <bsd.port.options.mk>
+post-build:
+.for s in ${ICON_SIZES}
+.if ${PORT_OPTIONS:MDOCS}

Changed pkg-plist

Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports)
>How-To-Repeat:

portlint -A
WARN: Makefile: [42]: use ${VARIABLE}, instead of $(VARIABLE).
WARN: Makefile: for new port, make $FreeBSD$ tag in comment section empty, to make SVN happy.
WARN: Makefile: new ports should not set PORTREVISION.
WARN: Makefile: only one MASTER_SITE configured.  Consider adding additional mirrors.
0 fatal errors and 4 warnings found.

WARN: Makefile: [42] because is used
 	@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in

port test: clean

Build log

https://redports.org/buildarchive/20121103231908-28395/

>Fix:

--- gtkatlantic-0.4.3_2.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/games/gtkatlantic/Makefile ./Makefile
--- /usr/ports/games/gtkatlantic/Makefile	2012-06-01 07:18:51.000000000 +0200
+++ ./Makefile	2012-11-04 06:09:22.000000000 +0100
@@ -7,22 +7,59 @@
 
 PORTNAME=	gtkatlantic
 PORTVERSION=	0.4.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games
-MASTER_SITES=	http://download.tuxfamily.org/gtkatlantic/downloads/v0.4/
+MASTER_SITES=	http://download.tuxfamily.org/${PORTNAME}/downloads/v0.4/
 
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	A game like Monopoly(tm)
+MAINTAINER=	nemysis@gmx.ch
+COMMENT=	Game like Monopoly(tm)
+
+LICENSE=	GPLv2
+
+BUILD_DEPENDS=	xpmtoppm:${PORTSDIR}/graphics/netpbm
 
 USE_BZIP2=	yes
 USE_GNOME=	gtk20
-USE_GMAKE=	yes
 GNU_CONFIGURE=	yes
+USE_GMAKE=	yes
+
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
+PORTDOCS=	AUTHORS ChangeLog README
+
+INSTALLS_ICONS=	yes
+ICON_SIZES=	16x16 32x32 48x48
+
+DESKTOP_ENTRIES="GtkAtlantic" "${COMMENT}" "${PORTNAME}" \
+		"${PORTNAME}" "Game;BoardGame;" ${FALSE}
+
+.include <bsd.port.options.mk>
+
 post-patch:
-	@${REINPLACE_CMD} -e '/-Werror/s|^|#|' ${WRKSRC}/configure
+	@${REINPLACE_CMD} -e 's|-Wall -Werror||' ${WRKSRC}/configure
 	@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in
 
+post-build:
+	@(cd ${WRKSRC}/data && ${LOCALBASE}/bin/xpmtoppm icon32x32.xpm | \
+		${LOCALBASE}/bin/pamscale 1.5 | ${LOCALBASE}/bin/ppmtoxpm > icon48x48.xpm)
+
+.for s in ${ICON_SIZES}
+	@(cd ${WRKSRC}/data && ${LOCALBASE}/bin/xpmtoppm icon${s}.xpm | \
+		${LOCALBASE}/bin/pnmtopng > ${PORTNAME}${s}.png)
+.endfor
+
+post-install:
+.for s in ${ICON_SIZES}
+	${MKDIR} ${PREFIX}/share/icons/hicolor/${s}/apps
+	${INSTALL_DATA} ${WRKSRC}/data/${PORTNAME}${s}.png \
+		${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
+.endfor
+	${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps
+
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
+.endif
+
 .include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/games/gtkatlantic/pkg-plist ./pkg-plist
--- /usr/ports/games/gtkatlantic/pkg-plist	2005-03-18 01:51:49.000000000 +0100
+++ ./pkg-plist	2012-11-03 23:52:30.000000000 +0100
@@ -3,10 +3,14 @@
 %%DATADIR%%/cards.png
 %%DATADIR%%/commands.png
 %%DATADIR%%/default.conf
+%%DATADIR%%/gtkatlantic16x16.png
+%%DATADIR%%/gtkatlantic32x32.png
+%%DATADIR%%/gtkatlantic48x48.png
 %%DATADIR%%/help.index
 %%DATADIR%%/houses.png
 %%DATADIR%%/icon16x16.xpm
 %%DATADIR%%/icon32x32.xpm
+%%DATADIR%%/icon48x48.xpm
 %%DATADIR%%/interface.xml
 %%DATADIR%%/logo.png
 %%DATADIR%%/stars.png
@@ -21,6 +25,18 @@
 %%DATADIR%%/themes/generic_gradient/theme.conf
 %%DATADIR%%/themes/generic_gradient/tokens.png
 %%DATADIR%%/tokens.png
+share/icons/hicolor/16x16/apps/gtkatlantic.png
+share/icons/hicolor/32x32/apps/gtkatlantic.png
+share/icons/hicolor/48x48/apps/gtkatlantic.png
+share/pixmaps/gtkatlantic.png
+@dirrmtry share/icons/hicolor/48x48/apps
+@dirrmtry share/icons/hicolor/48x48
+@dirrmtry share/icons/hicolor/32x32/apps
+@dirrmtry share/icons/hicolor/32x32
+@dirrmtry share/icons/hicolor/16x16/apps
+@dirrmtry share/icons/hicolor/16x16
+@dirrmtry share/icons/hicolor
+@dirrmtry share/icons
 @dirrm %%DATADIR%%/themes/generic_gradient
 @dirrm %%DATADIR%%/themes
 @dirrm %%DATADIR%%
--- gtkatlantic-0.4.3_2.patch ends here ---

>Release-Note:
>Audit-Trail:

From: nemysis <nemysis@gmx.ch>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/173352: [PATCH] games/gtkatlantic: OptionsNG, changed
 Makefile, added Desktop entries, icons, take maintainership
Date: Sat, 23 Feb 2013 01:54:20 +0100

 --MP_/.SXhPsEbKvPsXQDdtTFRBhc
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 Removed
 BUILD_DEPENDS=<>xpmtoppm:${PORTSDIR}/graphics/netpbm
 
 Added
 +               SF/nemysisfreebsdp/:icons
 +DISTFILES=     ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
 +               ${PORTNAME}_icons${EXTRACT_SUFX}:icons
 +ICON_SIZES=    16x16 32x32 48x48 64x64 72x72 96x96
 +DESKTOP_ENTRIES=
 ...
 --MP_/.SXhPsEbKvPsXQDdtTFRBhc
 Content-Type: text/x-patch
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment; filename=gtkatlantic.diff
 
 ===> Generating patch
 ===> Viewing diff with more
 diff -ruN --exclude=CVS /usr/ports/games/gtkatlantic/Makefile ./Makefile
 --- /usr/ports/games/gtkatlantic/Makefile	2013-01-14 17:55:32.000000000 +0100
 +++ ./Makefile	2013-02-23 01:46:10.000000000 +0100
 @@ -7,22 +7,51 @@
  
  PORTNAME=	gtkatlantic
  PORTVERSION=	0.4.3
 -PORTREVISION=	1
 +PORTREVISION=	2
  CATEGORIES=	games
 -MASTER_SITES=	http://download.tuxfamily.org/gtkatlantic/downloads/v0.4/
 +MASTER_SITES=	http://download.tuxfamily.org/${PORTNAME}/downloads/v0.4/ \
 +		SF/nemysisfreebsdp/:icons
 +DISTFILES=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
 +		${PORTNAME}_icons${EXTRACT_SUFX}:icons
  
 -MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A game like Monopoly(tm)
 +MAINTAINER=	nemysis@gmx.ch
 +COMMENT=	Game like Monopoly(tm)
 +
 +LICENSE=	GPLv2
  
  USE_BZIP2=	yes
  USE_GNOME=	gtk20
 -USE_GMAKE=	yes
  GNU_CONFIGURE=	yes
 +USE_GMAKE=	yes
 +
  CPPFLAGS+=	-I${LOCALBASE}/include
  LDFLAGS+=	-L${LOCALBASE}/lib
  
 +PORTDOCS=	AUTHORS ChangeLog NEWS README
 +
 +INSTALLS_ICONS=	yes
 +ICON_SIZES=	16x16 32x32 48x48 64x64 72x72 96x96
 +
 +DESKTOP_ENTRIES="GtkAtlantic" "${COMMENT}" "${PORTNAME}" \
 +		"${PORTNAME}" "Game;BoardGame;" false
 +
 +.include <bsd.port.options.mk>
 +
  post-patch:
 -	@${REINPLACE_CMD} -e '/-Werror/s|^|#|' ${WRKSRC}/configure
 +	@${REINPLACE_CMD} -e 's|-Wall -Werror||' ${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in
  
 +post-install:
 +.for s in ${ICON_SIZES}
 +	${MKDIR} ${PREFIX}/share/icons/hicolor/${s}/apps
 +	${INSTALL_DATA} ${WRKDIR}/${PORTNAME}_${s}.png \
 +		${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
 +.endfor
 +	${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps/
 +
 +.if ${PORT_OPTIONS:MDOCS}
 +	${MKDIR} ${DOCSDIR}
 +	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
 +.endif
 +
  .include <bsd.port.mk>
 diff -ruN --exclude=CVS /usr/ports/games/gtkatlantic/distinfo ./distinfo
 --- /usr/ports/games/gtkatlantic/distinfo	2013-01-14 17:55:32.000000000 +0100
 +++ ./distinfo	2013-02-23 01:38:38.000000000 +0100
 @@ -1,2 +1,4 @@
  SHA256 (gtkatlantic-0.4.3.tar.bz2) = 5711eab90b831816da48b1d30f0f0d2b511bfaa6b057240977296f2c133184b1
  SIZE (gtkatlantic-0.4.3.tar.bz2) = 748589
 +SHA256 (gtkatlantic_icons.tar.bz2) = 4cc2be7d3a8a586ca9f0b676e9425b3e5faef6d9e536070c1ef2be943fcd79c4
 +SIZE (gtkatlantic_icons.tar.bz2) = 26327
 diff -ruN --exclude=CVS /usr/ports/games/gtkatlantic/pkg-plist ./pkg-plist
 --- /usr/ports/games/gtkatlantic/pkg-plist	2013-01-14 17:55:32.000000000 +0100
 +++ ./pkg-plist	2013-02-23 01:40:18.000000000 +0100
 @@ -21,6 +21,27 @@
  %%DATADIR%%/themes/generic_gradient/theme.conf
  %%DATADIR%%/themes/generic_gradient/tokens.png
  %%DATADIR%%/tokens.png
 +share/icons/hicolor/16x16/apps/gtkatlantic.png
 +share/icons/hicolor/32x32/apps/gtkatlantic.png
 +share/icons/hicolor/48x48/apps/gtkatlantic.png
 +share/icons/hicolor/64x64/apps/gtkatlantic.png
 +share/icons/hicolor/72x72/apps/gtkatlantic.png
 +share/icons/hicolor/96x96/apps/gtkatlantic.png
 +share/pixmaps/gtkatlantic.png
 +@dirrmtry share/icons/hicolor/96x96/apps
 +@dirrmtry share/icons/hicolor/96x96
 +@dirrmtry share/icons/hicolor/72x72/apps
 +@dirrmtry share/icons/hicolor/72x72
 +@dirrmtry share/icons/hicolor/64x64/apps
 +@dirrmtry share/icons/hicolor/64x64
 +@dirrmtry share/icons/hicolor/48x48/apps
 +@dirrmtry share/icons/hicolor/48x48
 +@dirrmtry share/icons/hicolor/32x32/apps
 +@dirrmtry share/icons/hicolor/32x32
 +@dirrmtry share/icons/hicolor/16x16/apps
 +@dirrmtry share/icons/hicolor/16x16
 +@dirrmtry share/icons/hicolor
 +@dirrmtry share/icons
  @dirrm %%DATADIR%%/themes/generic_gradient
  @dirrm %%DATADIR%%/themes
  @dirrm %%DATADIR%%
 ===> Done
 
 --MP_/.SXhPsEbKvPsXQDdtTFRBhc--
Responsible-Changed-From-To: freebsd-ports-bugs->nemysis 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Wed Aug 14 09:29:37 UTC 2013 
Responsible-Changed-Why:  
submitter is now committer. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=173352 
State-Changed-From-To: open->closed 
State-Changed-By: nemysis 
State-Changed-When: Fri Jan 31 11:20:31 UTC 2014 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/173352: commit references a PR
Date: Fri, 31 Jan 2014 11:41:50 +0000 (UTC)

 Author: nemysis
 Date: Fri Jan 31 11:41:42 2014
 New Revision: 341979
 URL: http://svnweb.freebsd.org/changeset/ports/341979
 QAT: https://qat.redports.org/buildarchive/r341979/
 
 Log:
   - Update to 0.4.4
   - Change master sites and add icons
   - Take maintainership
   - Remove leading article from COMMENT
   - Remove USES gmake, build good without
   - Add licenses (GPLv2)
   - Disable all warnings with -w
   - Support STAGEDIR
   - Add DOCS and Option
   - Add Desktop entry file
   - Remove obsolete REINPLACE,
   - Add REINPLACE, make CFLAGS safe [1]
   - Remove obsolete patches
   
   PR:		ports/173352 ports/185932
   Submitted by:	nemysis (self), KATO Tsuguru <tkato432@yahoo.com> [1]
 
 Deleted:
   head/games/gtkatlantic/files/
 Modified:
   head/games/gtkatlantic/Makefile
   head/games/gtkatlantic/distinfo
   head/games/gtkatlantic/pkg-plist
 
 Modified: head/games/gtkatlantic/Makefile
 ==============================================================================
 --- head/games/gtkatlantic/Makefile	Fri Jan 31 11:37:32 2014	(r341978)
 +++ head/games/gtkatlantic/Makefile	Fri Jan 31 11:41:42 2014	(r341979)
 @@ -2,24 +2,50 @@
  # $FreeBSD$
  
  PORTNAME=	gtkatlantic
 -PORTVERSION=	0.4.3
 -PORTREVISION=	1
 +PORTVERSION=	0.4.4
  CATEGORIES=	games
 -MASTER_SITES=	http://download.tuxfamily.org/gtkatlantic/downloads/v0.4/
 +MASTER_SITES=	http://download.tuxfamily.org/gtkatlantic/downloads/v0.4/ \
 +		SF/nemysisfreebsdp/${CATEGORIES}/:icons
 +DISTFILES=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
 +		${PORTNAME}_icons${EXTRACT_SUFX}:icons
  
 -MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A game like Monopoly(tm)
 +MAINTAINER=	nemysis@FreeBSD.org
 +COMMENT=	Game like Monopoly(tm)
 +
 +LICENSE=	GPLv2
  
 -USES=		gmake pkgconfig
  USE_BZIP2=	yes
 +USES=		pkgconfig
  USE_GNOME=	gtk20
  GNU_CONFIGURE=	yes
 -CPPFLAGS+=	-I${LOCALBASE}/include
 +
 +CPPFLAGS+=	-I${LOCALBASE}/include -w
  LDFLAGS+=	-L${LOCALBASE}/lib
  
 -NO_STAGE=	yes
 +PORTDOCS=	AUTHORS ChangeLog NEWS README
 +
 +OPTIONS_DEFINE=	DOCS
 +
 +INSTALLS_ICONS=	yes
 +ICON_SIZES=	32x32 48x48 64x64 72x72 96x96 128x128
 +
 +DESKTOP_ENTRIES="GtkAtlantic" "" "${PORTNAME}" \
 +		"${PORTNAME}" "Game;BoardGame;" ""
 +
  post-patch:
 -	@${REINPLACE_CMD} -e '/-Werror/s|^|#|' ${WRKSRC}/configure
 +	@${REINPLACE_CMD} -e '/CFLAGS=/s|-ggdb|$$CFLAGS|' ${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in
  
 +post-install:
 +.for s in ${ICON_SIZES}
 +	@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps
 +	${INSTALL_DATA} ${WRKDIR}/${PORTNAME}_${s}.png \
 +		${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
 +.endfor
 +	${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \
 +		${STAGEDIR}${PREFIX}/share/pixmaps/
 +
 +	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 +	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 +
  .include <bsd.port.mk>
 
 Modified: head/games/gtkatlantic/distinfo
 ==============================================================================
 --- head/games/gtkatlantic/distinfo	Fri Jan 31 11:37:32 2014	(r341978)
 +++ head/games/gtkatlantic/distinfo	Fri Jan 31 11:41:42 2014	(r341979)
 @@ -1,2 +1,4 @@
 -SHA256 (gtkatlantic-0.4.3.tar.bz2) = 5711eab90b831816da48b1d30f0f0d2b511bfaa6b057240977296f2c133184b1
 -SIZE (gtkatlantic-0.4.3.tar.bz2) = 748589
 +SHA256 (gtkatlantic-0.4.4.tar.bz2) = 1f1676f74325807e3e405bd668b41764c76a67897f51290aaaf711db5e699c37
 +SIZE (gtkatlantic-0.4.4.tar.bz2) = 778679
 +SHA256 (gtkatlantic_icons.tar.bz2) = 73eaec5f7ef2014832ba2b4c5f610f007a7a98f109a5b1fb5c086c68bb57d440
 +SIZE (gtkatlantic_icons.tar.bz2) = 41628
 
 Modified: head/games/gtkatlantic/pkg-plist
 ==============================================================================
 --- head/games/gtkatlantic/pkg-plist	Fri Jan 31 11:37:32 2014	(r341978)
 +++ head/games/gtkatlantic/pkg-plist	Fri Jan 31 11:41:42 2014	(r341979)
 @@ -5,7 +5,9 @@ bin/gtkatlantic
  %%DATADIR%%/default.conf
  %%DATADIR%%/help.index
  %%DATADIR%%/houses.png
 +%%DATADIR%%/icon16x16.ico
  %%DATADIR%%/icon16x16.xpm
 +%%DATADIR%%/icon32x32.ico
  %%DATADIR%%/icon32x32.xpm
  %%DATADIR%%/interface.xml
  %%DATADIR%%/logo.png
 @@ -21,6 +23,13 @@ bin/gtkatlantic
  %%DATADIR%%/themes/generic_gradient/theme.conf
  %%DATADIR%%/themes/generic_gradient/tokens.png
  %%DATADIR%%/tokens.png
 +share/icons/hicolor/128x128/apps/gtkatlantic.png
 +share/icons/hicolor/32x32/apps/gtkatlantic.png
 +share/icons/hicolor/48x48/apps/gtkatlantic.png
 +share/icons/hicolor/64x64/apps/gtkatlantic.png
 +share/icons/hicolor/72x72/apps/gtkatlantic.png
 +share/icons/hicolor/96x96/apps/gtkatlantic.png
 +share/pixmaps/gtkatlantic.png
  @dirrm %%DATADIR%%/themes/generic_gradient
  @dirrm %%DATADIR%%/themes
  @dirrm %%DATADIR%%
 _______________________________________________
 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:
