Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Mar 2013 23:24:58 +0100
From:      nemysis <nemysis@gmx.ch>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        gnome@FreeBSD.org
Subject:   ports/177090: [PATCH] graphics/evince: Convert to OptionsNG
Message-ID:  <20130318222506.2CE7F3B9@hub.freebsd.org>
Resent-Message-ID: <201303182230.r2IMU0Ml031464@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         177090
>Category:       ports
>Synopsis:       [PATCH] graphics/evince: Convert to OptionsNG
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Mar 18 22:30:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     nemysis
>Release:        FreeBSD 9.1-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD FreeBSD_Ports 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10
>Description:

Remove DOCS from pkg-plist.

Port maintainer (gnome@FreeBSD.org) is cc'd.

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

portlint -A
looks usual.

port test: clean

>Fix:

--- evince-2.32.0_10.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/graphics/evince/Makefile ./Makefile
--- /usr/ports/graphics/evince/Makefile	2013-01-14 17:56:59.000000000 +0100
+++ ./Makefile	2013-03-18 22:51:43.000000000 +0100
@@ -1,14 +1,10 @@
-# New ports collection makefile for:	evince
-# Date created:				09 January 2005
-# Whom:					Adam Weinberger <adamw@FreeBSD.org>
-#
+# Created by: Adam Weinberger <adamw@FreeBSD.org>
 # $FreeBSD: head/graphics/evince/Makefile 300896 2012-07-14 13:54:48Z beat $
 #    $MCom: ports/graphics/evince/Makefile,v 1.147 2010/09/28 07:27:12 kwm Exp $
-#
 
 PORTNAME=	evince
 PORTVERSION=	2.32.0
-PORTREVISION=	9
+PORTREVISION=	10
 CATEGORIES=	graphics print gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome2
@@ -17,7 +13,7 @@
 COMMENT=	GNOME 2 multi-format document viewer
 
 BUILD_DEPENDS=	${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme
-LIB_DEPENDS=	poppler-glib.8:${PORTSDIR}/graphics/poppler-glib \
+LIB_DEPENDS=	poppler-glib:${PORTSDIR}/graphics/poppler-glib \
 		spectre.1:${PORTSDIR}/print/libspectre
 RUN_DEPENDS=	${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme \
 		yelp:${PORTSDIR}/x11/yelp
@@ -26,7 +22,6 @@
 USE_BZIP2=	yes
 USE_AUTOTOOLS=	libtool
 INSTALLS_ICONS=	yes
-USE_GETTEXT=	yes
 USE_GMAKE=	yes
 INSTALLS_OMF=	yes
 USE_GNOME=	gnomehack intlhack gnomeprefix desktopfileutils \
@@ -43,29 +38,43 @@
 
 MAN1=		evince.1
 
-OPTIONS=	DVI		"Enable DVI viewer support"		off \
-		T1LIB		"Enable T1LIB for TYPE1 fonts to DVI (Enables DVI)"	off \
-		NAUTILUS	"Enable Nautilus plugin"		on  \
-		KEYRING		"Enable Gnome-Keyring without Nautilus" on \
-		DBUS		"Enable D-BUS support"			on \
-		COMICS		"Enable comic book archives support"	on \
-		IMPRESS		"Enable Impress presentations support"	off \
-		DJVU		"Enable DJVU support"			off
+PORTDOCS=	*
+
+OPTIONS_DEFINE=	NLS DVI T1LIB NAUTILUS KEYRING DBUS COMICS IMPRESS DJVU
+
+DVI_DESC=		Enable DVI viewer support
+T1LIB_DESC=		Enable T1LIB for TYPE1 fonts to DVI (Enables DVI)
+NAUTILUS_DESC=		Enable Nautilus plugin
+KEYRING_DESC=		Enable Gnome-Keyring without Nautilus
+COMICS_DESC=		Enable comic book archives support
+IMPRESS_DESC=		Enable Impress presentations support
+DJVU_DESC=		Enable DJVU support
+
+OPTIONS_DEFAULT=	NAUTILUS KEYRING DBUS COMICS
 
 .include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MNLS}
+USE_GETTEXT=	yes
+PLIST_SUB+=	NLS=""
+.else
+CONFIGURE_ARGS+=	--disable-nls
+PLIST_SUB+=	NLS="@comment "
+.endif
 
 .if defined(PACKAGE_BUILDING) || exists(${LOCALBASE}/lib/libdbus-glib-1.so)
 WITH_DBUS=	yes
 .endif
 
-.if defined(WITH_DVI) || defined(WITH_T1LIB) || exists(${LOCALBASE}/lib/libkpathsea.a)
+.if ${PORT_OPTIONS:MDVI} || ${PORT_OPTIONS:MT1LIB} || exists(${LOCALBASE}/lib/libkpathsea.a)
 BUILD_DEPENDS+=	tex:${PORTSDIR}/print/teTeX-base
 RUN_DEPENDS+=	tex:${PORTSDIR}/print/teTeX-base
 
 CONFIGURE_ARGS+=	--enable-dvi
 GCONF_SCHEMAS+=	evince-thumbnailer-dvi.schemas
 PLIST_SUB+=		DVI=""
-. if defined(WITH_T1LIB)
+. if${PORT_OPTIONS:MT1LIB}
 LIB_DEPENDS+=	t1.5:${PORTSDIR}/devel/t1lib
 
 CONFIGURE_ARGS+=	--enable-t1lib
@@ -74,15 +83,15 @@
 PLIST_SUB+=		DVI="@comment "
 .endif
 
-.if !defined(WITHOUT_NAUTILUS)
+.if ${PORT_OPTIONS:MNAUTILUS}
 USE_GNOME+=		nautilus2
 CONFIGURE_ARGS+=	--enable-nautilus
 PLIST_SUB+=		NAUTILUS=""
 .else
 BUILD_DEPENDS+=	${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme
 RUN_DEPENDS+=	${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme
-.if !defined(WITHOUT_KEYRING)
-LIB_DEPENDS+=	gnome-keyring.0:${PORTSDIR}/security/libgnome-keyring
+.if ${PORT_OPTIONS:MKEYRING}
+LIB_DEPENDS+=	gnome-keyring:${PORTSDIR}/security/libgnome-keyring
 .else
 CONFIGURE_ARGS+=	--without-keyring
 .endif
@@ -90,7 +99,7 @@
 PLIST_SUB+=		NAUTILUS="@comment "
 .endif
 
-.if defined(WITH_IMPRESS)
+.if ${PORT_OPTIONS:MIMPRESS}
 CONFIGURE_ARGS+=	--enable-impress
 PLIST_SUB+=		IMPRESS=""
 .else
@@ -98,7 +107,7 @@
 PLIST_SUB+=		IMPRESS="@comment "
 .endif
 
-.if defined(WITH_DJVU)
+.if ${PORT_OPTIONS:MDJVU}
 LIB_DEPENDS+=		djvulibre:${PORTSDIR}/graphics/djvulibre
 CONFIGURE_ARGS+=	--enable-djvu
 GCONF_SCHEMAS+=		evince-thumbnailer-djvu.schemas
@@ -108,11 +117,11 @@
 PLIST_SUB+=		DJVU="@comment "
 .endif
 
-.if !defined(WITHOUT_DBUS)
-LIB_DEPENDS+=	dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
+.if ${PORT_OPTIONS:MDBUS}
+LIB_DEPENDS+=	dbus-glib:${PORTSDIR}/devel/dbus-glib
 .endif
 
-.if !defined(WITHOUT_COMICS)
+.if ${PORT_OPTIONS:MCOMICS}
 RUN_DEPENDS+=		unzip:${PORTSDIR}/archivers/unzip
 CONFIGURE_ARGS+=	--enable-comics
 GCONF_SCHEMAS+=		evince-thumbnailer-comics.schemas
@@ -131,6 +140,6 @@
 		${WRKSRC}/help/reference/libview/Makefile.in
 
 post-install:
-	@-update-desktop-database
+	@-update-desktop-database -q
 
 .include <bsd.port.post.mk>
diff -ruN --exclude=CVS /usr/ports/graphics/evince/pkg-plist ./pkg-plist
--- /usr/ports/graphics/evince/pkg-plist	2013-01-14 17:56:59.000000000 +0100
+++ ./pkg-plist	2013-03-18 23:15:28.000000000 +0100
@@ -94,46 +94,6 @@
 share/GConf/gsettings/evince.convert
 share/applications/evince.desktop
 share/dbus-1/services/org.gnome.evince.Daemon.service
-%%DOCSDIR%%/EggFindBar.html
-%%DOCSDIR%%/EvFileMonitor.html
-%%DOCSDIR%%/EvHistory.html
-%%DOCSDIR%%/EvMessageArea.html
-%%DOCSDIR%%/EvNavigationAction.html
-%%DOCSDIR%%/EvNavigationActionWidget.html
-%%DOCSDIR%%/EvOpenRecentAction.html
-%%DOCSDIR%%/EvPageAction.html
-%%DOCSDIR%%/EvPageActionWidget.html
-%%DOCSDIR%%/EvPasswordView.html
-%%DOCSDIR%%/EvProgressMessageArea.html
-%%DOCSDIR%%/EvSidebar.html
-%%DOCSDIR%%/EvSidebarAttachments.html
-%%DOCSDIR%%/EvSidebarLayers.html
-%%DOCSDIR%%/EvSidebarLinks.html
-%%DOCSDIR%%/EvSidebarPage.html
-%%DOCSDIR%%/EvSidebarThumbnails.html
-%%DOCSDIR%%/EvWindow.html
-%%DOCSDIR%%/api-index-full.html
-%%DOCSDIR%%/evince-ev-application.html
-%%DOCSDIR%%/evince-ev-keyring.html
-%%DOCSDIR%%/evince-ev-media-player-keys.html
-%%DOCSDIR%%/evince-ev-metadata.html
-%%DOCSDIR%%/evince-ev-properties-dialog.html
-%%DOCSDIR%%/evince-ev-properties-fonts.html
-%%DOCSDIR%%/evince-ev-properties-license.html
-%%DOCSDIR%%/evince-ev-utils.html
-%%DOCSDIR%%/evince-ev-window-title.html
-%%DOCSDIR%%/evince-frontend.html
-%%DOCSDIR%%/evince.devhelp
-%%DOCSDIR%%/evince.devhelp2
-%%DOCSDIR%%/home.png
-%%DOCSDIR%%/index.html
-%%DOCSDIR%%/index.sgml
-%%DOCSDIR%%/left.png
-%%DOCSDIR%%/licence.html
-%%DOCSDIR%%/object-tree.html
-%%DOCSDIR%%/right.png
-%%DOCSDIR%%/style.css
-%%DOCSDIR%%/up.png
 share/doc/libevdocument/EvAnnotation.html
 share/doc/libevdocument/EvAsyncRenderer.html
 share/doc/libevdocument/EvAttachment.html
@@ -149,6 +109,7 @@
 share/doc/libevdocument/EvDocumentPrint.html
 share/doc/libevdocument/EvDocumentSecurity.html
 share/doc/libevdocument/EvDocumentThumbnails.html
+share/doc/libevdocument/up.png
 share/doc/libevdocument/EvDocumentTransition.html
 share/doc/libevdocument/EvFileExporter.html
 share/doc/libevdocument/EvFormField.html
@@ -179,11 +140,10 @@
 share/doc/libevdocument/libevdocument-ev-transition-effect.html
 share/doc/libevdocument/libevdocument.devhelp
 share/doc/libevdocument/libevdocument.devhelp2
+share/doc/libevdocument/right.png
 share/doc/libevdocument/licence.html
 share/doc/libevdocument/object-tree.html
-share/doc/libevdocument/right.png
 share/doc/libevdocument/style.css
-share/doc/libevdocument/up.png
 share/doc/libevview/EvJob.html
 share/doc/libevview/api-index-full.html
 share/doc/libevview/home.png
@@ -198,11 +158,11 @@
 share/doc/libevview/libevview-ev-stock-icons.html
 share/doc/libevview/libevview-ev-view-cursor.html
 share/doc/libevview/libevview-ev-view-presentation.html
+share/doc/libevview/licence.html
 share/doc/libevview/libevview-ev-view-type-builtins.html
 share/doc/libevview/libevview-ev-view.html
 share/doc/libevview/libevview.devhelp
 share/doc/libevview/libevview.devhelp2
-share/doc/libevview/licence.html
 share/doc/libevview/object-tree.html
 share/doc/libevview/right.png
 share/doc/libevview/style.css
@@ -303,90 +263,90 @@
 share/icons/hicolor/24x24/apps/evince.png
 share/icons/hicolor/48x48/apps/evince.png
 share/icons/hicolor/scalable/apps/evince.svg
-share/locale/af/LC_MESSAGES/evince.mo
-share/locale/ar/LC_MESSAGES/evince.mo
-share/locale/as/LC_MESSAGES/evince.mo
-share/locale/ast/LC_MESSAGES/evince.mo
-share/locale/be/LC_MESSAGES/evince.mo
-share/locale/be@latin/LC_MESSAGES/evince.mo
-share/locale/bg/LC_MESSAGES/evince.mo
-share/locale/bn/LC_MESSAGES/evince.mo
-share/locale/bn_IN/LC_MESSAGES/evince.mo
-share/locale/br/LC_MESSAGES/evince.mo
-share/locale/ca/LC_MESSAGES/evince.mo
-share/locale/ca@valencia/LC_MESSAGES/evince.mo
-share/locale/cs/LC_MESSAGES/evince.mo
-share/locale/cy/LC_MESSAGES/evince.mo
-share/locale/da/LC_MESSAGES/evince.mo
-share/locale/de/LC_MESSAGES/evince.mo
-share/locale/dz/LC_MESSAGES/evince.mo
-share/locale/el/LC_MESSAGES/evince.mo
-share/locale/eo/LC_MESSAGES/evince.mo
-share/locale/en@shaw/LC_MESSAGES/evince.mo
-share/locale/en_CA/LC_MESSAGES/evince.mo
-share/locale/en_GB/LC_MESSAGES/evince.mo
-share/locale/es/LC_MESSAGES/evince.mo
-share/locale/et/LC_MESSAGES/evince.mo
-share/locale/eu/LC_MESSAGES/evince.mo
-share/locale/fa/LC_MESSAGES/evince.mo
-share/locale/fi/LC_MESSAGES/evince.mo
-share/locale/fr/LC_MESSAGES/evince.mo
-share/locale/ga/LC_MESSAGES/evince.mo
-share/locale/gl/LC_MESSAGES/evince.mo
-share/locale/gu/LC_MESSAGES/evince.mo
-share/locale/he/LC_MESSAGES/evince.mo
-share/locale/hi/LC_MESSAGES/evince.mo
-share/locale/hu/LC_MESSAGES/evince.mo
-share/locale/id/LC_MESSAGES/evince.mo
-share/locale/it/LC_MESSAGES/evince.mo
-share/locale/ja/LC_MESSAGES/evince.mo
-share/locale/ka/LC_MESSAGES/evince.mo
-share/locale/kk/LC_MESSAGES/evince.mo
-share/locale/kn/LC_MESSAGES/evince.mo
-share/locale/ko/LC_MESSAGES/evince.mo
-share/locale/ks/LC_MESSAGES/evince.mo
-share/locale/ku/LC_MESSAGES/evince.mo
-share/locale/lt/LC_MESSAGES/evince.mo
-share/locale/lv/LC_MESSAGES/evince.mo
-share/locale/mai/LC_MESSAGES/evince.mo
-share/locale/mg/LC_MESSAGES/evince.mo
-share/locale/mk/LC_MESSAGES/evince.mo
-share/locale/ml/LC_MESSAGES/evince.mo
-share/locale/mn/LC_MESSAGES/evince.mo
-share/locale/mr/LC_MESSAGES/evince.mo
-share/locale/ms/LC_MESSAGES/evince.mo
-share/locale/nb/LC_MESSAGES/evince.mo
-share/locale/nds/LC_MESSAGES/evince.mo
-share/locale/ne/LC_MESSAGES/evince.mo
-share/locale/nl/LC_MESSAGES/evince.mo
-share/locale/nn/LC_MESSAGES/evince.mo
-share/locale/oc/LC_MESSAGES/evince.mo
-share/locale/or/LC_MESSAGES/evince.mo
-share/locale/pa/LC_MESSAGES/evince.mo
-share/locale/pl/LC_MESSAGES/evince.mo
-share/locale/ps/LC_MESSAGES/evince.mo
-share/locale/pt/LC_MESSAGES/evince.mo
-share/locale/pt_BR/LC_MESSAGES/evince.mo
-share/locale/ro/LC_MESSAGES/evince.mo
-share/locale/ru/LC_MESSAGES/evince.mo
-share/locale/rw/LC_MESSAGES/evince.mo
-share/locale/si/LC_MESSAGES/evince.mo
-share/locale/sk/LC_MESSAGES/evince.mo
-share/locale/sl/LC_MESSAGES/evince.mo
-share/locale/sq/LC_MESSAGES/evince.mo
-share/locale/sr/LC_MESSAGES/evince.mo
-share/locale/sr@latin/LC_MESSAGES/evince.mo
-share/locale/sv/LC_MESSAGES/evince.mo
-share/locale/ta/LC_MESSAGES/evince.mo
-share/locale/te/LC_MESSAGES/evince.mo
-share/locale/th/LC_MESSAGES/evince.mo
-share/locale/tr/LC_MESSAGES/evince.mo
-share/locale/uk/LC_MESSAGES/evince.mo
-share/locale/vi/LC_MESSAGES/evince.mo
-share/locale/wa/LC_MESSAGES/evince.mo
-share/locale/zh_CN/LC_MESSAGES/evince.mo
-share/locale/zh_HK/LC_MESSAGES/evince.mo
-share/locale/zh_TW/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/af/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/as/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/be/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/be@latin/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/bn_IN/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/br/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ca@valencia/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/cy/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/da/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/de/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/dz/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/el/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/en_CA/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/es/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/et/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/fa/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/gu/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/he/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/hi/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/id/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/it/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ka/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/kk/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/kn/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ks/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ku/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/mai/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/mg/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ml/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/mn/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ms/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/nds/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ne/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/nn/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/oc/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/or/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/pa/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ps/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/rw/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/si/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/sq/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/ta/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/te/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/th/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/wa/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/zh_HK/LC_MESSAGES/evince.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/evince.mo
 share/omf/evince/evince-C.omf
 share/omf/evince/evince-bg.omf
 share/omf/evince/evince-ca.omf
@@ -480,7 +440,6 @@
 @dirrm %%DATADIR%%
 @dirrm share/doc/libevview
 @dirrm share/doc/libevdocument
-@dirrm %%DOCSDIR%%
 @dirrmtry share/applications
 @dirrm lib/evince/3/backends
 @dirrm lib/evince/3
@@ -489,47 +448,5 @@
 @dirrm include/evince/%%VERSION%%/libdocument
 @dirrm include/evince/%%VERSION%%
 @dirrm include/evince
-@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
-@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/ks/LC_MESSAGES
-@dirrmtry share/locale/ks
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
+@exec %%LOCALBASE%%/bin/update-desktop-database -q || /usr/bin/true
+@unexec %%LOCALBASE%%/bin/update-desktop-database -q || /usr/bin/true
--- evince-2.32.0_10.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20130318222506.2CE7F3B9>