diff --git a/comms/grig/files/patch-Makefile.am b/comms/grig/files/patch-Makefile.am new file mode 100644 index 000000000000..91a0a577982e --- /dev/null +++ b/comms/grig/files/patch-Makefile.am @@ -0,0 +1,9 @@ +--- Makefile.am.orig 2023-01-24 21:13:11 UTC ++++ Makefile.am +@@ -8,5 +8,4 @@ EXTRA_DIST = \ + win32/Makefile \ + win32/icons/grig.ico + +-# Install any third party macros into our tree for distribution +-ACLOCAL_AMFLAGS = -I m4 --install ++ACLOCAL_AMFLAGS = -I m4 diff --git a/deskutils/xpad/files/patch-Makefile.am b/deskutils/xpad/files/patch-Makefile.am new file mode 100644 index 000000000000..e2fd49b656e5 --- /dev/null +++ b/deskutils/xpad/files/patch-Makefile.am @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2022-05-23 12:07:02 UTC ++++ Makefile.am +@@ -6,7 +6,7 @@ SUBDIRS = \ + po \ + src + +-# ACLOCAL_AMFLAGS = -I m4 ++ACLOCAL_AMFLAGS = -I m4 + + EXTRA_DIST = \ + autogen.sh diff --git a/devel/gettext-runtime/Makefile b/devel/gettext-runtime/Makefile index 39cfad9b9617..c3d9176d8d06 100644 --- a/devel/gettext-runtime/Makefile +++ b/devel/gettext-runtime/Makefile @@ -1,44 +1,46 @@ # 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-runtime PORTREVISION= 0 COMMENT= GNU gettext runtime libraries and programs WWW= https://www.gnu.org/software/gettext/ 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 -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --disable-csharp --disable-java --with-included-gettext \ ac_cv_lib_rt_sched_yield=no INSTALL_TARGET= install-strip TEST_TARGET= check WRKSRC_SUBDIR= gettext-runtime DATADIR= ${PREFIX}/share/gettext DOCSDIR= ${PREFIX}/share/doc/gettext INFO= autosprintf OPTIONS_DEFINE= DOCS .include .if ${OPSYS} == DragonFly CONFIGURE_ARGS+=--disable-threads .endif +post-install: + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/gettext + .include diff --git a/devel/gettext-runtime/files/patch-intl_osdep.c b/devel/gettext-runtime/files/patch-intl_osdep.c index 1f1825303b65..d6703fb1ca87 100644 --- a/devel/gettext-runtime/files/patch-intl_osdep.c +++ b/devel/gettext-runtime/files/patch-intl_osdep.c @@ -1,28 +1,36 @@ --- intl/osdep.c.orig 2019-05-11 11:29:32 UTC +++ intl/osdep.c -@@ -18,6 +18,25 @@ +@@ -18,6 +18,33 @@ # include "intl-exports.c" #elif defined __EMX__ && !defined __KLIBC__ # include "os2compat.c" +#elif defined __FreeBSD__ +#include -+#include ++#include +#include +#include +static __attribute__((constructor)) void +libintl_init (void) +{ +#if __FreeBSD_version >= 1400094 -+ /* We don't link with libpthread in order to avoid the overhead for -+ non-threaded programs. Instead we dlopen it with RTLD_NOLOAD here -+ to ensure it is initialised when present. */ ++ /* This dlopen call initialises libpthread if it is present. Normally ++ this is handled by linking to libpthread but libintl does not link ++ with libpthread to avoid the overhead for non-threaded programs. */ + (void) dlopen ("libpthread.so", RTLD_LAZY | RTLD_GLOBAL | RTLD_NOLOAD); +#else -+ /* For older versions this hack also triggers libpthread -+ initialisation. */ -+ (void) pthread_self (); ++ /* The dlopen call above does not work correctly on older versions of ++ FreeBSD. Call pthread_mutex_timedlock instead. It initialises ++ libpthread and there's no libc stub that can preempt it. */ ++#pragma weak pthread_mutex_timedlock ++ if (pthread_mutex_timedlock != NULL) ++ { ++ pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; ++ pthread_mutex_timedlock (&lock, NULL); ++ pthread_mutex_unlock (&lock); ++ pthread_mutex_destroy (&lock); ++ } +#endif +} #else /* Avoid AIX compiler warning. */ typedef int dummy; diff --git a/devel/gettext-runtime/pkg-plist b/devel/gettext-runtime/pkg-plist index ddb7d946bc6c..0854fd8b707c 100644 --- a/devel/gettext-runtime/pkg-plist +++ b/devel/gettext-runtime/pkg-plist @@ -1,99 +1,98 @@ bin/envsubst bin/gettext bin/gettext.sh bin/ngettext include/autosprintf.h include/libintl.h lib/libasprintf.a lib/libasprintf.so lib/libasprintf.so.0 lib/libasprintf.so.0.0.0 lib/libintl.a lib/libintl.so lib/libintl.so.8 -lib/libintl.so.8.4.0 +lib/libintl.so.8.4.1 %%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 share/locale/cs/LC_MESSAGES/gettext-runtime.mo share/locale/da/LC_MESSAGES/gettext-runtime.mo share/locale/de/LC_MESSAGES/gettext-runtime.mo share/locale/el/LC_MESSAGES/gettext-runtime.mo share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo share/locale/eo/LC_MESSAGES/gettext-runtime.mo share/locale/es/LC_MESSAGES/gettext-runtime.mo share/locale/et/LC_MESSAGES/gettext-runtime.mo share/locale/fi/LC_MESSAGES/gettext-runtime.mo share/locale/fr/LC_MESSAGES/gettext-runtime.mo share/locale/ga/LC_MESSAGES/gettext-runtime.mo share/locale/gl/LC_MESSAGES/gettext-runtime.mo share/locale/hr/LC_MESSAGES/gettext-runtime.mo share/locale/hu/LC_MESSAGES/gettext-runtime.mo share/locale/id/LC_MESSAGES/gettext-runtime.mo share/locale/it/LC_MESSAGES/gettext-runtime.mo share/locale/ja/LC_MESSAGES/gettext-runtime.mo share/locale/ka/LC_MESSAGES/gettext-runtime.mo share/locale/ko/LC_MESSAGES/gettext-runtime.mo -share/locale/locale.alias share/locale/nb/LC_MESSAGES/gettext-runtime.mo share/locale/nl/LC_MESSAGES/gettext-runtime.mo share/locale/nn/LC_MESSAGES/gettext-runtime.mo share/locale/pl/LC_MESSAGES/gettext-runtime.mo share/locale/pt/LC_MESSAGES/gettext-runtime.mo share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo share/locale/ro/LC_MESSAGES/gettext-runtime.mo share/locale/ru/LC_MESSAGES/gettext-runtime.mo share/locale/sk/LC_MESSAGES/gettext-runtime.mo share/locale/sl/LC_MESSAGES/gettext-runtime.mo share/locale/sr/LC_MESSAGES/gettext-runtime.mo share/locale/sv/LC_MESSAGES/gettext-runtime.mo share/locale/tr/LC_MESSAGES/gettext-runtime.mo share/locale/uk/LC_MESSAGES/gettext-runtime.mo share/locale/vi/LC_MESSAGES/gettext-runtime.mo share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo share/man/man1/envsubst.1.gz share/man/man1/gettext.1.gz share/man/man1/ngettext.1.gz share/man/man3/bind_textdomain_codeset.3.gz share/man/man3/bindtextdomain.3.gz share/man/man3/dcgettext.3.gz share/man/man3/dcngettext.3.gz share/man/man3/dgettext.3.gz share/man/man3/dngettext.3.gz share/man/man3/gettext.3.gz share/man/man3/ngettext.3.gz share/man/man3/textdomain.3.gz diff --git a/devel/gettext-tools/Makefile b/devel/gettext-tools/Makefile index 23d730be60e3..f49004bd43e8 100644 --- a/devel/gettext-tools/Makefile +++ b/devel/gettext-tools/Makefile @@ -1,57 +1,59 @@ # 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 PORTREVISION= 0 COMMENT= GNU gettext development and translation tools WWW= https://www.gnu.org/software/gettext/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/../COPYING .include "${.CURDIR}/../gettext/Makefile.common" BUILD_DEPENDS= libtextstyle>=${PORTVERSION}:devel/libtextstyle LIB_DEPENDS= libtextstyle.so:devel/libtextstyle USES= charsetfix cpe gettext-runtime iconv libtool localbase tar:xz USE_LDCONFIG= yes CPE_PRODUCT= gettext CPE_VENDOR= gnu GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --disable-csharp --disable-java --with-included-glib \ --with-included-libcroco --with-included-libunistring \ --with-included-libxml --with-installed-libtextstyle \ --with-xz --without-emacs \ ac_cv_lib_rt_sched_yield=no INSTALL_TARGET= install-strip TEST_TARGET= check 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: # Point some files to the installed gettext-runtime. @${LN} -s ${LOCALBASE}/include/libintl.h \ ${WRKSRC}/../gettext-runtime/intl/libgnuintl.h @${ECHO_CMD} $$'# Generated by libtool\nlibrary_names=libintl.so\nlibdir=${LOCALBASE}/lib' \ > ${WRKSRC}/../gettext-runtime/intl/libintl.la @${ECHO_CMD} $$'# Generated by libtool\nlibrary_names=libasprintf.so\nlibdir=${LOCALBASE}/lib' \ > ${WRKSRC}/../gettext-runtime/libasprintf/libasprintf.la +post-install: + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/gettext + .include diff --git a/devel/gettext-tools/pkg-plist b/devel/gettext-tools/pkg-plist index d784fb82ffde..c761319de349 100644 --- a/devel/gettext-tools/pkg-plist +++ b/devel/gettext-tools/pkg-plist @@ -1,1920 +1,1929 @@ 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.a lib/libgettextlib.so lib/libgettextpo.a lib/libgettextpo.so lib/libgettextpo.so.0 -lib/libgettextpo.so.0.5.10 +lib/libgettextpo.so.0.5.11 lib/libgettextsrc-%%PORTVERSION%%.so lib/libgettextsrc.a lib/libgettextsrc.so +libexec/gettext/cldr-plurals +libexec/gettext/hostname +libexec/gettext/project-id +libexec/gettext/urlget +libexec/gettext/user-email share/aclocal/build-to-host.m4 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/ka.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/ka.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/ka.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/ka.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/ka.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++20/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/hello.cc %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/Makevars %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/POTFILES.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/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/ka.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/ka.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/ka.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/ka.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/ka.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/ka.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/ka.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/ka.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/ka.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/ka.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 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/BUGS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/Hello.java %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/m4/TestAWT.class %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/m4/TestAWT.java %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/Hello.java %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/hello.jl.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/hello.m %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/gnome-gnorba-check.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/gnome-orbit-check.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/m4/gnome.m4 %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/Makevars %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/POTFILES.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/AppController.h %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/AppController.m %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/BUGS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/GNUmakefile %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/Hello.h %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/Hello.m %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/main.m %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/GNUmakefile %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/LocaleAliases %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/hello.m %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/Makevars %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/POTFILES.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/hello.pas %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/hello-1.pl.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/hello-2.pl.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/README %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/hello.php %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/hello.py.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/hello.st.in %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/hello.tcl %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/hello.tcl %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/INSTALL %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/autoclean.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/autogen.sh %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/configure.ac %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/hello.ycp %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/m4/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/LINGUAS %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/Makefile.am %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/af.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ast.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/bg.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ca.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/cs.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/da.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/de.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/el.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/eo.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/es.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/fi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/fr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ga.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/gl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/hr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/hu.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/id.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/it.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ja.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ka.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ky.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/lv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ms.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/mt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/nb.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/nl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/nn.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/pl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/pt.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/pt_BR.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ro.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ru.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sl.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sq.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sv.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ta.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/tr.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/uk.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/vi.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/zh_CN.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/zh_HK.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/zh_TW.po %%PORTEXAMPLES%%%%DOCSDIR%%/examples/installpaths %%PORTDOCS%%%%DOCSDIR%%/gettext_1.html %%PORTDOCS%%%%DOCSDIR%%/gettext_10.html %%PORTDOCS%%%%DOCSDIR%%/gettext_11.html %%PORTDOCS%%%%DOCSDIR%%/gettext_12.html %%PORTDOCS%%%%DOCSDIR%%/gettext_13.html %%PORTDOCS%%%%DOCSDIR%%/gettext_14.html %%PORTDOCS%%%%DOCSDIR%%/gettext_15.html %%PORTDOCS%%%%DOCSDIR%%/gettext_16.html %%PORTDOCS%%%%DOCSDIR%%/gettext_17.html %%PORTDOCS%%%%DOCSDIR%%/gettext_18.html %%PORTDOCS%%%%DOCSDIR%%/gettext_19.html %%PORTDOCS%%%%DOCSDIR%%/gettext_2.html %%PORTDOCS%%%%DOCSDIR%%/gettext_20.html %%PORTDOCS%%%%DOCSDIR%%/gettext_21.html %%PORTDOCS%%%%DOCSDIR%%/gettext_22.html %%PORTDOCS%%%%DOCSDIR%%/gettext_23.html %%PORTDOCS%%%%DOCSDIR%%/gettext_24.html %%PORTDOCS%%%%DOCSDIR%%/gettext_25.html %%PORTDOCS%%%%DOCSDIR%%/gettext_26.html %%PORTDOCS%%%%DOCSDIR%%/gettext_27.html %%PORTDOCS%%%%DOCSDIR%%/gettext_28.html %%PORTDOCS%%%%DOCSDIR%%/gettext_29.html %%PORTDOCS%%%%DOCSDIR%%/gettext_3.html %%PORTDOCS%%%%DOCSDIR%%/gettext_30.html %%PORTDOCS%%%%DOCSDIR%%/gettext_4.html %%PORTDOCS%%%%DOCSDIR%%/gettext_5.html %%PORTDOCS%%%%DOCSDIR%%/gettext_6.html %%PORTDOCS%%%%DOCSDIR%%/gettext_7.html %%PORTDOCS%%%%DOCSDIR%%/gettext_8.html %%PORTDOCS%%%%DOCSDIR%%/gettext_9.html %%PORTDOCS%%%%DOCSDIR%%/gettext_abt.html %%PORTDOCS%%%%DOCSDIR%%/gettext_fot.html %%PORTDOCS%%%%DOCSDIR%%/gettext_toc.html %%PORTDOCS%%%%DOCSDIR%%/gettextize.1.html %%PORTDOCS%%%%DOCSDIR%%/msgattrib.1.html %%PORTDOCS%%%%DOCSDIR%%/msgcat.1.html %%PORTDOCS%%%%DOCSDIR%%/msgcmp.1.html %%PORTDOCS%%%%DOCSDIR%%/msgcomm.1.html %%PORTDOCS%%%%DOCSDIR%%/msgconv.1.html %%PORTDOCS%%%%DOCSDIR%%/msgen.1.html %%PORTDOCS%%%%DOCSDIR%%/msgexec.1.html %%PORTDOCS%%%%DOCSDIR%%/msgfilter.1.html %%PORTDOCS%%%%DOCSDIR%%/msgfmt.1.html %%PORTDOCS%%%%DOCSDIR%%/msggrep.1.html %%PORTDOCS%%%%DOCSDIR%%/msginit.1.html %%PORTDOCS%%%%DOCSDIR%%/msgmerge.1.html %%PORTDOCS%%%%DOCSDIR%%/msgunfmt.1.html %%PORTDOCS%%%%DOCSDIR%%/msguniq.1.html %%PORTDOCS%%%%DOCSDIR%%/recode-sr-latin.1.html %%PORTDOCS%%%%DOCSDIR%%/tutorial.html %%PORTDOCS%%%%DOCSDIR%%/xgettext.1.html +%%DATADIR%%-%%VERSION%%/its/docbook.loc +%%DATADIR%%-%%VERSION%%/its/docbook4.its +%%DATADIR%%-%%VERSION%%/its/docbook5.its %%DATADIR%%-%%VERSION%%/its/glade.loc %%DATADIR%%-%%VERSION%%/its/glade1.its %%DATADIR%%-%%VERSION%%/its/glade2.its %%DATADIR%%-%%VERSION%%/its/gsettings.its %%DATADIR%%-%%VERSION%%/its/gsettings.loc %%DATADIR%%-%%VERSION%%/its/gtkbuilder.its %%DATADIR%%-%%VERSION%%/its/metainfo.its %%DATADIR%%-%%VERSION%%/its/metainfo.loc %%DATADIR%%/archive.dir.tar.xz %%DATADIR%%/config.rpath +%%DATADIR%%/disclaim-translations.txt %%DATADIR%%/javaversion.class %%DATADIR%%/msgunfmt.tcl %%DATADIR%%/po/Makefile.in.in %%DATADIR%%/po/Makevars.template %%DATADIR%%/po/Rules-quot %%DATADIR%%/po/boldquot.sed %%DATADIR%%/po/en@boldquot.header %%DATADIR%%/po/en@quot.header -%%DATADIR%%/po/insert-header.sin +%%DATADIR%%/po/insert-header.sed %%DATADIR%%/po/quot.sed -%%DATADIR%%/po/remove-potcdate.sin +%%DATADIR%%/po/remove-potcdate.sed %%DATADIR%%/projects/GNOME/team-address %%DATADIR%%/projects/GNOME/teams.html %%DATADIR%%/projects/GNOME/teams.url %%DATADIR%%/projects/GNOME/trigger %%DATADIR%%/projects/KDE/team-address %%DATADIR%%/projects/KDE/teams.html %%DATADIR%%/projects/KDE/teams.url %%DATADIR%%/projects/KDE/trigger %%DATADIR%%/projects/TP/team-address %%DATADIR%%/projects/TP/teams.html %%DATADIR%%/projects/TP/teams.url %%DATADIR%%/projects/TP/trigger %%DATADIR%%/projects/index %%DATADIR%%/projects/team-address +%%DATADIR%%/schema/its-extensions.xsd +%%DATADIR%%/schema/its.xsd10 +%%DATADIR%%/schema/its.xsd11 +%%DATADIR%%/schema/locating-rules.xsd10 +%%DATADIR%%/schema/locating-rules.xsd11 %%DATADIR%%/styles/po-default.css %%DATADIR%%/styles/po-emacs-x.css %%DATADIR%%/styles/po-emacs-xterm.css %%DATADIR%%/styles/po-emacs-xterm16.css %%DATADIR%%/styles/po-emacs-xterm256.css %%DATADIR%%/styles/po-vim.css share/locale/be/LC_MESSAGES/gettext-tools.mo share/locale/bg/LC_MESSAGES/gettext-tools.mo share/locale/ca/LC_MESSAGES/gettext-tools.mo share/locale/cs/LC_MESSAGES/gettext-tools.mo share/locale/da/LC_MESSAGES/gettext-tools.mo share/locale/de/LC_MESSAGES/gettext-tools.mo share/locale/el/LC_MESSAGES/gettext-tools.mo share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo share/locale/en@quot/LC_MESSAGES/gettext-tools.mo share/locale/es/LC_MESSAGES/gettext-tools.mo share/locale/et/LC_MESSAGES/gettext-tools.mo share/locale/eu/LC_MESSAGES/gettext-tools.mo share/locale/fi/LC_MESSAGES/gettext-tools.mo share/locale/fr/LC_MESSAGES/gettext-tools.mo share/locale/gl/LC_MESSAGES/gettext-tools.mo share/locale/hr/LC_MESSAGES/gettext-tools.mo share/locale/id/LC_MESSAGES/gettext-tools.mo share/locale/it/LC_MESSAGES/gettext-tools.mo share/locale/ja/LC_MESSAGES/gettext-tools.mo share/locale/ka/LC_MESSAGES/gettext-tools.mo share/locale/ko/LC_MESSAGES/gettext-tools.mo share/locale/nb/LC_MESSAGES/gettext-tools.mo share/locale/nl/LC_MESSAGES/gettext-tools.mo share/locale/nn/LC_MESSAGES/gettext-tools.mo share/locale/pa/LC_MESSAGES/gettext-tools.mo share/locale/pl/LC_MESSAGES/gettext-tools.mo share/locale/pt/LC_MESSAGES/gettext-tools.mo share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo share/locale/ro/LC_MESSAGES/gettext-tools.mo share/locale/ru/LC_MESSAGES/gettext-tools.mo share/locale/sk/LC_MESSAGES/gettext-tools.mo share/locale/sl/LC_MESSAGES/gettext-tools.mo share/locale/sr/LC_MESSAGES/gettext-tools.mo share/locale/sv/LC_MESSAGES/gettext-tools.mo share/locale/tr/LC_MESSAGES/gettext-tools.mo share/locale/uk/LC_MESSAGES/gettext-tools.mo share/locale/vi/LC_MESSAGES/gettext-tools.mo share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo share/man/man1/autopoint.1.gz share/man/man1/gettextize.1.gz share/man/man1/msgattrib.1.gz share/man/man1/msgcat.1.gz share/man/man1/msgcmp.1.gz share/man/man1/msgcomm.1.gz share/man/man1/msgconv.1.gz share/man/man1/msgen.1.gz share/man/man1/msgexec.1.gz share/man/man1/msgfilter.1.gz share/man/man1/msgfmt.1.gz share/man/man1/msggrep.1.gz share/man/man1/msginit.1.gz share/man/man1/msgmerge.1.gz share/man/man1/msgunfmt.1.gz share/man/man1/msguniq.1.gz share/man/man1/recode-sr-latin.1.gz share/man/man1/xgettext.1.gz diff --git a/devel/gettext/Makefile.common b/devel/gettext/Makefile.common index 695e8eb1ecbc..eff2d474dd7c 100644 --- a/devel/gettext/Makefile.common +++ b/devel/gettext/Makefile.common @@ -1,14 +1,14 @@ # 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. -DISTVERSION= 0.22.5 +DISTVERSION= 0.23 PORTREVISION?= 0 # Leave this zero. Set in Makefile instead. CATEGORIES= devel MASTER_SITES= GNU/gettext DISTNAME= gettext-${PORTVERSION} MAINTAINER?= tijl@FreeBSD.org DISTINFO_FILE= ${.CURDIR}/../gettext/distinfo LTO_UNSAFE= yes diff --git a/devel/gettext/distinfo b/devel/gettext/distinfo index 0208553644d8..1b64eb10d9f6 100644 --- a/devel/gettext/distinfo +++ b/devel/gettext/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710233470 -SHA256 (gettext-0.22.5.tar.xz) = fe10c37353213d78a5b83d48af231e005c4da84db5ce88037d88355938259640 -SIZE (gettext-0.22.5.tar.xz) = 10270724 +TIMESTAMP = 1734954951 +SHA256 (gettext-0.23.tar.xz) = bf31a9b6bdf3e364669c7bd9858f97e4a0c408a8d22940c5d4ab638b65460f85 +SIZE (gettext-0.23.tar.xz) = 11053572 diff --git a/devel/libtextstyle/pkg-plist b/devel/libtextstyle/pkg-plist index 86d20b048a3c..548f2a03fa61 100644 --- a/devel/libtextstyle/pkg-plist +++ b/devel/libtextstyle/pkg-plist @@ -1,17 +1,17 @@ include/textstyle.h include/textstyle/stdbool.h include/textstyle/version.h include/textstyle/woe32dll.h lib/libtextstyle.a lib/libtextstyle.so lib/libtextstyle.so.0 -lib/libtextstyle.so.0.2.1 +lib/libtextstyle.so.0.2.2 %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_1.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_2.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_3.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_4.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_5.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_6.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_7.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_abt.html %%PORTDOCS%%%%DOCSDIR%%/libtextstyle_toc.html diff --git a/games/7kaa/files/patch-Makefile.am b/games/7kaa/files/patch-Makefile.am new file mode 100644 index 000000000000..5458559daa66 --- /dev/null +++ b/games/7kaa/files/patch-Makefile.am @@ -0,0 +1,8 @@ +--- Makefile.am.orig 2023-09-22 01:27:50 UTC ++++ Makefile.am +@@ -1,4 +1,4 @@ +-ACLOCAL_AMFLAGS = --install -I m4 ++ACLOCAL_AMFLAGS = -I m4 + + SUBDIRS = data include src po +