Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Mar 2021 10:52:17 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r568789 - in head/devel: . gettext gettext-po-mode gettext-po-mode/files
Message-ID:  <202103191052.12JAqHQi015046@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mandree
Date: Fri Mar 19 10:52:17 2021
New Revision: 568789
URL: https://svnweb.freebsd.org/changeset/ports/568789

Log:
  devel/gettext-po-mode: New port to install po-mode files for emacs
  
  -BEGIN pkg-descr---------------------------
  GNU gettext is a framework of libraries and tools for internationalisation
  and localisation of software.
  
  This package contains the po-mode for the emacs editor.
  
  WWW: https://www.gnu.org/software/gettext/
  -END pkg-descr-----------------------------
  
  This cannot be part of gettext-tools because it would create a
  dependency loop through emacs (which we use to byte-compile).
  
  In order to override the MAINTAINER, modify gettext/Makefile.common
  to use MAINTAINER?= to accomodate overrides.
  
  Next step: we should modularize up the emacs site-start.el.
  Initial email sent to emacs@.

Added:
  head/devel/gettext-po-mode/
     - copied from r568690, head/devel/gettext-tools/
Deleted:
  head/devel/gettext-po-mode/files/
Modified:
  head/devel/Makefile
  head/devel/gettext-po-mode/Makefile
  head/devel/gettext-po-mode/pkg-descr
  head/devel/gettext-po-mode/pkg-plist
  head/devel/gettext/Makefile.common

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Mar 19 09:29:38 2021	(r568788)
+++ head/devel/Makefile	Fri Mar 19 10:52:17 2021	(r568789)
@@ -793,6 +793,7 @@
     SUBDIR += gettext
     SUBDIR += gettext-lint
     SUBDIR += gettext-msghack
+    SUBDIR += gettext-po-mode
     SUBDIR += gettext-runtime
     SUBDIR += gettext-tools
     SUBDIR += gflags

Modified: head/devel/gettext-po-mode/Makefile
==============================================================================
--- head/devel/gettext-tools/Makefile	Wed Mar 17 20:58:24 2021	(r568690)
+++ head/devel/gettext-po-mode/Makefile	Fri Mar 19 10:52:17 2021	(r568789)
@@ -1,13 +1,10 @@
 # $FreeBSD$
 
-# NOTE: before committing to this port, contact portmgr to arrange for an
-# experimental ports run.  Untested commits may be backed out at portmgr's
-# discretion.
-
-PORTNAME=	gettext-tools
+PORTNAME=	gettext-po-mode
 PORTREVISION=	0
 
-COMMENT=	GNU gettext development and translation tools
+MAINTAINER=	mandree@FreeBSD.org
+COMMENT=	GNU gettext po-mode for emacs
 
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/../COPYING
@@ -17,47 +14,19 @@ LICENSE_FILE=	${WRKSRC}/../COPYING
 BUILD_DEPENDS=	libtextstyle>=${PORTVERSION}:devel/libtextstyle
 LIB_DEPENDS=	libtextstyle.so:devel/libtextstyle
 
-USES=		charsetfix cpe gettext-runtime iconv libtool tar:xz
-USE_LDCONFIG=	yes
+USES=		cpe emacs:build tar:xz
 
-CPE_PRODUCT=	gettext
 CPE_VENDOR=	gnu
+CPE_PRODUCT=	gettext
 
 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
-INSTALL_TARGET=	install-strip
-TEST_TARGET=	check
+CONFIGURE_ARGS=	--with-emacs --without-git ac_cv_lib_rt_sched_yield=no
+INSTALL_TARGET=	install
+
+BUILD_WRKSRC=	${WRKSRC}/emacs
+INSTALL_WRKSRC=	${BUILD_WRKSRC}
 WRKSRC_SUBDIR=	gettext-tools
 
-DATADIR=	${PREFIX}/share/gettext
-DOCSDIR=	${PREFIX}/share/doc/gettext
 PLIST_SUB=	PORTVERSION=${PORTVERSION} VERSION=${PORTVERSION}
-
-INFO=		gettext
-
-OPTIONS_DEFINE=	DOCS EXAMPLES THREADS
-OPTIONS_DEFAULT=THREADS
-OPTIONS_EXCLUDE_DragonFly=	THREADS
-
-THREADS_CONFIGURE_ENABLE=	threads
-
-post-patch:
-# Do not patch system float.h.
-	@${REINPLACE_CMD} 's/FLOAT_H=float\.h//' \
-		${WRKSRC}/configure
-# Use libintl installed by gettext-runtime.
-	@${REINPLACE_CMD} '/^LDADD_no =/s,\.\./intl/libgnuintl.la,,' \
-		${WRKSRC}/tests/Makefile.in
-# 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-po-mode/pkg-descr
==============================================================================
--- head/devel/gettext-tools/pkg-descr	Wed Mar 17 20:58:24 2021	(r568690)
+++ head/devel/gettext-po-mode/pkg-descr	Fri Mar 19 10:52:17 2021	(r568789)
@@ -1,6 +1,6 @@
 GNU gettext is a framework of libraries and tools for internationalisation
 and localisation of software.
 
-This package contains development and translation tools.
+This package contains the po-mode for the emacs editor.
 
 WWW: https://www.gnu.org/software/gettext/

Modified: head/devel/gettext-po-mode/pkg-plist
==============================================================================
--- head/devel/gettext-tools/pkg-plist	Wed Mar 17 20:58:24 2021	(r568690)
+++ head/devel/gettext-po-mode/pkg-plist	Fri Mar 19 10:52:17 2021	(r568789)
@@ -1,1831 +1,6 @@
-bin/autopoint
-bin/gettextize
-bin/msgattrib
-bin/msgcat
-bin/msgcmp
-bin/msgcomm
-bin/msgconv
-bin/msgen
-bin/msgexec
-bin/msgfilter
-bin/msgfmt
-bin/msggrep
-bin/msginit
-bin/msgmerge
-bin/msgunfmt
-bin/msguniq
-bin/recode-sr-latin
-bin/xgettext
-include/gettext-po.h
-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.7
-lib/libgettextsrc-%%PORTVERSION%%.so
-lib/libgettextsrc.so
-man/man1/autopoint.1.gz
-man/man1/gettextize.1.gz
-man/man1/msgattrib.1.gz
-man/man1/msgcat.1.gz
-man/man1/msgcmp.1.gz
-man/man1/msgcomm.1.gz
-man/man1/msgconv.1.gz
-man/man1/msgen.1.gz
-man/man1/msgexec.1.gz
-man/man1/msgfilter.1.gz
-man/man1/msgfmt.1.gz
-man/man1/msggrep.1.gz
-man/man1/msginit.1.gz
-man/man1/msgmerge.1.gz
-man/man1/msgunfmt.1.gz
-man/man1/msguniq.1.gz
-man/man1/recode-sr-latin.1.gz
-man/man1/xgettext.1.gz
-share/aclocal/gettext.m4
-share/aclocal/host-cpu-c-abi.m4
-share/aclocal/iconv.m4
-share/aclocal/intlmacosx.m4
-share/aclocal/lib-ld.m4
-share/aclocal/lib-link.m4
-share/aclocal/lib-prefix.m4
-share/aclocal/nls.m4
-share/aclocal/po.m4
-share/aclocal/progtest.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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/nn.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/sq.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
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/el.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/eo.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/es.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/fi.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/fr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ga.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/gl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/hr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/hu.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/id.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/it.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ja.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ky.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/lv.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ms.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/mt.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/nb.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/nl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/nn.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/pl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/pt.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/pt_BR.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ro.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ru.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sk.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sq.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sv.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ta.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/tr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/uk.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/vi.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/zh_CN.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/zh_HK.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/zh_TW.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/BUGS
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/Hello.java
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/INSTALL
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/Makefile.am
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/autoclean.sh
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/autogen.sh
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/configure.ac
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/m4/Makefile.am
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/m4/TestAWT.class
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/m4/TestAWT.java
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/LINGUAS
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/Makefile.am
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/af.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ast.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/bg.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ca.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/cs.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/da.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/de.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/el.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/eo.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/es.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/fi.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/fr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ga.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/gl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/hr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/hu.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/id.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/it.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ja.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ky.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/lv.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ms.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/mt.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/nb.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/nl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/nn.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/pl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/pt.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/pt_BR.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ro.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ru.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sk.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sq.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sv.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ta.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/tr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/uk.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/vi.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/zh_CN.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/zh_HK.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/zh_TW.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/BUGS
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/Hello.java
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/INSTALL
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/Makefile.am
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/autoclean.sh
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/autogen.sh
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/configure.ac
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/m4/Makefile.am
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/m4/Test15.class
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/m4/Test15.java
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/LINGUAS
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/Makefile.am
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/af.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ast.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/bg.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ca.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/cs.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/da.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/de.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/el.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/eo.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/es.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/fi.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/fr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ga.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/gl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/hr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/hu.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/id.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/it.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ja.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ky.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/lv.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ms.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/mt.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/nb.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/nl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/nn.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/pl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/pt.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/pt_BR.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ro.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ru.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sk.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sl.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sq.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sv.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ta.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/tr.po
-%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/uk.po

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



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