Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Apr 2011 17:12:14 GMT
From:      Olivier Duchateau <duchateau.olivier@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/156310: [UPDATE] x11-toolkits/libxfce4gui to 4.8.1
Message-ID:  <201104101712.p3AHCEmf045465@red.freebsd.org>
Resent-Message-ID: <201104101720.p3AHK7Xi016856@freefall.freebsd.org>

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

>Number:         156310
>Category:       ports
>Synopsis:       [UPDATE] x11-toolkits/libxfce4gui to 4.8.1
>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:   Sun Apr 10 17:20:07 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Olivier Duchateau
>Release:        FreeBSD 8.2-RELEASE
>Organization:
>Environment:
FreeBSD bornem.errements.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011     root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
- Delete GTKDOC option, because documentation is provided in tarball.
- Add APIDOCS option, to install api documentation (off by default).
- Fix an error between liglade2 and gladeui (see below)

libglade2 is related to libglade-2.0 in configure script.

[...]
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libglade-2.0 >= 2.0.0" >
&5
$as_echo_n "checking for libglade-2.0 >= 2.0.0... " >&6; }
  if $PKG_CONFIG "--atleast-version=2.0.0" "libglade-2.0" >/dev/null 2>&1; then
    LIBGLADE_VERSION=`$PKG_CONFIG --modversion "libglade-2.0"`
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBGLADE_VERSION" >&5
$as_echo "$LIBGLADE_VERSION" >&6; }
[...]

While gladeui is related to devel/glade3, in configure script it looks like

[...]
  # Check whether --enable-gladeui was given.
if test "${enable_gladeui+set}" = set; then :
  enableval=$enable_gladeui; xdt_cv_GLADEUI_check=$enableval
else
  xdt_cv_GLADEUI_check=yes
fi
    

  if test x"$xdt_cv_GLADEUI_check" = x"yes"; then
    if $PKG_CONFIG --exists "gladeui-1.0 >= 3.0.0" >/dev/null 2>&1; then
[...]
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -urN /usr/ports/x11-toolkits/libxfce4gui/Makefile libxfce4gui/Makefile
--- /usr/ports/x11-toolkits/libxfce4gui/Makefile	2011-03-03 11:12:28.000000000 +0100
+++ libxfce4gui/Makefile	2011-04-09 21:53:05.000000000 +0200
@@ -6,9 +6,10 @@
 #
 
 PORTNAME=	libxfce4gui
-PORTVERSION=	4.8.0
+PORTVERSION=	4.8.1
 CATEGORIES=	x11-toolkits xfce
 MASTER_SITES=	${MASTER_SITE_XFCE}
+MASTER_SITE_SUBDIR=	src/xfce/libxfcegui4/${PORTVERSION:R}
 DISTNAME=	libxfcegui4-${PORTVERSION}
 DIST_SUBDIR=	xfce4
 
@@ -19,26 +20,26 @@
 GNU_CONFIGURE=	yes
 INSTALLS_ICONS=	yes
 USE_BZIP2=	yes
-USE_GETTEXT=	yes
 USE_GMAKE=	yes
-USE_GNOME=	gnomehack gnometarget gtk20 intltool intlhack libglade2 pkgconfig
+USE_GNOME=	gnomehack gtk20 intltool intlhack libglade2 pkgconfig
 USE_LDCONFIG=	yes
-USE_XFCE=	libutil xfconf
-USE_XORG=	sm
+USE_XFCE=	configenv libutil
+USE_XORG=	sm x11
 
-OPTIONS=	GTKDOC	"install the library documentation"	off \
-		STARTUP	"use libstartup-notification"		on  \
-		GLADEUI	"glade interface designer"		off
+OPTIONS=	NLS	"Enable Native Language Support"	on \
+		STARTUP	"Use libstartup-notification"		on  \
+		GLADEUI	"Glade interface designer"		off \
+		APIDOCS "Install api documentation" off
 
 .include <bsd.port.pre.mk>
 
-.if defined(WITH_GTKDOC)
-BUILD_DEPENDS+=	gtkdocize:${PORTSDIR}/textproc/gtk-doc
-CONFIGURE_ARGS+=--enable-gtk-doc
-PLIST_SUB+=	GTK_DOC=""
+.if !defined(WITHOUT_NLS)
+USE_GETTEXT=	yes
+CONFIGURE_ARGS+=--enable-nls
+PLIST_SUB+=	NLS=""
 .else
-CONFIGURE_ARGS+=--disable-gtk-doc
-PLIST_SUB+=	GTK_DOC="@comment "
+CONFIGURE_ARGS+=--disable-nls
+PLIST_SUB+=	NLS="@comment "
 .endif
 
 .if !defined(WITHOUT_LIBSTARTUP)
@@ -49,11 +50,19 @@
 .endif
 
 .if defined(WITH_GLADEUI)
+LIB_DEPENDS+=	gladeui-1.9:${PORTSDIR}/devel/glade3
 CONFIGURE_ARGS+=--enable-gladeui
 .else
 CONFIGURE_ARGS+=--disable-gladeui
 .endif
 
+.if defined(WITHOUT_APIDOCS)
+CONFIGURE_ARGS+=--without-html-dir
+PLIST_SUB+=	APIDOCS="@comment "
+.else
+CONFIGURE_ARGS+=--with-html-dir=${PREFIX}/share/gtk-doc/html
+PLIST_SUB+=	APIDOCS=""
+.endif
 post-patch:
 	@${REINPLACE_CMD} -e 's|$$(GMSGFMT)|$$(MSGFMT)|g' \
 		${WRKSRC}/po/Makefile.in.in
diff -urN /usr/ports/x11-toolkits/libxfce4gui/distinfo libxfce4gui/distinfo
--- /usr/ports/x11-toolkits/libxfce4gui/distinfo	2011-03-03 11:12:28.000000000 +0100
+++ libxfce4gui/distinfo	2011-03-27 10:29:42.000000000 +0200
@@ -1,2 +1,2 @@
-SHA256 (xfce4/libxfcegui4-4.8.0.tar.bz2) = 692120ea7318fda1e82d9f553081b7b0cf959af8e3a8ca0808229ca3d4c1d545
-SIZE (xfce4/libxfcegui4-4.8.0.tar.bz2) = 674799
+SHA256 (xfce4/libxfcegui4-4.8.1.tar.bz2) = 309a81823cdfdb7301bc6a5199e14f0df29b58dae89a9302c7839b9b94812443
+SIZE (xfce4/libxfcegui4-4.8.1.tar.bz2) = 686338
diff -urN /usr/ports/x11-toolkits/libxfce4gui/pkg-plist libxfce4gui/pkg-plist
--- /usr/ports/x11-toolkits/libxfce4gui/pkg-plist	2011-03-03 11:12:28.000000000 +0100
+++ libxfce4gui/pkg-plist	2011-03-27 10:29:42.000000000 +0200
@@ -43,39 +43,36 @@
 include/xfce4/libxfcegui4/xfce_systemtray.h
 include/xfce4/libxfcegui4/xfce_togglebutton.h
 include/xfce4/libxfcegui4/xinerama.h
-lib/libglade/2.0/libxfce4.a
-lib/libglade/2.0/libxfce4.la
-lib/libglade/2.0/libxfce4.so
 lib/libxfcegui4.a
 lib/libxfcegui4.la
 lib/libxfcegui4.so
 lib/libxfcegui4.so.7
 libdata/pkgconfig/libxfcegui4-1.0.pc
-share/gtk-doc/html/libxfcegui4/XfceAboutDialog.html
-share/gtk-doc/html/libxfcegui4/XfceAppMenuItem.html
-share/gtk-doc/html/libxfcegui4/XfceFramebox.html
-share/gtk-doc/html/libxfcegui4/XfceHeading.html
-share/gtk-doc/html/libxfcegui4/XfceIconTheme.html
-share/gtk-doc/html/libxfcegui4/XfceTitledDialog.html
-share/gtk-doc/html/libxfcegui4/home.png
-share/gtk-doc/html/libxfcegui4/index.html
-share/gtk-doc/html/libxfcegui4/index.sgml
-share/gtk-doc/html/libxfcegui4/left.png
-share/gtk-doc/html/libxfcegui4/libxfcegui4-Standard-Macros.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-Xfce-Gdk-extensions.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-Xfce-Gtk+-extensions.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-XfceFileChooser.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-core.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-dialogs.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-fundamentals.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-netk.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4-xfce-exec.html
-share/gtk-doc/html/libxfcegui4/libxfcegui4.devhelp
-share/gtk-doc/html/libxfcegui4/libxfcegui4.devhelp2
-share/gtk-doc/html/libxfcegui4/reference.html
-share/gtk-doc/html/libxfcegui4/right.png
-share/gtk-doc/html/libxfcegui4/style.css
-share/gtk-doc/html/libxfcegui4/up.png
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/XfceAboutDialog.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/XfceAppMenuItem.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/XfceFramebox.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/XfceHeading.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/XfceIconTheme.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/XfceTitledDialog.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/home.png
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/index.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/index.sgml
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/left.png
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-Standard-Macros.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-Xfce-Gdk-extensions.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-Xfce-Gtk+-extensions.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-XfceFileChooser.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-core.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-dialogs.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-fundamentals.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-netk.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4-xfce-exec.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4.devhelp
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/libxfcegui4.devhelp2
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/reference.html
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/right.png
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/style.css
+%%APIDOCS%%share/gtk-doc/html/libxfcegui4/up.png
 share/icons/hicolor/48x48/apps/xfce-edit.png
 share/icons/hicolor/48x48/apps/xfce-filemanager.png
 share/icons/hicolor/48x48/apps/xfce-games.png
@@ -90,88 +87,87 @@
 share/icons/hicolor/48x48/apps/xfce-unknown.png
 share/icons/hicolor/48x48/apps/xfce-utils.png
 share/icons/hicolor/scalable/apps/xfce-filemanager.svg
-share/locale/am/LC_MESSAGES/libxfcegui4.mo
-share/locale/ar/LC_MESSAGES/libxfcegui4.mo
-share/locale/ast/LC_MESSAGES/libxfcegui4.mo
-share/locale/be/LC_MESSAGES/libxfcegui4.mo
-share/locale/bn_IN/LC_MESSAGES/libxfcegui4.mo
-share/locale/ca/LC_MESSAGES/libxfcegui4.mo
-share/locale/cs/LC_MESSAGES/libxfcegui4.mo
-share/locale/cy/LC_MESSAGES/libxfcegui4.mo
-share/locale/da/LC_MESSAGES/libxfcegui4.mo
-share/locale/de/LC_MESSAGES/libxfcegui4.mo
-share/locale/dz/LC_MESSAGES/libxfcegui4.mo
-share/locale/el/LC_MESSAGES/libxfcegui4.mo
-share/locale/en_GB/LC_MESSAGES/libxfcegui4.mo
-share/locale/eo/LC_MESSAGES/libxfcegui4.mo
-share/locale/es/LC_MESSAGES/libxfcegui4.mo
-share/locale/et/LC_MESSAGES/libxfcegui4.mo
-share/locale/eu/LC_MESSAGES/libxfcegui4.mo
-share/locale/fa/LC_MESSAGES/libxfcegui4.mo
-share/locale/fi/LC_MESSAGES/libxfcegui4.mo
-share/locale/fr/LC_MESSAGES/libxfcegui4.mo
-share/locale/gl/LC_MESSAGES/libxfcegui4.mo
-share/locale/gu/LC_MESSAGES/libxfcegui4.mo
-share/locale/he/LC_MESSAGES/libxfcegui4.mo
-share/locale/hu/LC_MESSAGES/libxfcegui4.mo
-share/locale/hy/LC_MESSAGES/libxfcegui4.mo
-share/locale/id/LC_MESSAGES/libxfcegui4.mo
-share/locale/it/LC_MESSAGES/libxfcegui4.mo
-share/locale/ja/LC_MESSAGES/libxfcegui4.mo
-share/locale/ka/LC_MESSAGES/libxfcegui4.mo
-share/locale/kk/LC_MESSAGES/libxfcegui4.mo
-share/locale/ko/LC_MESSAGES/libxfcegui4.mo
-share/locale/ku/LC_MESSAGES/libxfcegui4.mo
-share/locale/lt/LC_MESSAGES/libxfcegui4.mo
-share/locale/lv/LC_MESSAGES/libxfcegui4.mo
-share/locale/mk/LC_MESSAGES/libxfcegui4.mo
-share/locale/mr/LC_MESSAGES/libxfcegui4.mo
-share/locale/nb/LC_MESSAGES/libxfcegui4.mo
-share/locale/nl/LC_MESSAGES/libxfcegui4.mo
-share/locale/pa/LC_MESSAGES/libxfcegui4.mo
-share/locale/pl/LC_MESSAGES/libxfcegui4.mo
-share/locale/pt/LC_MESSAGES/libxfcegui4.mo
-share/locale/pt_BR/LC_MESSAGES/libxfcegui4.mo
-share/locale/ro/LC_MESSAGES/libxfcegui4.mo
-share/locale/ru/LC_MESSAGES/libxfcegui4.mo
-share/locale/si/LC_MESSAGES/libxfcegui4.mo
-share/locale/sk/LC_MESSAGES/libxfcegui4.mo
-share/locale/sq/LC_MESSAGES/libxfcegui4.mo
-share/locale/sv/LC_MESSAGES/libxfcegui4.mo
-share/locale/ta/LC_MESSAGES/libxfcegui4.mo
-share/locale/tl_PH/LC_MESSAGES/libxfcegui4.mo
-share/locale/tr/LC_MESSAGES/libxfcegui4.mo
-share/locale/ug/LC_MESSAGES/libxfcegui4.mo
-share/locale/uk/LC_MESSAGES/libxfcegui4.mo
-share/locale/ur/LC_MESSAGES/libxfcegui4.mo
-share/locale/ur_PK/LC_MESSAGES/libxfcegui4.mo
-share/locale/zh_CN/LC_MESSAGES/libxfcegui4.mo
-share/locale/ug/LC_MESSAGES/libxfcegui4.mo
-share/locale/zh_TW/LC_MESSAGES/libxfcegui4.mo
-@dirrmtry share/locale/ur_PK/LC_MESSAGES
-@dirrmtry share/locale/ur_PK
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/tl_PH/LC_MESSAGES
-@dirrmtry share/locale/tl_PH
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrm share/gtk-doc/html/libxfcegui4
-@dirrmtry share/gtk-doc/html
-@dirrmtry share/gtk-doc
+%%NLS%%share/locale/am/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/be/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/bn_IN/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/cy/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/da/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/de/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/dz/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/el/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/es/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/et/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/fa/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/gu/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/he/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/hy/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/id/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/it/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ka/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/kk/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ku/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/pa/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/si/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/sq/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ta/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/tl_PH/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ug/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ur/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/ur_PK/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/libxfcegui4.mo
+%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur_PK
+%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur
+%%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ug
+%%NLS%%@dirrmtry share/locale/tl_PH/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/tl_PH
+%%NLS%%@dirrmtry share/locale/si/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/si
+%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/mr
+%%NLS%%@dirrmtry share/locale/ku/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ku
+%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/kk
+%%NLS%%@dirrmtry share/locale/hy/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/hy
+%%NLS%%@dirrmtry share/locale/dz/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/dz
+%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ast
+%%APIDOCS%%@dirrm share/gtk-doc/html/libxfcegui4
+%%APIDOCS%%@dirrmtry share/gtk-doc/html
+%%APIDOCS%%@dirrmtry share/gtk-doc
 @dirrm include/xfce4/libxfcegui4
 @dirrmtry include/xfce4


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



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