From nemysis@gmx.ch  Wed Jun 19 06:31:53 2013
Return-Path: <nemysis@gmx.ch>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	by hub.freebsd.org (Postfix) with ESMTP id F065E8B5
	for <freebsd-gnats-submit@freebsd.org>; Wed, 19 Jun 2013 06:31:53 +0000 (UTC)
	(envelope-from nemysis@gmx.ch)
Received: from mout.gmx.net (mout.gmx.net [212.227.17.22])
	by mx1.freebsd.org (Postfix) with ESMTP id 9DEB51C42
	for <freebsd-gnats-submit@freebsd.org>; Wed, 19 Jun 2013 06:31:53 +0000 (UTC)
Received: from mailout-de.gmx.net ([10.1.76.19]) by mrigmx.server.lan
 (mrigmx001) with ESMTP (Nemesis) id 0M7nFW-1U2qXA0cwi-00vSny for
 <FreeBSD-gnats-submit@freebsd.org>; Wed, 19 Jun 2013 08:31:52 +0200
Received: (qmail invoked by alias); 19 Jun 2013 06:31:51 -0000
Received: from 5-80.77-83.cust.bluewin.ch (EHLO something.email.com) [83.77.80.5]
  by mail.gmx.net (mp019) with SMTP; 19 Jun 2013 08:31:51 +0200
Received: by something.email.com (sSMTP sendmail emulation); Wed, 19 Jun 2013 08:31:49 +0200
Message-Id: <20130619063153.F065E8B5@hub.freebsd.org>
Date: Wed, 19 Jun 2013 08:31:49 +0200
From: nemysis <nemysis@gmx.ch>
To: FreeBSD-gnats-submit@freebsd.org
Cc: jpaetzel@FreeBSD.org
Subject: [PATCH] x11/libfm: Fix NLS, take maintainership
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         179703
>Category:       ports
>Synopsis:       [PATCH] x11/libfm: Fix NLS, take maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    wg
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 19 06:40:00 UTC 2013
>Closed-Date:    Sat Jun 22 12:00:38 UTC 2013
>Last-Modified:  Sat Jun 22 12:00:38 UTC 2013
>Originator:     nemysis
>Release:        FreeBSD 9.1-RELEASE-p3 amd64
>Organization:
>Environment:
System: FreeBSD FreeBSD_Ports 9.1-RELEASE-p3 FreeBSD 9.1-RELEASE-p3 #0: Mon Apr 29 18:27:25 UTC 2013
>Description:

- Take maintainership
- Use REINPLACE_CMD instead of simple patches
- Fix NLS
- Trim pkg-plist

Removed file(s):
- files/patch-configure

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

Build log

https://redports.org/buildarchive/20130619054001-4518/

>Fix:

--- libfm-1.1.0.patch begins here ---
diff -ruN /usr/ports/x11/libfm/Makefile ./Makefile
--- /usr/ports/x11/libfm/Makefile	2013-06-18 18:26:39.000000000 +0200
+++ ./Makefile	2013-06-19 07:01:22.000000000 +0200
@@ -6,7 +6,7 @@
 CATEGORIES=	x11
 MASTER_SITES=	SF/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/libfm%20%28required%20by%20PCManFM%29/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	nemysis@gmx.ch
 COMMENT=	The libFM backend library to PCManFM
 
 LICENSE=	GPLv2
@@ -14,15 +14,16 @@
 LIB_DEPENDS=	startup-notification-1:${PORTSDIR}/x11/startup-notification \
 		menu-cache.1:${PORTSDIR}/x11/menu-cache
 
+USES=		pkgconfig
 USE_GNOME=	gnomehack gtk20
 USE_AUTOTOOLS=	libtool
+CONFIGURE_ARGS+=--sysconfdir=${LOCALBASE}/etc
 USE_GMAKE=	yes
 USE_FAM=	yes
 USE_LDCONFIG=	yes
-USES=		pkgconfig
+
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
-CONFIGURE_ARGS+=--sysconfdir=${LOCALBASE}/etc
 
 MAN1=		libfm-pref-apps.1
 
@@ -34,18 +35,24 @@
 USES+=		gettext
 PLIST_SUB+=	NLS=""
 .else
-CONFIGURE_ARGS+=--disable-nls
 PLIST_SUB+=	NLS="@comment "
 .endif
 
 post-patch:
+	@${REINPLACE_CMD} -e 's|^VALAC.*|VALAC=""|' \
+		${WRKSRC}/configure
 	@${REINPLACE_CMD} -e 's|-DG_DISABLE_DEPRECATED||g' \
 		${WRKSRC}/src/Makefile.in
 	@${REINPLACE_CMD} -e \
 		's|-Wno-unused-but-set-variable||' \
 		${WRKSRC}/src/actions/Makefile.am ${WRKSRC}/src/actions/Makefile.in
 
+.if ! ${PORT_OPTIONS:MNLS}
+	@${REINPLACE_CMD} -e 's|src po|src|' \
+		${WRKSRC}/Makefile.in
+.endif
+
 pre-install:
-	cd ${WRKDIR}/libfm-${PORTVERSION} && ${CHMOD} 755 install-sh
+	@(cd ${WRKDIR}/libfm-${PORTVERSION} && ${CHMOD} 755 install-sh)
 
 .include <bsd.port.mk>
diff -ruN /usr/ports/x11/libfm/files/patch-configure ./files/patch-configure
--- /usr/ports/x11/libfm/files/patch-configure	2013-06-02 18:57:09.000000000 +0200
+++ ./files/patch-configure	1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
---- configure.orig	2012-09-06 10:00:49.687508071 -0400
-+++ configure	2012-09-06 10:01:00.168508809 -0400
-@@ -12491,7 +12491,7 @@
-   ;;
- esac
- fi
--VALAC=$ac_cv_path_VALAC
-+VALAC=""
- if test -n "$VALAC"; then
-   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VALAC" >&5
- $as_echo "$VALAC" >&6; }
diff -ruN /usr/ports/x11/libfm/pkg-plist ./pkg-plist
--- /usr/ports/x11/libfm/pkg-plist	2013-06-02 18:57:09.000000000 +0200
+++ ./pkg-plist	2013-06-19 07:30:34.000000000 +0200
@@ -140,19 +140,20 @@
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/libfm.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/libfm.mo
 share/mime/packages/libfm.xml
-@dirrm etc/xdg/libfm
-@dirrm etc/xdg
-@dirrmtry share/locale/es_VE/LC_MESSAGES
-@dirrmtry share/locale/es_VE
-@dirrmtry share/locale/lg/LC_MESSAGES
-@dirrmtry share/locale/lg
-@dirrmtry share/locale/tt_RU/LC_MESSAGES
-@dirrmtry share/locale/tt_RU
-@dirrmtry share/locale/ur_PK/LC_MESSAGES
-@dirrmtry share/locale/ur_PK
-@dirrmtry share/applications
 @dirrmtry share/mime/packages
 @dirrmtry share/mime
+@dirrm etc/xdg/libfm
+@dirrm etc/xdg
+%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur_PK
+%%NLS%%@dirrmtry share/locale/tt_RU/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/tt_RU
+%%NLS%%@dirrmtry share/locale/lg/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/lg
+%%NLS%%@dirrmtry share/locale/es_VE/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/es_VE
 @dirrm %%DATADIR%%/ui
 @dirrm %%DATADIR%%
+@dirrmtry share/applications
 @dirrm include/libfm-1.0
+@dirrm include/libfm
--- libfm-1.1.0.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->wg 
Responsible-Changed-By: wg 
Responsible-Changed-When: Fri Jun 21 12:59:58 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

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

From: William Grzybowski <william88@gmail.com>
To: bug-followup@FreeBSD.org, nemysis@gmx.ch
Cc:  
Subject: Re: ports/179703: [PATCH] x11/libfm: Fix NLS, take maintainership
Date: Fri, 21 Jun 2013 10:26:13 -0300

 The build is not completely clean:
 
 pkg_delete: unable to completely remove directory '/usr/local/etc/xdg'
 pkg_delete: file '/usr/local/include/libfm' doesn't exist
 pkg_delete: unable to completely remove directory '/usr/local/include/libfm'
 pkg_delete: couldn't entirely delete package `libfm-1.1.0'
 (perhaps the packing list is incorrectly specified?)
 
 
 
 --
 William Grzybowski
 ------------------------------------------
 Curitiba/PR - Brasil

From: nemysis <nemysis@gmx.ch>
To: bug-followup@FreeBSD.org, William Grzybowski <william88@gmail.com>
Cc:  
Subject: Re: ports/179703: [PATCH] x11/libfm: Fix NLS, take maintainership
Date: Sat, 22 Jun 2013 01:21:26 +0200

 --MP_/PyEOnPW9PTaI2C=5bh/N2aT
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 On Fri, 21 Jun 2013 10:26:13 -0300
 William Grzybowski <william88@gmail.com> wrote:
 
 > The build is not completely clean:
 > 
 > pkg_delete: unable to completely remove directory '/usr/local/etc/xdg'
 > pkg_delete: file '/usr/local/include/libfm' doesn't exist
 > pkg_delete: unable to completely remove directory '/usr/local/include/libfm'
 > pkg_delete: couldn't entirely delete package `libfm-1.1.0'
 > (perhaps the packing list is incorrectly specified?)
 > 
 > 
 > 
 > --
 > William Grzybowski
 > ------------------------------------------
 > Curitiba/PR - Brasil
 
 Now are all test clean, have not try on RedPorts but knew is good.
 --MP_/PyEOnPW9PTaI2C=5bh/N2aT
 Content-Type: text/x-patch
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment; filename=libfm.diff
 
 ===> Generating patch
 ===> Viewing diff with more
 diff -ruN /usr/ports/x11/libfm/Makefile ./Makefile
 --- /usr/ports/x11/libfm/Makefile	2013-06-20 21:56:58.000000000 +0200
 +++ ./Makefile	2013-06-22 01:10:40.000000000 +0200
 @@ -7,7 +7,7 @@
  CATEGORIES=	x11
  MASTER_SITES=	SF/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/libfm%20%28required%20by%20PCManFM%29/
  
 -MAINTAINER=	ports@FreeBSD.org
 +MAINTAINER=	nemysis@gmx.ch
  COMMENT=	The libFM backend library to PCManFM
  
  LICENSE=	GPLv2
 @@ -15,38 +15,53 @@
  LIB_DEPENDS=	startup-notification-1:${PORTSDIR}/x11/startup-notification \
  		menu-cache:${PORTSDIR}/x11/menu-cache
  
 +USES=		pkgconfig
  USE_GNOME=	gnomehack gtk20
  USE_AUTOTOOLS=	libtool
 +CONFIGURE_ARGS+=--sysconfdir=${LOCALBASE}/etc
  USE_GMAKE=	yes
  USE_FAM=	yes
  USE_LDCONFIG=	yes
 -USES=		pkgconfig
 +
  CPPFLAGS+=	-I${LOCALBASE}/include
  LDFLAGS+=	-L${LOCALBASE}/lib
 -CONFIGURE_ARGS+=--sysconfdir=${LOCALBASE}/etc
  
  MAN1=		libfm-pref-apps.1
  
  OPTIONS_DEFINE=	NLS
 +OPTIONS_SUB=	yes
  
 -.include <bsd.port.options.mk>
 +NLS_USES=	gettext
  
 -.if ${PORT_OPTIONS:MNLS}
 -USES+=		gettext
 -PLIST_SUB+=	NLS=""
 -.else
 -CONFIGURE_ARGS+=--disable-nls
 -PLIST_SUB+=	NLS="@comment "
 -.endif
 +.include <bsd.port.options.mk>
  
  post-patch:
 +	@${REINPLACE_CMD} -e 's|^VALAC.*|VALAC=""|' \
 +		${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|-DG_DISABLE_DEPRECATED||g' \
  		${WRKSRC}/src/Makefile.in
  	@${REINPLACE_CMD} -e \
  		's|-Wno-unused-but-set-variable||' \
  		${WRKSRC}/src/actions/Makefile.am ${WRKSRC}/src/actions/Makefile.in
 +	@${REINPLACE_CMD} -e '/libfm.conf/,/pref-apps.conf/ d' ${WRKSRC}/data/Makefile.in
 +
 +.if ! ${PORT_OPTIONS:MNLS}
 +	@${REINPLACE_CMD} -e 's|src po|src|' \
 +		${WRKSRC}/Makefile.in
 +.endif
  
  pre-install:
 -	cd ${WRKDIR}/libfm-${PORTVERSION} && ${CHMOD} 755 install-sh
 +	@(cd ${WRKDIR}/libfm-${PORTVERSION} && ${CHMOD} 755 install-sh)
 +
 +post-install:
 +	${MKDIR} ${PREFIX}/etc/xdg/libfm
 +	${INSTALL_DATA} ${WRKSRC}/data/libfm.conf ${PREFIX}/etc/xdg/libfm/libfm.conf.sample
 +	${INSTALL_DATA} ${WRKSRC}/data/pref-apps.conf ${PREFIX}/etc/xdg/libfm/pref-apps.conf.sample
 +.if ! exists(${PREFIX}/etc/xdg/libfm/libfm.conf)
 +	${INSTALL_DATA} ${WRKSRC}/data/libfm.conf ${PREFIX}/etc/xdg/libfm/libfm.conf
 +.endif
 +.if ! exists(${PREFIX}/etc/xdg/libfm/pref-apps.conf.sample)
 +	${INSTALL_DATA} ${WRKSRC}/data/pref-apps.conf ${PREFIX}/etc/xdg/libfm/pref-apps.conf.sample
 +.endif
  
  .include <bsd.port.mk>
 diff -ruN /usr/ports/x11/libfm/files/patch-configure ./files/patch-configure
 --- /usr/ports/x11/libfm/files/patch-configure	2013-06-02 18:57:09.000000000 +0200
 +++ ./files/patch-configure	1970-01-01 01:00:00.000000000 +0100
 @@ -1,11 +0,0 @@
 ---- configure.orig	2012-09-06 10:00:49.687508071 -0400
 -+++ configure	2012-09-06 10:01:00.168508809 -0400
 -@@ -12491,7 +12491,7 @@
 -   ;;
 - esac
 - fi
 --VALAC=$ac_cv_path_VALAC
 -+VALAC=""
 - if test -n "$VALAC"; then
 -   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VALAC" >&5
 - $as_echo "$VALAC" >&6; }
 diff -ruN /usr/ports/x11/libfm/pkg-plist ./pkg-plist
 --- /usr/ports/x11/libfm/pkg-plist	2013-06-02 18:57:09.000000000 +0200
 +++ ./pkg-plist	2013-06-22 01:10:28.000000000 +0200
 @@ -1,7 +1,11 @@
  bin/libfm-pref-apps
 -etc/xdg/libfm/libfm.conf
 -etc/xdg/libfm/pref-apps.conf
  include/libfm
 +@unexec if cmp -s %D/etc/xdg/libfm/libfm.conf %D/etc/xdg/libfm/libfm.conf.sample; then rm -f %D/etc/xdg/libfm/libfm.conf; fi
 +etc/xdg/libfm/libfm.conf.sample
 +@exec if [ ! -f %D/etc/xdg/libfm/libfm.conf ] ; then cp -p %D/%F %B/libfm.conf; fi
 +@unexec if cmp -s %D/etc/xdg/libfm/pref-apps.conf %D/etc/xdg/libfm/pref-apps.conf.sample; then rm -f %D/etc/xdg/libfm/pref-apps.conf; fi
 +etc/xdg/libfm/pref-apps.conf.sample
 +@exec if [ ! -f %D/etc/xdg/libfm/pref-apps.conf ] ; then cp -p %D/%F %B/pref-apps.conf; fi
  include/libfm-1.0/fm-actions.h
  include/libfm-1.0/fm-app-chooser-combo-box.h
  include/libfm-1.0/fm-app-chooser-dlg.h
 @@ -140,19 +144,18 @@
  %%NLS%%share/locale/zh_CN/LC_MESSAGES/libfm.mo
  %%NLS%%share/locale/zh_TW/LC_MESSAGES/libfm.mo
  share/mime/packages/libfm.xml
 -@dirrm etc/xdg/libfm
 -@dirrm etc/xdg
 -@dirrmtry share/locale/es_VE/LC_MESSAGES
 -@dirrmtry share/locale/es_VE
 -@dirrmtry share/locale/lg/LC_MESSAGES
 -@dirrmtry share/locale/lg
 -@dirrmtry share/locale/tt_RU/LC_MESSAGES
 -@dirrmtry share/locale/tt_RU
 -@dirrmtry share/locale/ur_PK/LC_MESSAGES
 -@dirrmtry share/locale/ur_PK
 -@dirrmtry share/applications
  @dirrmtry share/mime/packages
  @dirrmtry share/mime
 +%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/ur_PK
 +%%NLS%%@dirrmtry share/locale/tt_RU/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/tt_RU
 +%%NLS%%@dirrmtry share/locale/lg/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/lg
 +%%NLS%%@dirrmtry share/locale/es_VE/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/es_VE
  @dirrm %%DATADIR%%/ui
  @dirrm %%DATADIR%%
 +@dirrmtry share/applications
  @dirrm include/libfm-1.0
 +@dirrm include/libfm
 ===> Done
 
 --MP_/PyEOnPW9PTaI2C=5bh/N2aT--

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/179703: commit references a PR
Date: Sat, 22 Jun 2013 11:57:16 +0000 (UTC)

 Author: wg
 Date: Sat Jun 22 11:57:08 2013
 New Revision: 321568
 URL: http://svnweb.freebsd.org/changeset/ports/321568
 
 Log:
   x11/libfm: minor fixes
   
   - Fix NLS option [1]
   - Preserve .conf files [1]
   - Pass maintainership to submitter [1]
   - Fix pkg-plist and install of .conf
   
   PR:		ports/179703 [1]
   Submitted by:	nemysis <nemysis@gmx.ch>
 
 Deleted:
   head/x11/libfm/files/
 Modified:
   head/x11/libfm/Makefile
   head/x11/libfm/pkg-plist
 
 Modified: head/x11/libfm/Makefile
 ==============================================================================
 --- head/x11/libfm/Makefile	Sat Jun 22 11:47:57 2013	(r321567)
 +++ head/x11/libfm/Makefile	Sat Jun 22 11:57:08 2013	(r321568)
 @@ -7,7 +7,7 @@ PORTREVISION=	1
  CATEGORIES=	x11
  MASTER_SITES=	SF/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/libfm%20%28required%20by%20PCManFM%29/
  
 -MAINTAINER=	ports@FreeBSD.org
 +MAINTAINER=	nemysis@gmx.ch
  COMMENT=	The libFM backend library to PCManFM
  
  LICENSE=	GPLv2
 @@ -15,38 +15,53 @@ LICENSE=	GPLv2
  LIB_DEPENDS=	startup-notification-1:${PORTSDIR}/x11/startup-notification \
  		menu-cache:${PORTSDIR}/x11/menu-cache
  
 +USES=		pkgconfig
  USE_GNOME=	gnomehack gtk20
  USE_AUTOTOOLS=	libtool
 +CONFIGURE_ARGS+=--sysconfdir=${LOCALBASE}/etc
  USE_GMAKE=	yes
  USE_FAM=	yes
  USE_LDCONFIG=	yes
 -USES=		pkgconfig
 +
  CPPFLAGS+=	-I${LOCALBASE}/include
  LDFLAGS+=	-L${LOCALBASE}/lib
 -CONFIGURE_ARGS+=--sysconfdir=${LOCALBASE}/etc
  
  MAN1=		libfm-pref-apps.1
  
  OPTIONS_DEFINE=	NLS
 +OPTIONS_SUB=	yes
  
 -.include <bsd.port.options.mk>
 +NLS_USES=	gettext
  
 -.if ${PORT_OPTIONS:MNLS}
 -USES+=		gettext
 -PLIST_SUB+=	NLS=""
 -.else
 -CONFIGURE_ARGS+=--disable-nls
 -PLIST_SUB+=	NLS="@comment "
 -.endif
 +.include <bsd.port.options.mk>
  
  post-patch:
 +	@${REINPLACE_CMD} -e 's|^VALAC.*|VALAC=""|' \
 +		${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|-DG_DISABLE_DEPRECATED||g' \
  		${WRKSRC}/src/Makefile.in
  	@${REINPLACE_CMD} -e \
  		's|-Wno-unused-but-set-variable||' \
  		${WRKSRC}/src/actions/Makefile.am ${WRKSRC}/src/actions/Makefile.in
 +	@${REINPLACE_CMD} -e '/libfm.conf/,/pref-apps.conf/ d' ${WRKSRC}/data/Makefile.in
 +
 +.if ! ${PORT_OPTIONS:MNLS}
 +	@${REINPLACE_CMD} -e 's|src po|src|' \
 +		${WRKSRC}/Makefile.in
 +.endif
  
  pre-install:
 -	cd ${WRKDIR}/libfm-${PORTVERSION} && ${CHMOD} 755 install-sh
 +	@(cd ${WRKDIR}/libfm-${PORTVERSION} && ${CHMOD} 755 install-sh)
 +
 +post-install:
 +	${MKDIR} ${PREFIX}/etc/xdg/libfm
 +	${INSTALL_DATA} ${WRKSRC}/data/libfm.conf ${PREFIX}/etc/xdg/libfm/libfm.conf.sample
 +	${INSTALL_DATA} ${WRKSRC}/data/pref-apps.conf ${PREFIX}/etc/xdg/libfm/pref-apps.conf.sample
 +.if ! exists(${PREFIX}/etc/xdg/libfm/libfm.conf)
 +	${INSTALL_DATA} ${WRKSRC}/data/libfm.conf ${PREFIX}/etc/xdg/libfm/libfm.conf
 +.endif
 +.if ! exists(${PREFIX}/etc/xdg/libfm/pref-apps.conf)
 +	${INSTALL_DATA} ${WRKSRC}/data/pref-apps.conf ${PREFIX}/etc/xdg/libfm/pref-apps.conf
 +.endif
  
  .include <bsd.port.mk>
 
 Modified: head/x11/libfm/pkg-plist
 ==============================================================================
 --- head/x11/libfm/pkg-plist	Sat Jun 22 11:47:57 2013	(r321567)
 +++ head/x11/libfm/pkg-plist	Sat Jun 22 11:57:08 2013	(r321568)
 @@ -1,7 +1,11 @@
  bin/libfm-pref-apps
 -etc/xdg/libfm/libfm.conf
 -etc/xdg/libfm/pref-apps.conf
  include/libfm
 +@unexec if cmp -s %D/etc/xdg/libfm/libfm.conf %D/etc/xdg/libfm/libfm.conf.sample; then rm -f %D/etc/xdg/libfm/libfm.conf; fi
 +etc/xdg/libfm/libfm.conf.sample
 +@exec if [ ! -f %D/etc/xdg/libfm/libfm.conf ] ; then cp -p %D/%F %B/libfm.conf; fi
 +@unexec if cmp -s %D/etc/xdg/libfm/pref-apps.conf %D/etc/xdg/libfm/pref-apps.conf.sample; then rm -f %D/etc/xdg/libfm/pref-apps.conf; fi
 +etc/xdg/libfm/pref-apps.conf.sample
 +@exec if [ ! -f %D/etc/xdg/libfm/pref-apps.conf ] ; then cp -p %D/%F %B/pref-apps.conf; fi
  include/libfm-1.0/fm-actions.h
  include/libfm-1.0/fm-app-chooser-combo-box.h
  include/libfm-1.0/fm-app-chooser-dlg.h
 @@ -140,19 +144,19 @@ share/applications/libfm-pref-apps.deskt
  %%NLS%%share/locale/zh_CN/LC_MESSAGES/libfm.mo
  %%NLS%%share/locale/zh_TW/LC_MESSAGES/libfm.mo
  share/mime/packages/libfm.xml
 -@dirrm etc/xdg/libfm
 -@dirrm etc/xdg
 -@dirrmtry share/locale/es_VE/LC_MESSAGES
 -@dirrmtry share/locale/es_VE
 -@dirrmtry share/locale/lg/LC_MESSAGES
 -@dirrmtry share/locale/lg
 -@dirrmtry share/locale/tt_RU/LC_MESSAGES
 -@dirrmtry share/locale/tt_RU
 -@dirrmtry share/locale/ur_PK/LC_MESSAGES
 -@dirrmtry share/locale/ur_PK
 -@dirrmtry share/applications
 +@dirrmtry etc/xdg/libfm
 +@dirrmtry etc/xdg
  @dirrmtry share/mime/packages
  @dirrmtry share/mime
 +%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/ur_PK
 +%%NLS%%@dirrmtry share/locale/tt_RU/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/tt_RU
 +%%NLS%%@dirrmtry share/locale/lg/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/lg
 +%%NLS%%@dirrmtry share/locale/es_VE/LC_MESSAGES
 +%%NLS%%@dirrmtry share/locale/es_VE
  @dirrm %%DATADIR%%/ui
  @dirrm %%DATADIR%%
 +@dirrmtry share/applications
  @dirrm include/libfm-1.0
 _______________________________________________
 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"
 
State-Changed-From-To: open->closed 
State-Changed-By: wg 
State-Changed-When: Sat Jun 22 12:00:38 UTC 2013 
State-Changed-Why:  
Committed. Thanks! 

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