Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Jun 2019 09:55:01 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503716 - in head: devel/gettext devel/gettext-runtime devel/gettext-runtime/files devel/gettext-tools devel/gettext-tools/files devel/libtextstyle ftp/weex ftp/weex/files games/lgenera...
Message-ID:  <201906080955.x589t1uw090941@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Sat Jun  8 09:55:01 2019
New Revision: 503716
URL: https://svnweb.freebsd.org/changeset/ports/503716

Log:
  devel/gettext*:
  - Update to 0.20.1.
  - Add options to install documentation and examples.
  
  devel/libtextstyle:
  - Take maintainership because it is now released as part of gettext.
  
  ftp/weex:
  - Remove bundled gettext (intl/): no longer supported.
  - Patch configure.in, Makefile.am and src/Makefile.am to remove references
    to bundled gettext.
  - Patch configure.in to add AC_CONFIG_MACRO_DIR([m4]) so aclocal.m4 will
    include gettext .m4 files from m4/ (matching the version set with
    AM_GNU_GETTEXT_VERSION) instead of /usr/local/share/aclocal.
  - Port to modern gettext: add po/Makevars and fix a problem in the French
    translation.
  - Patch configure.in to fix detection of OpenSSL 1.1.
  - In port Makefile: add EXAMPLES and NLS options, add ports OpenSSL support,
    set default path for root certificates.
  
  games/lgeneral:
  - Patch Makefile.in instead of Makefile.am so USES=autoreconf isn't needed.
  
  www/sarg:
  - Patch configure.ac to add AC_CONFIG_MACRO_DIR([m4]) so aclocal.m4 will
    include gettext .m4 files from m4/ (matching the version set with
    AM_GNU_GETTEXT_VERSION) instead of /usr/local/share/aclocal.
  - Port Makefile: remove obsolete post-patch, patching configure also has no
    effect with USES=autoreconf.
  
  PR:		238277
  Exp-run by:	antoine
  Approved by:	portmgr (antoine)

Added:
  head/ftp/weex/files/
  head/ftp/weex/files/patch-Makefile.am   (contents, props changed)
  head/ftp/weex/files/patch-configure.in   (contents, props changed)
  head/ftp/weex/files/patch-po-fr.po   (contents, props changed)
  head/ftp/weex/files/patch-src-Makefile.am   (contents, props changed)
  head/www/sarg/files/patch-configure.ac   (contents, props changed)
Deleted:
  head/devel/libtextstyle/distinfo
Modified:
  head/devel/gettext-runtime/Makefile
  head/devel/gettext-runtime/files/patch-configure
  head/devel/gettext-runtime/pkg-descr
  head/devel/gettext-runtime/pkg-plist
  head/devel/gettext-tools/Makefile
  head/devel/gettext-tools/files/patch-configure
  head/devel/gettext-tools/pkg-descr
  head/devel/gettext-tools/pkg-plist
  head/devel/gettext/Makefile.common
  head/devel/gettext/distinfo
  head/devel/gettext/pkg-descr
  head/devel/libtextstyle/Makefile
  head/ftp/weex/Makefile
  head/ftp/weex/pkg-plist
  head/games/lgeneral/Makefile
  head/www/sarg/Makefile

Modified: head/devel/gettext-runtime/Makefile
==============================================================================
--- head/devel/gettext-runtime/Makefile	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-runtime/Makefile	Sat Jun  8 09:55:01 2019	(r503716)
@@ -5,45 +5,40 @@
 # discretion.
 
 PORTNAME=	gettext-runtime
-PORTREVISION=	2
+PORTREVISION=	0
 
 COMMENT=	GNU gettext runtime libraries and programs
 
-LICENSE=	LGPL21 GPLv3
+LICENSE=	LGPL21+ GPLv3+
 LICENSE_COMB=	multi
 LICENSE_FILE_LGPL21=	${WRKSRC}/intl/COPYING.LIB
 LICENSE_FILE_GPLv3=	${WRKSRC}/../COPYING
 
 .include "${.CURDIR}/../gettext/Makefile.common"
 
+USES=		charsetfix cpe iconv libtool tar:xz
+USE_LDCONFIG=	yes
+
+CPE_PRODUCT=	gettext
+CPE_VENDOR=	gnu
+
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-csharp --disable-java --with-included-gettext \
 		ac_cv_lib_rt_sched_yield=no
 INSTALL_TARGET=	install-strip
 TEST_TARGET=	check
-USES=		charsetfix cpe iconv libtool tar:xz
-USE_LDCONFIG=	yes
 WRKSRC_SUBDIR=	gettext-runtime
 
+DATADIR=	${PREFIX}/share/gettext
+DOCSDIR=	${PREFIX}/share/doc/gettext
 INFO=		autosprintf
-CPE_PRODUCT=	gettext
-CPE_VENDOR=	gnu
 
+OPTIONS_DEFINE=	DOCS
+
 .include <bsd.port.options.mk>
 
 .if ${OPSYS} == DragonFly
 CONFIGURE_ARGS+=--disable-threads
 .endif
-
-post-patch:
-# Do not install csharp and java documentation.
-	@${REINPLACE_CMD} -E '/^SUBDIRS =/s/(intl-csharp|intl-java)//g' \
-		${WRKSRC}/Makefile.in
-# Do not install html copies of manpages.
-	@${REINPLACE_CMD} \
-		-e '/^all-local:/s/html-local//' \
-		-e '/^install-data-local:/s/install-html//' \
-		-e '/^installdirs-local:/s/installdirs-html//' \
-		${WRKSRC}/libasprintf/Makefile.in ${WRKSRC}/man/Makefile.in
 
 .include <bsd.port.mk>

Modified: head/devel/gettext-runtime/files/patch-configure
==============================================================================
--- head/devel/gettext-runtime/files/patch-configure	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-runtime/files/patch-configure	Sat Jun  8 09:55:01 2019	(r503716)
@@ -1,11 +1,11 @@
---- configure.orig	2014-07-14 07:30:12 UTC
+--- configure.orig	2019-05-12 15:08:34 UTC
 +++ configure
-@@ -16277,7 +16277,7 @@
-              # thread: pthread_create from libc will fail, whereas
-              # pthread_create will actually create a thread.
+@@ -17215,7 +17215,7 @@ if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; the
+              # On Solaris 10 or newer, this test is no longer needed, because
+              # libc contains the fully functional pthread functions.
               case "$host_os" in
--               solaris* | hpux*)
-+               solaris* | hpux* | freebsd*)
+-               solaris | solaris2.1-9 | solaris2.1-9.* | hpux*)
++               solaris | solaris2.1-9 | solaris2.1-9.* | hpux* | freebsd*)
  
  $as_echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >>confdefs.h
  

Modified: head/devel/gettext-runtime/pkg-descr
==============================================================================
--- head/devel/gettext-runtime/pkg-descr	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-runtime/pkg-descr	Sat Jun  8 09:55:01 2019	(r503716)
@@ -3,4 +3,4 @@ and localisation of software.
 
 This package contains the runtime libraries and programs.
 
-WWW: http://www.gnu.org/software/gettext/
+WWW: https://www.gnu.org/software/gettext/

Modified: head/devel/gettext-runtime/pkg-plist
==============================================================================
--- head/devel/gettext-runtime/pkg-plist	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-runtime/pkg-plist	Sat Jun  8 09:55:01 2019	(r503716)
@@ -11,7 +11,7 @@ lib/libasprintf.so.0.0.0
 lib/libintl.a
 lib/libintl.so
 lib/libintl.so.8
-lib/libintl.so.8.1.5
+lib/libintl.so.8.1.6
 man/man1/envsubst.1.gz
 man/man1/gettext.1.gz
 man/man1/ngettext.1.gz
@@ -24,7 +24,37 @@ man/man3/dngettext.3.gz
 man/man3/gettext.3.gz
 man/man3/ngettext.3.gz
 man/man3/textdomain.3.gz
+%%PORTDOCS%%%%DOCSDIR%%/bind_textdomain_codeset.3.html
+%%PORTDOCS%%%%DOCSDIR%%/bindtextdomain.3.html
+%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext.html
+%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext_GettextResourceManager.html
+%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext_GettextResourceSet.html
+%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/begin.html
+%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/index.html
+%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/namespaces.html
+%%PORTDOCS%%%%DOCSDIR%%/envsubst.1.html
+%%PORTDOCS%%%%DOCSDIR%%/gettext.1.html
+%%PORTDOCS%%%%DOCSDIR%%/gettext.3.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/allclasses-frame.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/deprecated-list.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/GettextResource.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/package-frame.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/package-summary.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/package-tree.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/help-doc.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/index-all.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/index.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/overview-tree.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/package-list
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/packages.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/serialized-form.html
+%%PORTDOCS%%%%DOCSDIR%%/javadoc2/stylesheet.css
+%%PORTDOCS%%%%DOCSDIR%%/ngettext.1.html
+%%PORTDOCS%%%%DOCSDIR%%/ngettext.3.html
+%%PORTDOCS%%%%DOCSDIR%%/textdomain.3.html
+%%PORTDOCS%%share/doc/libasprintf/autosprintf_all.html
 %%DATADIR%%/ABOUT-NLS
+share/locale/ast/LC_MESSAGES/gettext-runtime.mo
 share/locale/be/LC_MESSAGES/gettext-runtime.mo
 share/locale/bg/LC_MESSAGES/gettext-runtime.mo
 share/locale/ca/LC_MESSAGES/gettext-runtime.mo

Modified: head/devel/gettext-tools/Makefile
==============================================================================
--- head/devel/gettext-tools/Makefile	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-tools/Makefile	Sat Jun  8 09:55:01 2019	(r503716)
@@ -5,56 +5,45 @@
 # discretion.
 
 PORTNAME=	gettext-tools
-PORTREVISION=	1
+PORTREVISION=	0
 
 COMMENT=	GNU gettext development and translation tools
 
-LICENSE=	GPLv3
+LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/../COPYING
 
 .include "${.CURDIR}/../gettext/Makefile.common"
 
+LIB_DEPENDS=	libtextstyle.so:devel/libtextstyle
+
+USES=		charsetfix cpe gettext-runtime iconv libtool tar:xz
+USE_LDCONFIG=	yes
+
+CPE_PRODUCT=	gettext
+CPE_VENDOR=	gnu
+
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-csharp --disable-java --disable-openmp \
 		--with-included-glib --with-included-libcroco \
 		--with-included-libunistring --with-included-libxml \
 		--without-emacs --without-git ac_cv_lib_rt_sched_yield=no
-CPPFLAGS+=	-I${LOCALBASE}/include
-LIBS+=		-L${LOCALBASE}/lib
 INSTALL_TARGET=	install-strip
-PLIST_SUB=	VERSION=${PORTVERSION:R}
 TEST_TARGET=	check
-USES=		charsetfix cpe gettext-runtime iconv libtool tar:xz
-USE_LDCONFIG=	yes
 WRKSRC_SUBDIR=	gettext-tools
 
-CPE_PRODUCT=	gettext
-CPE_VENDOR=	gnu
+DATADIR=	${PREFIX}/share/gettext
+DOCSDIR=	${PREFIX}/share/doc/gettext
+PLIST_SUB=	PORTVERSION=${PORTVERSION} VERSION=${PORTVERSION:R}
 
-OPTIONS_DEFINE=	DOCS THREADS
+INFO=		gettext
+
+OPTIONS_DEFINE=	DOCS EXAMPLES THREADS
 OPTIONS_DEFAULT=THREADS
 OPTIONS_EXCLUDE_DragonFly=	THREADS
 
-DOCS_INFO=	gettext
-
 THREADS_CONFIGURE_ENABLE=	threads
 
-post-patch-DOCS-off:
-	@${REINPLACE_CMD} '/^SUBDIRS =/s/doc//' ${WRKSRC}/Makefile.in
-
 post-patch:
-# Exclude examples and gnulib-tests.
-	@${REINPLACE_CMD} -E '/^SUBDIRS =/s/(examples|gnulib-tests)//g' \
-		${WRKSRC}/Makefile.in
-	@${REINPLACE_CMD} \
-		'/^install-data-am:/s/install-examplesbuildauxDATA//' \
-		${WRKSRC}/Makefile.in ${WRKSRC}/m4/Makefile.in
-# Do not install html copies of manpages.
-	@${REINPLACE_CMD} \
-		-e '/^all-local:/s/html-local//' \
-		-e '/^install-data-local:/s/install-html//' \
-		-e '/^installdirs-local:/s/installdirs-html//' \
-		${WRKSRC}/man/Makefile.in
 # Do not patch system float.h.
 	@${REINPLACE_CMD} 's/FLOAT_H=float\.h//' \
 		${WRKSRC}/configure
@@ -64,5 +53,10 @@ post-patch:
 # Use libasprintf installed by gettext-runtime.
 	@${REINPLACE_CMD} 's,[^ ]*libasprintf.la,-lasprintf,' \
 		${WRKSRC}/tests/lang-c++
+# Use system libtextstyle.
+	@${REINPLACE_CMD} \
+		-e '/:/!s,[[:<:]]textstyle[^[:space:]]*\.h,,g' \
+		-e 's,\.\./\.\./libtextstyle/lib/libtextstyle\.la,-ltextstyle,' \
+		${WRKSRC}/src/Makefile.in
 
 .include <bsd.port.mk>

Modified: head/devel/gettext-tools/files/patch-configure
==============================================================================
--- head/devel/gettext-tools/files/patch-configure	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-tools/files/patch-configure	Sat Jun  8 09:55:01 2019	(r503716)
@@ -1,15 +1,15 @@
---- configure.orig	2014-07-14 07:30:23 UTC
+--- configure.orig	2019-05-12 15:09:13 UTC
 +++ configure
-@@ -18293,7 +18293,7 @@
-              # thread: pthread_create from libc will fail, whereas
-              # pthread_create will actually create a thread.
+@@ -19449,7 +19449,7 @@ if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; the
+              # On Solaris 10 or newer, this test is no longer needed, because
+              # libc contains the fully functional pthread functions.
               case "$host_os" in
--               solaris* | hpux*)
-+               solaris* | hpux* | freebsd*)
+-               solaris | solaris2.1-9 | solaris2.1-9.* | hpux*)
++               solaris | solaris2.1-9 | solaris2.1-9.* | hpux* | freebsd*)
  
  $as_echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >>confdefs.h
  
-@@ -21679,7 +21679,7 @@
+@@ -23751,7 +23751,7 @@ $as_echo "$ac_res" >&6; }
                                          if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
             || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \
                  && test "$PACKAGE" != gettext-runtime \

Modified: head/devel/gettext-tools/pkg-descr
==============================================================================
--- head/devel/gettext-tools/pkg-descr	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-tools/pkg-descr	Sat Jun  8 09:55:01 2019	(r503716)
@@ -3,4 +3,4 @@ and localisation of software.
 
 This package contains development and translation tools.
 
-WWW: http://www.gnu.org/software/gettext/
+WWW: https://www.gnu.org/software/gettext/

Modified: head/devel/gettext-tools/pkg-plist
==============================================================================
--- head/devel/gettext-tools/pkg-plist	Sat Jun  8 09:41:09 2019	(r503715)
+++ head/devel/gettext-tools/pkg-plist	Sat Jun  8 09:55:01 2019	(r503716)
@@ -17,19 +17,19 @@ bin/msguniq
 bin/recode-sr-latin
 bin/xgettext
 include/gettext-po.h
-lib/libgettextlib-%%VERSION%%.1.so
-lib/libgettextlib.so
-lib/libgettextpo.a
-lib/libgettextpo.so
-lib/libgettextpo.so.0
-lib/libgettextpo.so.0.5.4
-lib/libgettextsrc-%%VERSION%%.1.so
-lib/libgettextsrc.so
 lib/gettext/cldr-plurals
 lib/gettext/hostname
 lib/gettext/project-id
 lib/gettext/urlget
 lib/gettext/user-email
+lib/libgettextlib-%%PORTVERSION%%.so
+lib/libgettextlib.so
+lib/libgettextpo.a
+lib/libgettextpo.so
+lib/libgettextpo.so.0
+lib/libgettextpo.so.0.5.5
+lib/libgettextsrc-%%PORTVERSION%%.so
+lib/libgettextsrc.so
 man/man1/autopoint.1.gz
 man/man1/gettextize.1.gz
 man/man1/msgattrib.1.gz
@@ -48,48 +48,1599 @@ man/man1/msgunfmt.1.gz
 man/man1/msguniq.1.gz
 man/man1/recode-sr-latin.1.gz
 man/man1/xgettext.1.gz
-share/aclocal/codeset.m4
-share/aclocal/extern-inline.m4
 share/aclocal/gettext.m4
-share/aclocal/fcntl-o.m4
-share/aclocal/glibc2.m4
-share/aclocal/glibc21.m4
+share/aclocal/host-cpu-c-abi.m4
 share/aclocal/iconv.m4
-share/aclocal/intdiv0.m4
-share/aclocal/intl.m4
-share/aclocal/intldir.m4
 share/aclocal/intlmacosx.m4
-share/aclocal/intmax.m4
-share/aclocal/inttypes-pri.m4
-share/aclocal/inttypes_h.m4
-share/aclocal/lcmessage.m4
 share/aclocal/lib-ld.m4
 share/aclocal/lib-link.m4
 share/aclocal/lib-prefix.m4
-share/aclocal/lock.m4
-share/aclocal/longlong.m4
 share/aclocal/nls.m4
 share/aclocal/po.m4
-share/aclocal/printf-posix.m4
 share/aclocal/progtest.m4
-share/aclocal/size_max.m4
-share/aclocal/stdint_h.m4
-share/aclocal/threadlib.m4
-share/aclocal/uintmax_t.m4
-share/aclocal/visibility.m4
-share/aclocal/wchar_t.m4
-share/aclocal/wint_t.m4
-share/aclocal/xsize.m4
 %%PORTDOCS%%%%DOCSDIR%%/FAQ.html
+%%PORTDOCS%%%%DOCSDIR%%/autopoint.1.html
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/README
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpcomp.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpcomp.sh.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec-test.exe
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec.sh.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javacomp.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javacomp.sh.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javaexec.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javaexec.sh.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/hello.cc
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gnome-gnorba-check.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gnome-orbit-check.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gnome.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gtk--.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/m4/gtk.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/Makevars
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/POTFILES.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/BUGS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/ChangeLog
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/Doxyfile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/Doxyfile.global
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/Makefile.common
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/acinclude.m4.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/am_edit
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/compile
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/conf.change.pl
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/config.guess
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/config.pl
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/config.sub
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/configure.in.bot.end
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/configure.in.min
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/cvs-clean.pl
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/cvs.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/debianrules
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/depcomp
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/detect-autoconf.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/install-sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/libtool.m4.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/ltmain.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/missing
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/mkinstalldirs
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/ylwrap
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/configure.in.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/hello.cc
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/hellowindow.cc
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/hellowindow.h
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/Makevars
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/POTFILES.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/BUGS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/hello.cc
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/m4/qt.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/hello.cc
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/m4/wxwidgets.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/hello.cc
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/Makevars
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/POTFILES.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/hello.c
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/gnome-gnorba-check.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/gnome-orbit-check.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/m4/gnome.m4
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/Makevars
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/POTFILES.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.c
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.desktop.in.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.gresource.xml
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.gschema.xml
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.ui
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/Makevars
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/POTFILES.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/hello.c
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/Makevars
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/POTFILES.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/hello.lisp.in
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/README
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/hello.cs
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/hello.cs
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/hello.awk
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/de.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/el.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/eo.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/es.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/fi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/fr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ga.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/gl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/hr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/hu.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/id.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/it.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ja.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ky.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/lv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ms.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/mt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/nb.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/nl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/pl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/pt.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/pt_BR.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ro.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ru.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sl.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sv.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ta.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/tr.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/uk.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/vi.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_CN.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_HK.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_TW.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/INSTALL
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/autoclean.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/autogen.sh
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/configure.ac
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/hello.scm
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/m4/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/LINGUAS
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/Makefile.am
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/af.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ast.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/bg.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ca.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/cs.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/da.po
+%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/de.po

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



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