diff --git a/Mk/Uses/autoreconf.mk b/Mk/Uses/autoreconf.mk index 4d36137a90ed..608027f599ff 100644 --- a/Mk/Uses/autoreconf.mk +++ b/Mk/Uses/autoreconf.mk @@ -1,136 +1,136 @@ # Run autoreconf in AUTORECONF_WRKSRC to update configure, Makefile.in and # other build scripts. # # Autoreconf runs the following commands provided by devel/autoconf and # devel/automake. Each command applies to a single configure.ac or # configure.in (old name). If configure.ac defines subdirectories with their # own configure.ac (using AC_CONFIG_SUBDIRS), autoreconf will recursively # update those as well. # # aclocal Looks up definitions of m4 macros used in configure.ac that are # not provided by autoconf and copies them from their source *.m4 # file to aclocal.m4. Local *.m4 files included with the source # code take precedence over systemwide *.m4 files. # autoconf Generates configure from configure.ac using macro definitions # provided by autoconf itself and aclocal.m4. # autoheader Generates a configuration header (typically config.h.in) from # configure.ac and the macro definitions in aclocal.m4. Run by # autoreconf if configure.ac (or one of the macros it uses) # contains AC_CONFIG_HEADERS, AC_CONFIG_HEADER (undocumented), or # AM_CONFIG_HEADER (obsolete). # automake Generates Makefile.in from Makefile.am for each Makefile # listed in configure.ac (using AC_CONFIG_FILES). Also updates # build scripts like compile, depcomp, install-sh, ylwrap,... # Run by autoreconf if configure.ac (or one of the macros it # uses) contains AM_INIT_AUTOMAKE. # # Autoreconf may also run these additional commands provided by other ports. # A port needs to have a build depdendency on these ports when that's the case. # # autopoint Provided by devel/gettext-tools. Updates gettext related *.m4 # files included with the source code and build scripts such as # config.rpath. Run by autoreconf if configure.ac (or one of the # macros it uses) contains AM_GNU_GETTEXT. A build dependency on # devel/gettext-tools can be added with USES+=gettext-tools. # Note that autoreconf runs autopoint even if a port has an NLS # option and the option is disabled. The build dependency on # gettext-tools is not optional. If the run dependency on # gettext is optional this can be specified with # NLS_USES=gettext-runtime. # gtkdocize Provided by textproc/gtk-doc. Updates gtk-doc related *.m4 # files included with the source code and build scripts such as # gtk-doc.make. Run by autoreconf if configure.ac contains # GTK_DOC_CHECK. The build dependency can be made optional with # DOCS option and DOCS_BUILD_DEPENDS+=gtkdocize:textproc/gtk-doc # on condition that you remove GTK_DOC_CHECK from configure.ac, # for instance using a post-patch-DOCS-off target with the # following command: # @${REINPLACE_CMD} /^GTK_DOC_CHECK/d ${WRKSRC}/configure.ac # It is likely that more patching is needed to eliminate or avoid # use of gtk-doc. # intltoolize Provided by textproc/intltool. Updates intltool related *.m4 # files included with the source code and build scripts such as # po/Makefile.in.in. Run by autoreconf if configure.ac contains # (AC|IT)_PROG_INTLTOOL. A build dependency on textproc/intltool # can be added with USES+=gnome and USE_GNOME+=intltool. # libtoolize Provided by devel/libtool. Updates libtool related *.m4 files # included with the source code and build scripts such as # ltmain.sh. Run by autoreconf if configure.ac (or one of the # macros it uses) contains AC_PROG_LIBTOOL or LT_INIT. A build # dependency on devel/libtool is added implicitly when USES # contains both autoreconf and libtool. # # Feature: autoreconf # Usage: USES=autoreconf or USES=autoreconf:args # Valid args: build Don't run autoreconf, only add build dependencies # 2.69 Use this legacy version # # Port maintainers can set the following variable: # # AUTORECONF_ARGS The string to pass to autoreconf in addition to # the default "-f -i" # # MAINTAINER: ports@FreeBSD.org .if !defined(_INCLUDE_USES_AUTORECONF_MK) _INCLUDE_USES_AUTORECONF_MK= yes _USES_POST+= autoreconf AUTORECONF?= ${LOCALBASE}/bin/autoreconf${_AUTORECONF} AUTORECONF_WRKSRC?= ${WRKSRC} .endif .if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_AUTORECONF_POST_MK) _INCLUDE_USES_AUTORECONF_POST_MK= yes . if ${autoreconf_ARGS:M2.69} _AUTORECONF= 2.69 BUILD_DEPENDS+= autoconf2.69>=2.69:devel/autoconf2.69 . else _AUTORECONF= 2.72 -BUILD_DEPENDS+= autoconf>=${_AUTORECONF}:devel/autoconf +BUILD_DEPENDS+= autoconf>=2.72_1:devel/autoconf . endif BUILD_DEPENDS+= automake>=1.18.1:devel/automake . if defined(libtool_ARGS) && empty(libtool_ARGS:Mbuild) BUILD_DEPENDS+= libtoolize:devel/libtool . endif # In case autoconf-switch wrapper scripts are used during build. CONFIGURE_ENV+= DEFAULT_AUTOCONF=${_AUTORECONF} MAKE_ENV+= DEFAULT_AUTOCONF=${_AUTORECONF} WRK_ENV+= DEFAULT_AUTOCONF=${_AUTORECONF} . if ${autoreconf_ARGS:Nbuild:N2.69} IGNORE= incorrect 'USES+=autoreconf:${autoreconf_ARGS}'\ expecting 'USES+=autoreconf[:build,2.69]' . endif . if ! ${autoreconf_ARGS:Mbuild} _USES_configure+= 470:do-autoreconf do-autoreconf: . for f in AUTHORS ChangeLog INSTALL NEWS README # Don't modify time stamps if the files already exist @test -e ${AUTORECONF_WRKSRC}/${f} || ${TOUCH} ${AUTORECONF_WRKSRC}/${f} . endfor . if ${_AUTORECONF} == 2.69 @(cd ${AUTORECONF_WRKSRC} && \ if test -f configure.ac; then configure=configure.ac; \ else configure=configure.in; fi && \ if ${GREP} -q '^GTK_DOC_CHECK' $${configure}; \ then if ! ${LOCALBASE}/bin/gtkdocize --copy; then \ ${ECHO_MSG} '===> Mk/Uses/autoreconf.mk: Error running gtkdocize'; \ ${FALSE}; fi; fi && \ if ${EGREP} -q '^(AC|IT)_PROG_INTLTOOL' $${configure}; \ then if ! ${LOCALBASE}/bin/intltoolize -f -c; then \ ${ECHO_MSG} '===> Mk/Uses/autoreconf.mk: Error running intltoolize'; \ ${FALSE}; fi; fi) . endif @(cd ${AUTORECONF_WRKSRC} && if ! ${AUTORECONF} -f -i ${AUTORECONF_ARGS}; then \ ${ECHO_MSG} '===> Mk/Uses/autoreconf.mk: Error running ${AUTORECONF}'; \ ${FALSE}; fi) . endif .endif diff --git a/Mk/Uses/gettext-runtime.mk b/Mk/Uses/gettext-runtime.mk index 1d0f0b8900b9..1dd435df643e 100644 --- a/Mk/Uses/gettext-runtime.mk +++ b/Mk/Uses/gettext-runtime.mk @@ -1,27 +1,27 @@ # Handle dependency on the gettext-runtime (libintl) port # # Feature: gettext-runtime # Usage: USES=gettext-runtime or USES=gettext-runtime:ARGS # Valid ARGS: lib (default), build, run # # MAINTAINER: tijl@FreeBSD.org .if !defined(_INCLUDE_USES_GETTEXT_RUNTIME_MK) _INCLUDE_USES_GETTEXT_RUNTIME_MK= yes . if empty(gettext-runtime_ARGS) gettext-runtime_ARGS= lib . endif . if ${gettext-runtime_ARGS:Mlib} -BUILD_DEPENDS+= gettext-runtime>=0.22_1:devel/gettext-runtime +BUILD_DEPENDS+= gettext-runtime>=0.26:devel/gettext-runtime LIB_DEPENDS+= libintl.so:devel/gettext-runtime . endif . if ${gettext-runtime_ARGS:Mbuild} -BUILD_DEPENDS+= gettext-runtime>=0.22_1:devel/gettext-runtime +BUILD_DEPENDS+= gettext-runtime>=0.26:devel/gettext-runtime . endif . if ${gettext-runtime_ARGS:Mrun} -RUN_DEPENDS+= gettext-runtime>=0.22_1:devel/gettext-runtime +RUN_DEPENDS+= gettext-runtime>=0.26:devel/gettext-runtime . endif .endif diff --git a/Mk/Uses/gettext-tools.mk b/Mk/Uses/gettext-tools.mk index 948a505ed8b9..a59241b30ffc 100644 --- a/Mk/Uses/gettext-tools.mk +++ b/Mk/Uses/gettext-tools.mk @@ -1,23 +1,23 @@ # Handle dependency on the gettext-tools port # # Feature: gettext-tools # Usage: USES=gettext-tools or USES=gettext-tools:ARGS # Valid ARGS: build (default), run # # MAINTAINER: tijl@FreeBSD.org .if !defined(_INCLUDE_USES_GETTEXT_TOOLS_MK) _INCLUDE_USES_GETTEXT_TOOLS_MK= yes . if empty(gettext-tools_ARGS) gettext-tools_ARGS= build . endif . if ${gettext-tools_ARGS:Mbuild} -BUILD_DEPENDS+= msgfmt:devel/gettext-tools +BUILD_DEPENDS+= gettext-tools>=0.26:devel/gettext-tools . endif . if ${gettext-tools_ARGS:Mrun} -RUN_DEPENDS+= msgfmt:devel/gettext-tools +RUN_DEPENDS+= gettext-tools>=0.26:devel/gettext-tools . endif .endif diff --git a/benchmarks/sysbench/Makefile b/benchmarks/sysbench/Makefile index 4d60f28f4ebb..e7f852a49582 100644 --- a/benchmarks/sysbench/Makefile +++ b/benchmarks/sysbench/Makefile @@ -1,35 +1,36 @@ PORTNAME= sysbench PORTVERSION= 1.0.20 PORTREVISION= 2 CATEGORIES= benchmarks databases MAINTAINER= sunpoet@FreeBSD.org COMMENT= Scriptable database and system performance benchmark WWW= https://github.com/akopytov/sysbench LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libck.so:devel/concurrencykit -USES= autoreconf compiler:c11 gmake libtool luajit pkgconfig +USES= autoreconf compiler:c11 gettext-tools gmake libtool luajit \ + pkgconfig CONFIGURE_ARGS= --with-system-ck --with-system-luajit GNU_CONFIGURE= yes GH_ACCOUNT= akopytov USE_GITHUB= yes OPTIONS_DEFINE= LFS MYSQL PGSQL OPTIONS_DEFAULT=LFS MYSQL LFS_CONFIGURE_ENABLE= largefile MYSQL_CONFIGURE_WITH= mysql MYSQL_USES= mysql PGSQL_CONFIGURE_WITH= pgsql PGSQL_USES= pgsql post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS = / s| doc||' ${WRKSRC}/Makefile.am .include diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile index 6ccff1dac878..a19565396ebe 100644 --- a/devel/autoconf/Makefile +++ b/devel/autoconf/Makefile @@ -1,73 +1,73 @@ PORTNAME= autoconf DISTVERSION= 2.72 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNU MAINTAINER= tijl@FreeBSD.org COMMENT= Generate configure scripts and related files WWW= https://www.gnu.org/software/autoconf/ LICENSE= EXCEPTION GFDL GPLv2+ GPLv3+ LICENSE_COMB= multi LICENSE_NAME_EXCEPTION= AUTOCONF CONFIGURE SCRIPT EXCEPTION LICENSE_FILE_EXCEPTION= ${WRKSRC}/COPYING.EXCEPTION LICENSE_FILE_GFDL= ${WRKSRC}/doc/fdl.texi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYINGv3 LICENSE_PERMS_EXCEPTION=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= gm4:devel/m4 RUN_DEPENDS= autoconf-switch>=0:devel/autoconf-switch \ gm4:devel/m4 USES= perl5 tar:xz VERSION= ${DISTVERSION} GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --program-suffix=${VERSION} \ --without-lispdir CONFIGURE_ENV= AWK=${AWK} \ EMACS=no \ M4=${LOCALBASE}/bin/gm4 DATADIR= ${PREFIX}/share/autoconf${VERSION} NO_ARCH= yes PLIST_SUB= VERSION=${VERSION} OPTIONS_DEFINE= INFO OPTIONS_DEFAULT=INFO INFO_USES= makeinfo INFO_INFO= autoconf${VERSION} post-patch: @${REINPLACE_CMD} '/^pkgdatadir =/s/@PACKAGE@/&@VERSION@/' \ ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -E \ -e 's/[^-/]auto(conf|header|reconf|scan|update)/&${VERSION}/g' \ -e 's/ifnames/&${VERSION}/g' \ -e '/config\.(guess|sub)/d' \ ${WRKSRC}/man/*.1 post-patch-INFO-on: @${REINPLACE_CMD} -E 's/autoconf\.(info|texi)/autoconf${VERSION}.\1/g' \ ${WRKSRC}/Makefile.in @${CP} ${WRKSRC}/doc/autoconf.texi ${WRKSRC}/doc/autoconf${VERSION}.texi @${REINPLACE_CMD} \ -e 's/autoconf\.info/autoconf${VERSION}.info/' \ -e '/^@direntry/,/^@end/ { \ s/^\*[^-:]*/&${VERSION}/ ; \ s/(autoconf)/(autoconf${VERSION})/ ; \ s/ \{2,9\}/ / ; }' \ ${WRKSRC}/doc/autoconf${VERSION}.texi # Restore timestamp in .info file. @${TOUCH} -r ${WRKSRC}/doc/autoconf${VERSION}.texi.bak \ ${WRKSRC}/doc/autoconf${VERSION}.texi post-patch-INFO-off: @${REINPLACE_CMD} '/^INFO_DEPS =/d' ${WRKSRC}/Makefile.in .include diff --git a/devel/autoconf/files/patch-01-bin_autoreconf.in b/devel/autoconf/files/patch-01-bin_autoreconf.in new file mode 100644 index 000000000000..db203ab42277 --- /dev/null +++ b/devel/autoconf/files/patch-01-bin_autoreconf.in @@ -0,0 +1,159 @@ +From e2a4935b45f273410e975ecf56ab26ad72855df0 Mon Sep 17 00:00:00 2001 +From: Bruno Haible +Date: Wed, 2 Jul 2025 02:43:41 +0200 +Subject: [PATCH 1/2] autoreconf: Invoke autopoint in more situations. + +Reported in . + +* bin/autoreconf.in (autoreconf_current_directory): Invoke autopoint also when +the package uses AM_GNU_GETTEXT (without AM_GNU_GETTEXT_VERSION), AM_PO_SUBDIRS, +AM_ICONV, AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS, AC_LIB_LINKFLAGS_FROM_LIBS, +or GUILE_FLAGS. +--- + bin/autoreconf.in | 80 ++++++++++++++++++++++++++++++++++++++++++++--- + 1 file changed, 76 insertions(+), 4 deletions(-) + +diff --git a/bin/autoreconf.in b/bin/autoreconf.in +index a5ffc6fa..207900df 100644 +--- bin/autoreconf.in ++++ bin/autoreconf.in +@@ -440,6 +440,8 @@ sub autoreconf_current_directory ($) + # ---------------------- # + + my $uses_autoconf; ++ my $uses_liblink; ++ my $uses_iconv; + my $uses_gettext; + if (-f $configure_ac) + { +@@ -449,8 +451,13 @@ sub autoreconf_current_directory ($) + s/#.*//; + s/dnl.*//; + $uses_autoconf = 1 if /AC_INIT/; ++ $uses_liblink = 1 if /AC_LIB_HAVE_LINKFLAGS/; ++ $uses_liblink = 1 if /AC_LIB_LINKFLAGS/; ++ $uses_liblink = 1 if /AC_LIB_LINKFLAGS_FROM_LIBS/; ++ $uses_iconv = 1 if /AM_ICONV/; + # See below for why we look for gettext here. +- $uses_gettext = 1 if /^AM_GNU_GETTEXT_(?:REQUIRE_)?VERSION/; ++ $uses_gettext = 1 if /AM_GNU_GETTEXT/; ++ $uses_gettext = 1 if /AM_PO_SUBDIRS/; + } + if (!$uses_autoconf) + { +@@ -485,7 +492,7 @@ sub autoreconf_current_directory ($) + # Actually, it is even more restrictive, as it greps for + # '^AM_GNU_GETTEXT_(REQUIRE_)?VERSION('. We did this above, while + # scanning configure.ac. +- if (!$uses_gettext) ++ if (!$uses_liblink && !$uses_iconv && !$uses_gettext) + { + verb "$configure_ac: not using Gettext"; + } +@@ -495,8 +502,21 @@ sub autoreconf_current_directory ($) + } + else + { +- xsystem_hint ("autopoint is needed because this package uses Gettext", +- $autopoint); ++ if ($uses_gettext) ++ { ++ xsystem_hint ("autopoint is needed because this package uses Gettext", ++ $autopoint); ++ } ++ elsif ($uses_iconv) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AM_ICONV", ++ $autopoint); ++ } ++ elsif ($uses_liblink) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", ++ $autopoint); ++ } + } + + +@@ -576,6 +596,8 @@ sub autoreconf_current_directory ($) + # from the final autoconf invocation. + my $aux_dir; + my @aux_files; ++ my $uses_liblink_via_traces; ++ my $uses_iconv_via_traces; + my $uses_gettext_via_traces; + my $uses_libtool; + my $uses_intltool; +@@ -603,6 +625,11 @@ sub autoreconf_current_directory ($) + 'AM_PROG_LIBTOOL', + 'LT_INIT', + 'LT_CONFIG_LTDL_DIR', ++ 'AC_LIB_LINKFLAGS', ++ 'AC_LIB_HAVE_LINKFLAGS', ++ 'AC_LIB_LINKFLAGS_FROM_LIBS', ++ 'GUILE_FLAGS', ++ 'AM_ICONV', + 'AM_GNU_GETTEXT', + 'AM_INIT_AUTOMAKE', + 'GTK_DOC_CHECK', +@@ -617,6 +644,15 @@ sub autoreconf_current_directory ($) + $aux_dir = $args[0] if $macro eq "AC_CONFIG_AUX_DIR"; + push @aux_files, $args[0] if $macro eq "AC_REQUIRE_AUX_FILE"; + $uses_autoconf = 1 if $macro eq "AC_INIT"; ++ # Here we need to explicitly test for GUILE_FLAGS, because in the ++ # typical situation where configure.ac invokes GUILE_FLAGS, ++ # guile.m4 defines GUILE_FLAGS and uses AC_LIB_LINKFLAGS_FROM_LIBS, ++ # the traces still for AC_LIB_LINKFLAGS_FROM_LIBS are empty. ++ $uses_liblink_via_traces = 1 if $macro eq "AC_LIB_LINKFLAGS" ++ || $macro eq "AC_LIB_HAVE_LINKFLAGS" ++ || $macro eq "AC_LIB_LINKFLAGS_FROM_LIBS" ++ || $macro eq "GUILE_FLAGS"; ++ $uses_iconv_via_traces = 1 if $macro eq "AM_ICONV"; + $uses_gettext_via_traces = 1 if $macro eq "AM_GNU_GETTEXT"; + $uses_libtool = 1 if $macro eq "AC_PROG_LIBTOOL" + || $macro eq "AM_PROG_LIBTOOL" +@@ -741,6 +777,42 @@ sub autoreconf_current_directory ($) + } + + ++ # --------------------------------------------- # ++ # Running autopoint, if not already run above. # ++ # --------------------------------------------- # ++ ++ if (!$uses_liblink_via_traces && !$uses_iconv_via_traces && !$uses_gettext_via_traces) ++ { ++ verb "$configure_ac: not needing autopoint"; ++ } ++ elsif (!$install) ++ { ++ verb "$configure_ac: not running autopoint: --install not given"; ++ } ++ elsif ($uses_liblink || $uses_iconv || $uses_gettext) ++ { ++ verb "$configure_ac: not running autopoint a second time"; ++ } ++ else ++ { ++ if ($uses_gettext_via_traces) ++ { ++ xsystem_hint ("autopoint is needed because this package uses Gettext", ++ $autopoint); ++ } ++ elsif ($uses_iconv_via_traces) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AM_ICONV", ++ $autopoint); ++ } ++ elsif ($uses_liblink_via_traces) ++ { ++ xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", ++ $autopoint); ++ } ++ } ++ ++ + # ------------------- # + # Rerunning aclocal. # + # ------------------- # +-- +2.43.0 + diff --git a/devel/autoconf/files/patch-02-bin_autoreconf.in b/devel/autoconf/files/patch-02-bin_autoreconf.in new file mode 100644 index 000000000000..e5da001e84d6 --- /dev/null +++ b/devel/autoconf/files/patch-02-bin_autoreconf.in @@ -0,0 +1,102 @@ +From d75171fdf8d03d2e070fcc3dbb5afb942dbd7828 Mon Sep 17 00:00:00 2001 +From: Bruno Haible +Date: Sat, 5 Jul 2025 17:20:11 +0200 +Subject: [PATCH] autoreconf: Adapt to the on-disk situation after autopoint + has run. + +Reported in . + +* bin/autoreconf.in (autoreconf_current_directory): After invoking autopoint, +rerun aclocal. When doing so, pass extra options "-I m4" if the configure.ac +does not specify a macro dir. +--- + bin/autoreconf.in | 24 ++++++++++++++++++++++++ + 1 file changed, 24 insertions(+) + +diff --git a/bin/autoreconf.in b/bin/autoreconf.in +index 3f6a74fe..eb0d96a9 100644 +--- bin/autoreconf.in ++++ bin/autoreconf.in +@@ -489,6 +489,7 @@ sub autoreconf_current_directory ($) + # Actually, it is even more restrictive, as it greps for + # '^AM_GNU_GETTEXT_(REQUIRE_)?VERSION('. We did this above, while + # scanning configure.ac. ++ my $invoked_autopoint; + if (!$uses_liblink && !$uses_iconv && !$uses_gettext) + { + verb "$configure_ac: not using Gettext"; +@@ -514,6 +515,7 @@ sub autoreconf_current_directory ($) + xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", + $autopoint); + } ++ $invoked_autopoint = 1; + } + + +@@ -593,6 +595,7 @@ sub autoreconf_current_directory ($) + # from the final autoconf invocation. + my $aux_dir; + my @aux_files; ++ my @macro_dirs; + my $uses_liblink_via_traces; + my $uses_iconv_via_traces; + my $uses_gettext_via_traces; +@@ -616,6 +619,8 @@ sub autoreconf_current_directory ($) + 'AC_CONFIG_AUX_DIR', + 'AC_CONFIG_HEADERS', + 'AC_CONFIG_SUBDIRS', ++ 'AC_CONFIG_MACRO_DIR_TRACE', ++ 'AC_CONFIG_MACRO_DIR', + 'AC_INIT', + 'AC_REQUIRE_AUX_FILE', + 'AC_PROG_LIBTOOL', +@@ -640,6 +645,8 @@ sub autoreconf_current_directory ($) + my ($macro, @args) = split (/::/); + $aux_dir = $args[0] if $macro eq "AC_CONFIG_AUX_DIR"; + push @aux_files, $args[0] if $macro eq "AC_REQUIRE_AUX_FILE"; ++ push @macro_dirs, $args[0] if $macro eq "AC_CONFIG_MACRO_DIR_TRACE" ++ || $macro eq "AC_CONFIG_MACRO_DIR"; + $uses_autoconf = 1 if $macro eq "AC_INIT"; + # Here we need to explicitly test for GUILE_FLAGS, because in the + # typical situation where configure.ac invokes GUILE_FLAGS, +@@ -679,6 +686,15 @@ sub autoreconf_current_directory ($) + } + } + ++ # When configure.ac does not specify a macro dir, autopoint has ++ # created a directory named 'm4' and copied its *.m4 files into it. ++ # In this case, we need to rerun 'aclocal', in order to pass it the ++ # options "-I m4" this time. ++ if ($invoked_autopoint && !@macro_dirs) ++ { ++ $rerun_aclocal = 1; ++ } ++ + # Gettext consistency checks. + # Some projects intentionally don't call AM_GNU_GETTEXT_(REQUIRE_)VERSION + # because they have all of the gettext infrastructure checked into version +@@ -807,6 +823,8 @@ sub autoreconf_current_directory ($) + xsystem_hint ("autopoint is needed because this package uses AC_LIB_LINKFLAGS", + $autopoint); + } ++ $invoked_autopoint = 1; ++ $rerun_aclocal = 1; + } + + +@@ -824,6 +842,12 @@ sub autoreconf_current_directory ($) + } + else + { ++ # When configure.ac does not specify a macro dir, autopoint has ++ # created a directory named 'm4' and copied its *.m4 files into it. ++ if ($invoked_autopoint && !@macro_dirs) ++ { ++ $aclocal_flags .= " -I m4"; ++ } + xsystem ("$aclocal $aclocal_flags"); + } + } +-- +2.43.0 + diff --git a/devel/gettext-po-mode/Makefile b/devel/gettext-po-mode/Makefile index 84098cf00f4e..54f8e3d3d6cd 100644 --- a/devel/gettext-po-mode/Makefile +++ b/devel/gettext-po-mode/Makefile @@ -1,31 +1,31 @@ PORTNAME= gettext-po-mode -PORTREVISION= 10 +PORTREVISION= 0 MAINTAINER= mandree@FreeBSD.org COMMENT= GNU gettext po-mode for emacs 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= cpe emacs:build tar:xz CPE_VENDOR= gnu CPE_PRODUCT= gettext GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-emacs --without-git ac_cv_lib_rt_sched_yield=no INSTALL_TARGET= install BUILD_WRKSRC= ${WRKSRC}/emacs INSTALL_WRKSRC= ${BUILD_WRKSRC} WRKSRC_SUBDIR= gettext-tools PLIST_SUB= PORTVERSION=${PORTVERSION} VERSION=${PORTVERSION} .include diff --git a/devel/gettext-runtime/pkg-plist b/devel/gettext-runtime/pkg-plist index 69f5c0919ec5..140da640650c 100644 --- a/devel/gettext-runtime/pkg-plist +++ b/devel/gettext-runtime/pkg-plist @@ -1,98 +1,104 @@ bin/envsubst bin/gettext bin/gettext.sh bin/ngettext +bin/printf_gettext +bin/printf_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.2 +lib/libintl.so.8.4.5 %%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%%/printf_gettext.1.html +%%PORTDOCS%%%%DOCSDIR%%/printf_ngettext.1.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/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/man1/printf_gettext.1.gz +share/man/man1/printf_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 ae5f960afa28..f49004bd43e8 100644 --- a/devel/gettext-tools/Makefile +++ b/devel/gettext-tools/Makefile @@ -1,59 +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= 1 +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 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 3a3fadede9b7..bfd00f4d0cc3 100644 --- a/devel/gettext-tools/pkg-plist +++ b/devel/gettext-tools/pkg-plist @@ -1,1929 +1,2386 @@ 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/libgettextlib-%%PORTVERSION%%.so lib/libgettextlib.a lib/libgettextlib.so lib/libgettextpo.a lib/libgettextpo.so lib/libgettextpo.so.0 -lib/libgettextpo.so.0.5.12 +lib/libgettextpo.so.0.5.15 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/csharp.m4 %%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/dcomp.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/dcomp.sh.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/gocomp.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/gocomp.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/build-aux/modula2comp.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/hello.cc +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome-gnorba-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome-orbit-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gtk--.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gtk.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/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/README +%%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.cc +%%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.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++-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-gnome2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/hello.c +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome-orbit-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/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/README %%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/hello2.c +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.desktop.in.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.gresource.xml +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.gschema.xml +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.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-http/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/hello-server.c +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/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-d/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/hello.d.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/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-go-http/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/hello1ml.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/hello1ml.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/hello1sl.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/hello2sl.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/go.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/hello3ml.go.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/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-modula2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/hello.mod.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/hello.m +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome.m4 +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/Makevars +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/POTFILES.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/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-ruby/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/hello.rb +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/Cargo.toml.in +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/INSTALL +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/autoclean.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/autogen.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/configure.ac +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/m4/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/LINGUAS +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/Makefile.am +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/af.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ast.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/bg.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ca.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/cs.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/da.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/de.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/el.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/eo.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/es.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/fi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/fr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ga.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/gl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/hr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/hu.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/id.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/it.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ja.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ka.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ky.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/lv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ms.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/mt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nb.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nn.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pt.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pt_BR.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ro.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ru.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sl.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sq.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sv.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ta.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/tr.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/uk.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/vi.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_CN.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_HK.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_TW.po +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/src/main.rs.in %%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/hello-1.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-2.sh +%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-3.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_31.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%%/m4/build-to-host.m4 +%%DATADIR%%/m4/gettext.m4 +%%DATADIR%%/m4/host-cpu-c-abi.m4 +%%DATADIR%%/m4/iconv.m4 +%%DATADIR%%/m4/intlmacosx.m4 +%%DATADIR%%/m4/lib-ld.m4 +%%DATADIR%%/m4/lib-link.m4 +%%DATADIR%%/m4/lib-prefix.m4 +%%DATADIR%%/m4/nls.m4 +%%DATADIR%%/m4/po.m4 +%%DATADIR%%/m4/progtest.m4 %%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.sed %%DATADIR%%/po/quot.sed %%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 cf0fbd16c87e..39d4be568310 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.23.1 +DISTVERSION= 0.26 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 aa328f0b1afb..1f4fbd14d02a 100644 --- a/devel/gettext/distinfo +++ b/devel/gettext/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1735747768 -SHA256 (gettext-0.23.1.tar.xz) = c1f97a72a7385b7e71dd07b5fea6cdaf12c9b88b564976b23bd8c11857af2970 -SIZE (gettext-0.23.1.tar.xz) = 11038556 +TIMESTAMP = 1764337471 +SHA256 (gettext-0.26.tar.xz) = d1fb86e260cfe7da6031f94d2e44c0da55903dbae0a2fa0fae78c91ae1b56f00 +SIZE (gettext-0.26.tar.xz) = 10061740 diff --git a/devel/libhtp/Makefile b/devel/libhtp/Makefile index 1b70c9ffca2d..5709b7a83f0d 100644 --- a/devel/libhtp/Makefile +++ b/devel/libhtp/Makefile @@ -1,26 +1,26 @@ PORTNAME= libhtp DISTVERSION= 0.5.52 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org COMMENT= Security-aware parser for the HTTP protocol WWW= https://github.com/ironbee/libhtp LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= autoreconf cpe iconv:translit libtool localbase:ldflags pathfix \ - pkgconfig +USES= autoreconf cpe gettext-tools iconv:translit libtool \ + localbase:ldflags pathfix pkgconfig CPE_VENDOR= oisf USE_GITHUB= yes GH_ACCOUNT= OISF USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} MAKE_ARGS= LIBS="-lz ${ICONV_LIB}" INSTALL_TARGET= install-strip TEST_TARGET= check .include diff --git a/devel/libtextstyle/pkg-plist b/devel/libtextstyle/pkg-plist index f39018b4e695..69dba9d615d1 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.3 +lib/libtextstyle.so.0.2.6 %%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/editors/fxite/Makefile b/editors/fxite/Makefile index 270e4900a616..61a98bd17d16 100644 --- a/editors/fxite/Makefile +++ b/editors/fxite/Makefile @@ -1,35 +1,36 @@ PORTNAME= fxite DISTVERSIONPREFIX= ${PORTNAME:tu}- DISTVERSION= 0_92 PORTREVISION= 5 CATEGORIES= editors MAINTAINER= danfe@FreeBSD.org COMMENT= Advanced customizable graphical text editor WWW= https://github.com/yetanothergeek/fxite LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libFOX-1.6.so:x11-toolkits/fox16 -USES= autoreconf desktop-file-utils gmake lua:52 pkgconfig +USES= autoreconf desktop-file-utils gettext-tools gmake lua:52 \ + pkgconfig USE_GITHUB= yes GH_ACCOUNT= yetanothergeek GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-nls --with-system-lua \ --with-lua-pkg=lua-${LUA_VER} CONFIGURE_ENV= FOX_CFLAGS="$$(fox-config --cflags)" \ FOX_LIBS="$$(fox-config --libs)" \ RESWRAP="${LOCALBASE}/bin/reswrap" PLIST_FILES= bin/fxite \ share/applications/fxite.desktop \ share/pixmaps/fxite.xpm post-patch: @${ECHO_CMD} 'AM_CPPFLAGS += $$(X11_CFLAGS)' \ >> ${WRKSRC}/jef/Makefile.am .include diff --git a/emulators/mednafen/Makefile b/emulators/mednafen/Makefile index e5edbb3573ab..170058dd6db8 100644 --- a/emulators/mednafen/Makefile +++ b/emulators/mednafen/Makefile @@ -1,116 +1,111 @@ PORTNAME= mednafen DISTVERSION= 1.32.1 PORTEPOCH= 1 PORTREVISION= 2 CATEGORIES= emulators games MASTER_SITES= https://mednafen.github.io/releases/files/ MAINTAINER= acm@FreeBSD.org COMMENT= Portable multi-system emulator WWW= https://mednafen.github.io LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libFLAC.so:audio/flac \ liblzo2.so:archivers/lzo2 \ libtrio.so:devel/trio \ libvorbisfile.so:audio/libvorbis \ libzstd.so:archivers/zstd -USES= autoreconf compiler:c++11-lang gl iconv localbase pkgconfig sdl \ - tar:xz +USES= autoreconf compiler:c++11-lang gettext-tools gl iconv \ + localbase pkgconfig sdl tar:xz USE_GL= egl USE_SDL= sdl2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-external-libzstd \ --with-external-lzo \ --with-external-tremor \ --with-external-trio SUB_FILES= pkg-message WRKSRC= ${WRKDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS NLS OPTIONS_DEFAULT= ALSA APPLE2 GP GPA JACK LYNX MD NES NGP PCE PCFX PSX \ SMS SNES SS VB WSWAN OPTIONS_GROUP= AUDIO OPTIONS_GROUP_AUDIO= ALSA JACK OPTIONS_MULTI= EMU OPTIONS_MULTI_EMU= APPLE2 GP GPA LYNX MD NES NGP PCE PCFX PSX SMS SNES SS \ VB WSWAN OPTIONS_SUB= yes APPLE2_DESC= Apple II GPA_DESC= GameBoy Advance GP_DESC= GameBoy LYNX_DESC= Atari Lynx MD_DESC= Sega Genesis/Megadrive NES_DESC= Nintendo Entertainment System NGP_DESC= Neo Geo Pocket PCE_DESC= PC Engine/TurboGrafx 16 PCFX_DESC= PC-FX PSX_DESC= Sony PlayStation SMS_DESC= Sega Game Gear + Sega Master System SNES_DESC= Super Nintendo Entertainment System/Super Famicom SS_DESC= Sega Saturn VB_DESC= Virtual Boy WSWAN_DESC= WonderSwan ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CONFIGURE_ENABLE= alsa ALSA_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_drivers_main.cpp APPLE2_CONFIGURE_ENABLE= apple2 GPA_CONFIGURE_ENABLE= gba GP_CONFIGURE_ENABLE= gb JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_CONFIGURE_ENABLE= jack LYNX_CONFIGURE_ENABLE= lynx MD_CONFIGURE_ENABLE= md NES_CONFIGURE_ENABLE= nes NGP_CONFIGURE_ENABLE= ngp -NLS_USES= gettext +NLS_USES= gettext-runtime NLS_CONFIGURE_ENABLE= nls PCE_CONFIGURE_ENABLE= pce pce-fast PCFX_CONFIGURE_ENABLE= pcfx PSX_CONFIGURE_ENABLE= psx SMS_CONFIGURE_ENABLE= sms SNES_CONFIGURE_ENABLE= snes snes-faust SS_CONFIGURE_ENABLE= ss VB_CONFIGURE_ENABLE= vb WSWAN_CONFIGURE_ENABLE= wswan -pre-configure: - ${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/m4/lib-link.m4 \ - ${WRKSRC}/m4/lib-prefix.m4 - post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog \ ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README \ ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} Documentation ${STAGEDIR}${DOCSDIR}) .include diff --git a/emulators/mednafen/files/patch-configure.ac b/emulators/mednafen/files/patch-configure.ac index 495dbe30a62e..2860db879da7 100644 --- a/emulators/mednafen/files/patch-configure.ac +++ b/emulators/mednafen/files/patch-configure.ac @@ -1,26 +1,34 @@ ---- configure.ac.orig 2024-08-19 17:50:17 UTC +--- configure.ac.orig 2024-04-05 02:27:32 UTC +++ configure.ac -@@ -238,7 +238,6 @@ SS_EXTRA_FLAGS="" +@@ -88,6 +88,7 @@ fi + AC_MSG_ERROR([*** iconv not found!]) + fi + AM_GNU_GETTEXT ++AM_GNU_GETTEXT_VERSION([0.18.1]) + + AC_SUBST(LIBICONV) + AC_SUBST(LIBINTL) +@@ -238,7 +239,6 @@ SS_EXTRA_FLAGS="" # Begin ss flags # SS_EXTRA_FLAGS="" -AX_APPEND_COMPILE_FLAGS([-mtune=haswell], SS_EXTRA_FLAGS) AC_SUBST(SS_EXTRA_FLAGS) # # End ss flags -@@ -626,12 +625,12 @@ if test x$with_external_tremor = xyes; then +@@ -626,12 +626,12 @@ if test x$with_external_tremor = xyes; then [], [with_external_tremor=no]) if test x$with_external_tremor = xyes; then - AC_CHECK_LIB([vorbisidec], [ov_read], [], AC_MSG_ERROR([*** libvorbisidec not found!])) - AC_CHECK_HEADER([tremor/ivorbisfile.h], [], AC_MSG_ERROR([*** libvorbisidec not found!])) + AC_CHECK_LIB([vorbisfile], [ov_read], [], AC_MSG_ERROR([*** libvorbisfile not found!])) + AC_CHECK_HEADER([vorbis/vorbisfile.h], [], AC_MSG_ERROR([*** libvorbisfile not found!])) AC_DEFINE([HAVE_EXTERNAL_TREMOR], [1], [Define if we are compiling and linking with external tremor.]) AM_CONDITIONAL(HAVE_EXTERNAL_TREMOR, true) - AC_SUBST([TREMOR_LIBS], ["-lvorbisidec"]) + AC_SUBST([TREMOR_LIBS], ["-lvorbisfile"]) fi # diff --git a/filesystems/rar2fs/Makefile b/filesystems/rar2fs/Makefile index ae621adc1ebc..60c466a2dda8 100644 --- a/filesystems/rar2fs/Makefile +++ b/filesystems/rar2fs/Makefile @@ -1,37 +1,37 @@ PORTNAME= rar2fs DISTVERSIONPREFIX= v DISTVERSION= 1.29.7 PORTREVISION= 6 CATEGORIES= filesystems PKGNAMEPREFIX= fusefs- MAINTAINER= n_carlsson@outlook.com COMMENT= Mount RAR archives as file system WWW= https://hasse69.github.io/rar2fs/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${NONEXISTENT}:${LIBUNRAR_PORT}:patch LIB_DEPENDS= libunrar.so:${LIBUNRAR_PORT} -USES= autoreconf compiler:c11 fuse gmake +USES= autoreconf compiler:c11 fuse gettext-tools gmake USE_GITHUB= yes GH_ACCOUNT= hasse69 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static-unrar \ --with-fuse=${LOCALBASE}/include/fuse \ --with-fuse-lib=${LOCALBASE}/lib \ --with-unrar=`${MAKE} -C ${PORTSDIR}/${LIBUNRAR_PORT} -VWRKSRC` \ --with-unrar-lib=${LOCALBASE}/lib CONFIGURE_ENV= LIBUNRAR_PKG=${LIBUNRAR_PKG} PLIST_FILES= bin/${PORTNAME} \ bin/mkr2i \ share/man/man1/rar2fs.1.gz LIBUNRAR_PORT= archivers/libunrar LIBUNRAR_PKG= ${LIBUNRAR_PORT:S|archivers/||} .include diff --git a/ftp/axel/Makefile b/ftp/axel/Makefile index 3561557a5f55..aa85398ab568 100644 --- a/ftp/axel/Makefile +++ b/ftp/axel/Makefile @@ -1,29 +1,32 @@ PORTNAME= axel DISTVERSIONPREFIX= v DISTVERSION= 2.17.14 +PORTREVISION= 1 CATEGORIES= ftp MAINTAINER= yuri@FreeBSD.org COMMENT= Lightweight CLI download accelerator WWW= https://github.com/axel-download-accelerator/axel LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= autoconf-archive>=0:devel/autoconf-archive \ txt2man:textproc/txt2man USES= autoreconf gettext-tools gmake pkgconfig ssl USE_GITHUB= yes GH_ACCOUNT= axel-download-accelerator GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share - CONFIGURE_ARGS= --with-ssl=openssl -PLIST_FILES= bin/axel \ - share/man/man1/axel.1.gz +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT=NLS +OPTIONS_SUB= yes + +NLS_CONFIGURE_ENABLE= nls +NLS_USES= gettext-runtime .include diff --git a/ftp/axel/files/patch-Makefile.am b/ftp/axel/files/patch-Makefile.am new file mode 100644 index 000000000000..85a06a50a1a4 --- /dev/null +++ b/ftp/axel/files/patch-Makefile.am @@ -0,0 +1,12 @@ +--- Makefile.am.orig 2024-04-07 22:59:28 UTC ++++ Makefile.am +@@ -1,8 +1,5 @@ AUTOMAKE_OPTIONS = foreign dist-bzip2 dist-xz + AUTOMAKE_OPTIONS = foreign dist-bzip2 dist-xz +- +-# XXX Fix disagreement between aclocal and make +-# (aclocal doesn't update based on mtime) +-ACLOCAL = touch $@; @ACLOCAL@ ++ACLOCAL_AMFLAGS = -I m4 + + SUBDIRS = po + diff --git a/ftp/axel/files/patch-configure.ac b/ftp/axel/files/patch-configure.ac new file mode 100644 index 000000000000..8f9553e2e413 --- /dev/null +++ b/ftp/axel/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2024-04-07 22:59:28 UTC ++++ configure.ac +@@ -237,7 +237,7 @@ AM_GNU_GETTEXT([external]) + + # Add Gettext + AM_GNU_GETTEXT([external]) +-AM_GNU_GETTEXT_VERSION([0.11.1]) ++AM_GNU_GETTEXT_REQUIRE_VERSION([0.23.1]) + + # POSIX threads + AX_PTHREAD() diff --git a/ftp/axel/pkg-plist b/ftp/axel/pkg-plist new file mode 100644 index 000000000000..d295475ed2ee --- /dev/null +++ b/ftp/axel/pkg-plist @@ -0,0 +1,13 @@ +bin/axel +%%NLS%%share/locale/de/LC_MESSAGES/axel.mo +%%NLS%%share/locale/es/LC_MESSAGES/axel.mo +%%NLS%%share/locale/id_ID/LC_MESSAGES/axel.mo +%%NLS%%share/locale/it/LC_MESSAGES/axel.mo +%%NLS%%share/locale/ja/LC_MESSAGES/axel.mo +%%NLS%%share/locale/ka/LC_MESSAGES/axel.mo +%%NLS%%share/locale/nl/LC_MESSAGES/axel.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/axel.mo +%%NLS%%share/locale/ru/LC_MESSAGES/axel.mo +%%NLS%%share/locale/tr/LC_MESSAGES/axel.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/axel.mo +share/man/man1/axel.1.gz diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile index 3dc5f6fdeea4..5e754d97c158 100644 --- a/ftp/wzdftpd/Makefile +++ b/ftp/wzdftpd/Makefile @@ -1,83 +1,82 @@ PORTNAME= wzdftpd PORTVERSION= 0.8.3 PORTREVISION= 12 CATEGORIES= ftp MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-sources/${PORTNAME}-${PORTVERSION:R} MAINTAINER= fuz@FreeBSD.org COMMENT= Modular FTP server configurable online using SITE commands WWW= https://sourceforge.net/projects/wzdftpd/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= autoreconf:2.69 cpe gettext-tools libtool localbase pkgconfig +USES= autoreconf cpe gettext-tools libtool localbase pkgconfig GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share CONFIGURE_ARGS= --sysconfdir=${ETCDIR} --datadir=${PREFIX}/lib \ --disable-bonjour --disable-static INSTALL_TARGET= install-strip USE_LDCONFIG= yes USE_RC_SUBR= wzdftpd OPTIONS_DEFINE= AVAHI DOCS ICONV IPV6 MYSQL PAM PERL PGSQL SQLITE TCL OPTIONS_RADIO= TLS OPTIONS_RADIO_TLS= GNUTLS OPENSSL OPTIONS_DEFAULT= AVAHI GNUTLS ICONV PAM PERL SQLITE OPTIONS_SUB= yes ICONV_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG} ICONV_CONFIGURE_OFF= --disable-utf8 ICONV_USES= iconv TCL_CONFIGURE_ON= --with-tcl=${TCL_LIBDIR} TCL_CONFIGURE_OFF= --without-tcl TCL_USES= tcl OPENSSL_CONFIGURE_ENABLE= openssl OPENSSL_USES= ssl GNUTLS_CONFIGURE_ENABLE= gnutls GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls IPV6_CONFIGURE_ENABLE= ipv6 PERL_CONFIGURE_ENABLE= perl PERL_USES= perl5 MYSQL_CONFIGURE_ENABLE= mysql MYSQL_USES= mysql MYSQL_VARS= IGNORE_WITH_MYSQL="80 81" PAM_CONFIGURE_WITH= pam PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE} PGSQL_CONFIGURE_OFF= --disable-pgsql PGSQL_USES= pgsql SQLITE_CONFIGURE_ENABLE= sqlite3 SQLITE_USES= sqlite:3 AVAHI_CONFIGURE_ON= --with-zeroconf --enable-avahi AVAHI_LIB_DEPENDS= libdbus-1.so:devel/dbus \ libavahi-core.so:net/avahi-app post-patch: @${TOUCH} ${WRKSRC}/config.rpath # wzd.m4 gets installed into the wrong spot due to our --datadir hack post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/aclocal ${MV} ${STAGEDIR}${PREFIX}/lib/aclocal/wzd.m4 ${STAGEDIR}${PREFIX}/share/aclocal ${RMDIR} ${STAGEDIR}${PREFIX}/lib/aclocal ${INSTALL_DATA} ${WRKSRC}/*.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in AUTHORS ChangeLog NEWS Permissions.ReadMeFirst README \ TLS.ReadMeFirst UPGRADING wzd_tls.cnf ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/graphics/gd/Makefile b/graphics/gd/Makefile index fb199ac82c64..dea173561adf 100644 --- a/graphics/gd/Makefile +++ b/graphics/gd/Makefile @@ -1,133 +1,134 @@ PORTNAME= libgd PORTVERSION= 2.3.3 PORTREVISION= 13 PORTEPOCH= 1 CATEGORIES+= graphics MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/gd-${PORTVERSION}/ MAINTAINER?= dinoex@FreeBSD.org COMMENT?= Graphics library for fast creation of images WWW= https://libgd.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS_INSTALL= libgd ??-libgd -USES= cpe tar:xz pkgconfig pathfix libtool:keepla autoreconf shebangfix +USES= autoreconf cpe gettext-tools libtool:keepla pathfix pkgconfig \ + shebangfix tar:xz SHEBANG_FILES= ${WRKSRC}/src/bdftogd GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-gd-formats CFLAGS+= -ffp-contract=off # do not contract to FMA or thereabouts, PR 278105 TMPDIR?= /tmp MAKE_ENV= TMPDIR=${TMPDIR} SUB_FILES= gdlib-config USE_LDCONFIG= yes TEST_TARGET= check OPTIONS_DEFINE= PNG JPEG WEBP TIFF XPM HEIF AVIF LIQ FREETYPE FONTCONFIG RAQM ICONV THREADS OPTIONS_DEFAULT=PNG JPEG WEBP TIFF FREETYPE FONTCONFIG ICONV NO_OPTIONS_SORT=yes OPTIONS_SUB= yes PNG_LIB_DEPENDS= libpng.so:graphics/png PNG_CONFIGURE_OFF= --without-png PNG_CPPFLAGS= -I${LOCALBASE}/include JPEG_USES= jpeg JPEG_CONFIGURE_OFF= --without-jpeg JPEG_CPPFLAGS= -I${LOCALBASE}/include WEBP_LIB_DEPENDS= libwebp.so:graphics/webp WEBP_CONFIGURE_OFF= --without-webp WEBP_CPPFLAGS= -I${LOCALBASE}/include TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff TIFF_CONFIGURE_OFF= --without-tiff TIFF_CPPFLAGS= -I${LOCALBASE}/include HEIF_LIB_DEPENDS= libheif.so:graphics/libheif HEIF_CONFIGURE_OFF= --without-heif HEIF_CPPFLAGS= -I${LOCALBASE}/include AVIF_LIB_DEPENDS= libavif.so:graphics/libavif AVIF_CONFIGURE_OFF= --without-avif AVIF_CPPFLAGS= -I${LOCALBASE}/include LIQ_DESC= libimagequant color conversion support LIQ_LIB_DEPENDS= libimagequant.so:graphics/libimagequant LIQ_CONFIGURE_OFF= --with-liq=no LIQ_CPPFLAGS= -I${LOCALBASE}/include FREETYPE_LIB_DEPENDS= libfreetype.so:print/freetype2 FREETYPE_CONFIGURE_OFF= --without-freetype FREETYPE_CPPFLAGS= -I${LOCALBASE}/include FONTCONFIG_LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig FONTCONFIG_CONFIGURE_OFF= --with-fontconfig=no FONTCONFIG_CPPFLAGS= -I${LOCALBASE}/include RAQM_DESC= Raqm text layout support RAQM_LIB_DEPENDS= libraqm.so:print/libraqm RAQM_CONFIGURE_OFF= --with-raqm=no RAQM_CPPFLAGS= -I${LOCALBASE}/include XPM_USES= xorg XPM_USE= xorg=xpm,x11 XPM_CONFIGURE_ON= --with-x XPM_CONFIGURE_OFF= --with-xpm=no ICONV_USES= iconv ICONV_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG} THREADS_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-threads .include .if ${PORT_OPTIONS:MFREETYPE} # bin/annotate CONFLICTS_INSTALL+= mummer .endif # force gdlib-config --ldflags LDFLAGS+= -L${LOCALBASE}/lib # The GD_FONTS environment variable can be set to specify the gzipped # tar-ball containing the fonts in bdf format and the bdf file names. # The tarball is the first argument, the tiny, small, medium-bold, # large, and giant fonts follow. # # For example: # GD_FONTS="/usr/ports/distfiles/x-koi8u.tgz koi6x10.bdf koi8x13.bdf \ # koi9x15.bdf koi12x24.bdf koi10x20.bdf" # .if defined(GD_FONTS) USES+= perl5 USE_PERL5= build WRKFONTS= ${WRKSRC}/src .endif pre-extract:: @${ECHO_MSG} "" @${ECHO_MSG} "GD_FONTS can be set to specify an alternative list of .bdf files" @${ECHO_MSG} "" post-extract: .if defined(GD_FONTS) cd ${WRKFONTS} && ${SH} ${FILESDIR}/makefonts extract ${GD_FONTS} .endif pre-configure: .if defined(GD_FONTS) cd ${WRKFONTS} && ${SH} ${FILESDIR}/makefonts configure ${GD_FONTS} .endif # bump shlib version ${REINPLACE_CMD} \ -e 's|^GDLIB_LT_CURRENT=3|GDLIB_LT_CURRENT=6|' \ ${WRKSRC}/configure ${WRKSRC}/config/getlib.sh pre-configure-ICONV-off: ${REINPLACE_CMD} \ -e 's|iconv|noiconv|' \ ${WRKSRC}/configure .if defined(GD_FONTS) pre-build: cd ${WRKFONTS} && ${SH} ${FILESDIR}/makefonts build ${GD_FONTS} .endif post-install: ${INSTALL_DATA} ${WRKSRC}/src/gdhelpers.h \ ${STAGEDIR}${PREFIX}/include/ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgd.so.6* ${INSTALL_SCRIPT} ${WRKDIR}/gdlib-config \ ${STAGEDIR}${PREFIX}/bin/ .include diff --git a/mail/sympa/files/patch-configure.ac b/mail/sympa/files/patch-configure.ac new file mode 100644 index 000000000000..3af3b3d1cf26 --- /dev/null +++ b/mail/sympa/files/patch-configure.ac @@ -0,0 +1,10 @@ +--- configure.ac.orig 2025-02-03 22:52:23 UTC ++++ configure.ac +@@ -28,7 +28,6 @@ AM_PO_SUBDIRS + AM_INIT_AUTOMAKE([foreign -Wall -Werror 1.9 tar-pax]) + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AM_PO_SUBDIRS +-GETTEXT_MACRO_VERSION=0.19 + + AC_PREFIX_DEFAULT(/home/sympa) + diff --git a/misc/lifelines/Makefile b/misc/lifelines/Makefile index 5e31de237797..dda1ba095ed9 100644 --- a/misc/lifelines/Makefile +++ b/misc/lifelines/Makefile @@ -1,51 +1,51 @@ PORTNAME= lifelines DISTVERSION= 3.1.1 PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= https://github.com/lifelines/lifelines/releases/download/${DISTVERSION}/ MAINTAINER= matt@gsicomp.on.ca COMMENT= Advanced genealogical system WWW= https://lifelines.github.io/lifelines/ LICENSE= MIT -USES= autoreconf bison gmake iconv ncurses +USES= autoreconf bison gettext-tools gmake iconv ncurses GNU_CONFIGURE= yes CONFIGURE_ENV= YACC="bison -y" MAKE_JOBS_UNSAFE= yes CONFLICTS_INSTALL= atheme-services # bin/dbverify # Lifelines always installs documenatation. This is contrary to the FreeBSD # norm which uses --with-docs (aka DOCS) to do so. We patch the Makefiles # below in pre-patch. # Lifelines uses --with-docs to indicate that the full XML docbook toolcahin # needs to be installed to build the docs. We use BUILDDOCS for that purpose. OPTIONS_DEFINE= BUILDDOCS DOCS NLS OPTIONS_SUB= yes BUILDDOCS_DESC= Build documentation (requires docbook toolchain) DOCS_DESC= Install documentation NLS_DESC= Build with NLS support BUILDDOCS_BUILD_DEPENDS= dblatex:textproc/dblatex \ xmlto:textproc/xmlto BUILDDOCS_CONFIGURE_WITH= docs -NLS_USES= gettext +NLS_USES= gettext-runtime NLS_CONFIGURE_ENABLE= nls pre-patch: @${REINPLACE_CMD} -e 's,ncursesw/curses.h,curses.h,' \ ${WRKSRC}/src/hdrs/mycurses.h pre-patch-DOCS-off: @${REINPLACE_CMD} -e 's,^doc_DATA.*,doc_DATA = .linesrc lines.cfg,' \ ${WRKSRC}/Makefile.am @${REINPLACE_CMD} -e 's,^doc_DATA.*,doc_DATA=,' \ ${WRKSRC}/docs/manual/Makefile.am .include diff --git a/misc/lifelines/files/patch-configure.ac b/misc/lifelines/files/patch-configure.ac new file mode 100644 index 000000000000..60e9b9ead875 --- /dev/null +++ b/misc/lifelines/files/patch-configure.ac @@ -0,0 +1,18 @@ +--- configure.ac.orig 2016-03-17 00:15:34 UTC ++++ configure.ac +@@ -11,6 +11,7 @@ AC_CONFIG_AUX_DIR(build/autotools) + AC_PREREQ(2.50) + AC_REVISION([for lifelines, built with autoconf] AC_ACVERSION) + AC_CONFIG_AUX_DIR(build/autotools) ++AC_CONFIG_MACRO_DIRS([build/autotools]) + AC_CANONICAL_HOST + + dnl Use 'foreign' to avoid requiring GNU files in top-level. +@@ -48,6 +49,7 @@ AM_GNU_GETTEXT(,need-ngettext) + dnl These languages should be a copy of po/LINGUAS + ALL_LINGUAS="da de el eo es fr it nl pl rw sv" + AM_GNU_GETTEXT(,need-ngettext) ++AM_GNU_GETTEXT_VERSION([0.11.5]) + + dnl codeset conversion library + AM_ICONV diff --git a/misc/lifelines/files/patch-intl_Makefile.in b/misc/lifelines/files/patch-intl_Makefile.in deleted file mode 100644 index 6790415d8117..000000000000 --- a/misc/lifelines/files/patch-intl_Makefile.in +++ /dev/null @@ -1,38 +0,0 @@ ---- intl/Makefile.in.orig 2015-12-22 22:00:40 UTC -+++ intl/Makefile.in -@@ -152,35 +152,6 @@ install-exec: all - else \ - : ; \ - fi -- if test '@USE_INCLUDED_LIBINTL@' = yes; then \ -- test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ -- temp=$(DESTDIR)$(libdir)/t-charset.alias; \ -- dest=$(DESTDIR)$(libdir)/charset.alias; \ -- if test -f $(DESTDIR)$(libdir)/charset.alias; then \ -- orig=$(DESTDIR)$(libdir)/charset.alias; \ -- sed -f ref-add.sed $$orig > $$temp; \ -- $(INSTALL_DATA) $$temp $$dest; \ -- rm -f $$temp; \ -- else \ -- if test @GLIBC21@ = no; then \ -- orig=charset.alias; \ -- sed -f ref-add.sed $$orig > $$temp; \ -- $(INSTALL_DATA) $$temp $$dest; \ -- rm -f $$temp; \ -- fi; \ -- fi; \ -- $(mkinstalldirs) $(DESTDIR)$(localedir); \ -- test -f $(DESTDIR)$(localedir)/locale.alias \ -- && orig=$(DESTDIR)$(localedir)/locale.alias \ -- || orig=$(srcdir)/locale.alias; \ -- temp=$(DESTDIR)$(localedir)/t-locale.alias; \ -- dest=$(DESTDIR)$(localedir)/locale.alias; \ -- sed -f ref-add.sed $$orig > $$temp; \ -- $(INSTALL_DATA) $$temp $$dest; \ -- rm -f $$temp; \ -- else \ -- : ; \ -- fi - install-data: all - if test "$(PACKAGE)" = "gettext"; then \ - $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ diff --git a/multimedia/dvdauthor/Makefile b/multimedia/dvdauthor/Makefile index ed6685ba473c..47cdb6b84834 100644 --- a/multimedia/dvdauthor/Makefile +++ b/multimedia/dvdauthor/Makefile @@ -1,71 +1,63 @@ PORTNAME= dvdauthor PORTVERSION= 0.7.2.20211105 PORTREVISION= 6 CATEGORIES= multimedia MAINTAINER= ports@FreeBSD.org COMMENT= Makes a DVD file structure from one or more MPEG2 streams WWW= https://dvdauthor.sourceforge.net/ https://github.com/ldo/dvdauthor LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libdvdread.so:multimedia/libdvdread \ libfribidi.so:converters/fribidi \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png \ libexpat.so:textproc/expat2 \ libfontconfig.so:x11-fonts/fontconfig USE_GITHUB= yes GH_ACCOUNT= ldo GH_TAGNAME= fe8fe35 -USES= autoreconf:build bison:alias gettext-tools \ - gmake gnome iconv localbase pkgconfig +USES= autoreconf bison:alias gettext-tools gmake gnome iconv libtool \ + localbase pkgconfig USE_GNOME= libxml2 GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share SUB_FILES= README.FreeBSD PORTDOCS= * OPTIONS_DEFINE= DOCS MANPAGES OPTIONS_RADIO= IMAGEMAGICK VIDEO-FORMAT OPTIONS_RADIO_IMAGEMAGICK= GRAPHICSMAGICK IMAGEMAGICK6 OPTIONS_RADIO_VIDEO-FORMAT= NTSC PAL OPTIONS_SUB= yes GRAPHICSMAGICK_DESC= GraphicsMagick image processing support IMAGEMAGICK6_DESC= ImageMagick 6.x image processing support NTSC_DESC= Default video format NTSC PAL_DESC= Default video format PAL VIDEO-FORMAT_DESC= Use default video format GRAPHICSMAGICK_CONFIGURE_WITH= graphicsmagick GRAPHICSMAGICK_LIB_DEPENDS= libGraphicsMagick.so:graphics/GraphicsMagick IMAGEMAGICK6_CONFIGURE_WITH= imagemagick IMAGEMAGICK6_USES= magick:6 MANPAGES_BUILD_DEPENDS= docbook2man:textproc/docbook-utils \ docbook-sgml>0:textproc/docbook-sgml NTSC_CONFIGURE_ON= --enable-default-video-format=NTSC PAL_CONFIGURE_ON= --enable-default-video-format=PAL -pre-configure-MANPAGES-off: - @(${MV} ${WRKSRC}/doc/Makefile.am ${WRKSRC}/doc/Makefile.am.bak && \ - ${GREP} '^dist_pkgdata_DATA' \ - ${WRKSRC}/doc/Makefile.am.bak > ${WRKSRC}/doc/Makefile.am) - -pre-configure: - @(cd ${WRKSRC} && ${MKDIR} autotools/ && \ - ${CP} ${LOCALBASE}/share/gettext/config.rpath autotools/ && \ - ${LOCALBASE}/bin/autoreconf -i) +post-patch-MANPAGES-off: + @${REINPLACE_CMD} /^man._MANS/d ${WRKSRC}/doc/Makefile.am post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} \ ${WRKSRC}/AUTHORS ${WRKSRC}/ChangeLog ${WRKSRC}/README \ ${WRKSRC}/TODO ${WRKDIR}/README.FreeBSD ${STAGEDIR}${DOCSDIR} .include diff --git a/net/asterisk-chan_sccp/Makefile b/net/asterisk-chan_sccp/Makefile index 2a099e954441..5ec4ca9dbc6b 100644 --- a/net/asterisk-chan_sccp/Makefile +++ b/net/asterisk-chan_sccp/Makefile @@ -1,58 +1,57 @@ PORTNAME= chan_sccp DISTVERSIONPREFIX= v DISTVERSION= 4.3.5.20231205 CATEGORIES= net PKGNAMEPREFIX= asterisk- MAINTAINER= ddegroot@talon.nl COMMENT= Replacement for the SCCP channel driver in Asterisk WWW= https://sourceforge.net/projects/chan-sccp-b/ LICENSE= GPLv1 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libltdl.so:devel/libltdl FLAVORS= asterisk20 asterisk22 FLAVOR?= ${FLAVORS:[2]} ${FLAVOR}_PKGNAMEPREFIX= ${FLAVOR}- ${FLAVOR}_BUILD_DEPENDS= asterisk:net/${FLAVOR} ${FLAVOR}_RUN_DEPENDS= asterisk:net/${FLAVOR} -USES= autoreconf:2.69 compiler:c11 gettext-tools iconv:wchar_t \ - libtool ssl +USES= compiler:c11 iconv:wchar_t libtool ssl USE_GITHUB= yes GH_ACCOUNT= chan-sccp GH_PROJECT= chan-sccp GH_TAGNAME= 2e2105182824dc0ffda40f607290eb309d03a963 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-advanced-functions \ --with-hash-size=3001 INSTALL_TARGET= install-strip CFLAGS+= -D_ASTERISK_VERSION=${FLAVOR:C|([a-zA-Z]+)||} CONFLICTS_INSTALL= ${FLAVORS:N${FLAVOR}:C|(.+)|\1-${PORTNAME}|} PLIST_FILES= etc/asterisk/sccp.conf.annotated \ "@sample etc/asterisk/sccp.conf.sample" \ lib/asterisk/modules/chan_sccp.so \ share/asterisk/documentation/thirdparty/chan_sccp-en_US.xml OPTIONS_DEFINE= CONFERENCE VIDEO OPTIONS_DEFAULT= CONFERENCE VIDEO CONFERENCE_DESC= Enable Conference Support VIDEO_DESC= Enable Video Support CONFERENCE_CONFIGURE_ENABLE= conference VIDEO_CONFIGURE_ENABLE= video post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/asterisk ${INSTALL_DATA} ${WRKSRC}/conf/sccp.conf \ ${STAGEDIR}${PREFIX}/etc/asterisk/sccp.conf.sample ${INSTALL_DATA} ${WRKSRC}/conf/sccp.conf.annotated \ ${STAGEDIR}${PREFIX}/etc/asterisk .include diff --git a/net/ucarp/Makefile b/net/ucarp/Makefile index 59f585ab4a8c..a6ded17be4c3 100644 --- a/net/ucarp/Makefile +++ b/net/ucarp/Makefile @@ -1,38 +1,36 @@ PORTNAME= ucarp PORTVERSION= 1.5.2.20171201 CATEGORIES= net MAINTAINER= jcpierri@gmail.com COMMENT= Userlevel Common Address Redundancy Protocol WWW= https://github.com/jedisct1/UCarp LICENSE= ISC LICENSE_NAME= ISC License LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -USES= autoreconf libtool +USES= autoreconf gettext-tools libtool USE_GITHUB= yes GH_ACCOUNT= jedisct1 GH_PROJECT= UCarp GH_TAGNAME= 4f339d4 -GNU_CONFIGURE= yes - USE_RC_SUBR= ucarp +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-nls + PLIST_FILES= sbin/ucarp OPTIONS_DEFINE= SCRIPTS OPTIONS_DEFAULT= SCRIPTS SCRIPTS_DESC= Install scripts to manage virtual IP SCRIPTS_PLIST_FILES= sbin/ucarp-up sbin/ucarp-down -pre-configure: - @${TOUCH} ${WRKSRC}/config.rpath ${WRKSRC}/ABOUT-NLS - post-install-SCRIPTS-on: ${INSTALL_SCRIPT} ${WRKSRC}/examples/bsd/vip-up.sh ${STAGEDIR}${PREFIX}/sbin/ucarp-up ${INSTALL_SCRIPT} ${WRKSRC}/examples/bsd/vip-down.sh ${STAGEDIR}${PREFIX}/sbin/ucarp-down .include diff --git a/news/fidogate/Makefile b/news/fidogate/Makefile index b263de77ec42..a73e6e444415 100644 --- a/news/fidogate/Makefile +++ b/news/fidogate/Makefile @@ -1,113 +1,113 @@ PORTNAME= fidogate DISTVERSIONPREFIX= v DISTVERSION= 5.12 CATEGORIES= news mail MAINTAINER= admin@5034.ru COMMENT= Fido-Internet Gateway and Tosser WWW= https://github.com/ykaliuta/fidogate LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= autoreconf perl5 iconv +USES= autoreconf gettext-tools iconv perl5 USE_GITHUB= yes GH_ACCOUNT= ykaliuta GNU_CONFIGURE= yes CONFIGURE_ARGS= --libexec=${PREFIX}/libexec/fidogate \ --sysconfdir=${PREFIX}/etc/fido/gate \ --with-lockdir=${LOCKDIR} \ --with-logdir=${LOGDIR} \ --with-vardir=${VARDIR} \ --with-spooldir=${SPOOLDIR} \ --with-btbasedir=${BTBASEDIR} \ ${ICONV_CONFIGURE_BASE} CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} INSTALL_TARGET= install-strip CONFLICTS= fidogate-4* fidogate4-4* PLIST_SUB+= SPOOLDIR=${SPOOLDIR} \ SPOOLDIR2=${SPOOLDIR:S=/gate$==} \ BTBASEDIR=${BTBASEDIR} \ LOGDIR=${LOGDIR} \ LOGDIR2=${LOGDIR:S=/gate$==} \ LOCKDIR=${LOCKDIR} \ VARDIR=${VARDIR} \ PREFIX=${PREFIX} OPTIONS_DEFINE= INN DESCDIR ALIASES DBC DNT_NETMAIL FMSGID AVAIL \ BEST_AKA DOCS EXAMPLES FIX_QUOTE_RFC2FTN OPTIONS_DEFAULT= INN DESCDIR FMSGID AVAIL BEST_AKA FIX_QUOTE_RFC2FTN NO_OPTIONS_SORT=yes ALIASES_DESC= Rewrite addresses found in ALIASES AVAIL_DESC= Change behaviour of areafix command "%list" and "%avail" BEST_AKA_DESC= Best AKA select DBC_DESC= Use msgid correspond data base DESCDIR_DESC= Put file descriptions into files.bbs DNT_NETMAIL_DESC= Do not toss netmail FIX_QUOTE_RFC2FTN_DESC= Fix quoting rfc2ftn FMSGID_DESC= Set gate msgid into outgoing messages INN_DESC= INN news server support ALIASES_CONFIGURE_ON= --enable-aliases-local AVAIL_CONFIGURE_OFF= --disable-af-avail BEST_AKA_CONFIGURE_ON= --enable-best-aka DBC_CONFIGURE_ON= --enable-dbc-history DESCDIR_CONFIGURE_OFF= --disable-desc-dir DNT_NETMAIL_CONFIGURE_ON= --enable-dnt-netmail FIX_QUOTE_RFC2FTN_CONFIGURE_ON= --enable-xct FMSGID_CONFIGURE_OFF= --disable-fs-msgid INN_BUILD_DEPENDS= ${PREFIX}/news/bin/innconfval:news/inn INN_CONFIGURE_ON= --with-inndir=${PREFIX}/news INN_CONFIGURE_OFF= --without-news DOCS= doc/README.ru doc/README doc/FAQ.ru doc/old/ChangeLog doc/old/Changes.ru \ doc/old/FAQ_fidogate doc/old/FIDOGATE_ftrack doc/old/README.snp \ doc/old/fidogate.txt doc/old/fidogate.texi doc/old/msgid.doc BTBASEDIR?= /var/spool/fido/bt LOCKDIR?= /var/run/fidogate LOGDIR?= /var/log/fido/gate SPOOLDIR?= /var/spool/fido/gate VARDIR?= /var/db/fidogate post-install: ${MKDIR} ${STAGEDIR}${LOGDIR} ${MKDIR} ${STAGEDIR}${LOCKDIR} ${MKDIR} ${STAGEDIR}${VARDIR} ${MKDIR} ${STAGEDIR}${PREFIX}/etc/newsyslog.conf.d ${INSTALL_DATA} ${FILESDIR}/fidogate.conf-newsyslog \ ${STAGEDIR}${PREFIX}/etc/newsyslog.conf.d/fidogate.conf ${MKDIR} ${STAGEDIR}${BTBASEDIR}/fbox \ ${STAGEDIR}${BTBASEDIR}/out post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for a in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${a} ${STAGEDIR}${DOCSDIR} .endfor ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for a in exim inn postfix sendmail ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${a} .endfor ${INSTALL_DATA} ${WRKSRC}/doc/news/inn/newsfeeds.fidogate ${STAGEDIR}${EXAMPLESDIR}/inn/newsfeeds.fidogate ${INSTALL_DATA} ${WRKSRC}/doc/mailer/postfix/master.cf ${STAGEDIR}${EXAMPLESDIR}/postfix/master.cf ${INSTALL_DATA} ${WRKSRC}/doc/mailer/postfix/transport ${STAGEDIR}${EXAMPLESDIR}/postfix/transport ${INSTALL_DATA} ${WRKSRC}/doc/mailer/sendmail/mailer/ftn.m4 ${STAGEDIR}${EXAMPLESDIR}/sendmail/ftn.m4 ${INSTALL_DATA} ${WRKSRC}/doc/mailer/exim/exim.conf.in ${STAGEDIR}${EXAMPLESDIR}/exim/exim.conf.in ${INSTALL_DATA} ${WRKSRC}/doc/mailer/exim/ftntable_1304 ${STAGEDIR}${EXAMPLESDIR}/exim/ftntable_1304 ${INSTALL_DATA} ${WRKSRC}/doc/mailer/exim/ftntable_1309 ${STAGEDIR}${EXAMPLESDIR}/exim/ftntable_1309 ${INSTALL_DATA} ${WRKSRC}/doc/mailer/exim/ftntable_local ${STAGEDIR}${EXAMPLESDIR}/exim/ftntable_local post-install-EXAMPLES-on: .include .if ${PORT_OPTIONS:MFIX_QUOTE_RFC2FTN} PLIST_SUB+= FIX_QUOTE_RFC2FTN="" .else PLIST_SUB+= FIX_QUOTE_RFC2FTN="@comment " .endif .include diff --git a/security/pam_pkcs11/Makefile b/security/pam_pkcs11/Makefile index 826e08c465dd..80a072b82235 100644 --- a/security/pam_pkcs11/Makefile +++ b/security/pam_pkcs11/Makefile @@ -1,100 +1,96 @@ PORTNAME= pam_pkcs11 PORTVERSION= 0.6.12 PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= security MAINTAINER= khng@FreeBSD.org COMMENT= PAM module using crypto tokens for auth WWW= https://github.com/OpenSC/pam_pkcs11 LICENSE= LGPL21 RUN_DEPENDS= bash:shells/bash -USES= autoreconf gmake libtool pkgconfig shebangfix +USES= autoreconf gettext-tools gmake libtool pkgconfig shebangfix USE_GITHUB= yes GH_ACCOUNT= OpenSC GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-confdir=${ETCDIR} CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" -GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share SHEBANG_FILES= tools/pkcs11_make_hash_link OPTIONS_DEFINE= CURL DEBUG DOCS LDAP NLS NSS PCSC SSL OPTIONS_DEFAULT= PCSC SSL OPTIONS_SUB= yes CURL_LIB_DEPENDS= libcurl.so:ftp/curl CURL_CONFIGURE_WITH= curl LDAP_USES= ldap LDAP_CONFIGURE_WITH= ldap # Users can only choose either NSS or SSL NSS_DESC= Enable Mozilla's NSS support NSS_CONFIGURE_WITH= nss NSS_LIB_DEPENDS= libnss3.so:security/nss \ libnspr4.so:devel/nspr NSS_PREVENTS= SSL PCSC_DESC= Enable PC/SC support PCSC_LIB_DEPENDS= libpcsclite.so:devel/pcsc-lite PCSC_CONFIGURE_WITH= pcsclite SSL_USES= ssl NLS_CONFIGURE_ENABLE= nls -NLS_USES= gettext +NLS_USES= gettext-runtime DOCS_CONFIGURE_ENABLE= doc PORTDOCS= * PAM_PKCS11_EXAMPLEDOCS= \ etc/card_eventmgr.conf.example \ etc/digest_mapping.example \ etc/mail_mapping.example \ etc/pam.d_login.example.in \ etc/pam_pkcs11.conf.example.in \ etc/pkcs11_eventmgr.conf.example \ etc/subject_mapping.example .include .if ! ${PORT_OPTIONS:MDEBUG} INSTALL_TARGET= install-strip .else CONFIGURE_ARGS+= --with-debug=yes .endif .if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= xsltproc:textproc/libxslt \ ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl CONFIGURE_ENV+= XSLTPROC="${LOCALBASE}/bin/xsltproc" CONFIGURE_ARGS+=--with-xsl-stylesheetsdir=${LOCALBASE}/share/xsl/docbook .else CONFIGURE_ENV+= XSLTPROC="${FALSE}" CONFIGURE_ARGS+=--without-xsl-stylesheetsdir .endif post-patch: .for f in ${PAM_PKCS11_EXAMPLEDOCS} @${REINPLACE_CMD} -e 's|/etc/${PORTNAME}|${ETCDIR}|g' \ -e 's|file:///etc/${PORTNAME}/|file://${ETCDIR}/|g' \ -e 's|/usr/lib|${PREFIX}/lib|g' \ -e 's|/usr/share|${PREFIX}/share|g' \ ${WRKSRC}/${f} .endfor @${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' \ ${WRKSRC}/doc/pam_pkcs11.8.in -pre-configure: - @(cd ${WRKSRC} && ./bootstrap) - .include diff --git a/security/pam_pkcs11/files/patch-configure.ac b/security/pam_pkcs11/files/patch-configure.ac new file mode 100644 index 000000000000..042b4516b3c1 --- /dev/null +++ b/security/pam_pkcs11/files/patch-configure.ac @@ -0,0 +1,10 @@ +--- configure.ac.orig 2021-05-31 18:18:38 UTC ++++ configure.ac +@@ -5,6 +5,7 @@ AC_INIT([pam_pkcs11],[0.6.12]) + + # Process this file with autoconf to produce a configure script. + AC_INIT([pam_pkcs11],[0.6.12]) ++AC_CONFIG_MACRO_DIRS([aclocal]) + AC_CONFIG_SRCDIR([src/pam_pkcs11/pam_pkcs11.c]) + AC_CANONICAL_HOST + AM_INIT_AUTOMAKE diff --git a/sysutils/cdrdao/Makefile b/sysutils/cdrdao/Makefile index b968d34fd8a1..249275b8ba97 100644 --- a/sysutils/cdrdao/Makefile +++ b/sysutils/cdrdao/Makefile @@ -1,56 +1,56 @@ PORTNAME= cdrdao DISTVERSION= 1_2_5 PORTREVISION= 2 CATEGORIES= sysutils audio MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/rel_${DISTVERSION}/ \ SF/${PORTNAME}/rel_${DISTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= jhale@FreeBSD.org COMMENT= Record CD-R[W]s in disk-at-once mode WWW= https://cdrdao.sourceforge.net/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= alias autoreconf compiler:c++11-lang gmake iconv localbase tar:bzip2 +USES= alias autoreconf compiler:c++11-lang gettext-tools gmake iconv \ + localbase tar:bzip2 USE_CXXSTD= c++11 GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --with-gcdmaster=no \ --without-pcctsbin \ --without-pcctsinc \ --with-posix-threads=no \ --with-scglib OPTIONS_DEFINE= DOCS TOC2MP3 MP3OGG OPTIONS_DEFAULT= MP3OGG OPTIONS_SUB= yes MP3OGG_DESC= Build with MP3/Ogg support (for sysutils/gcdmaster) MP3OGG_LIB_DEPENDS= libao.so:audio/libao \ libmad.so:audio/libmad \ libvorbis.so:audio/libvorbis MP3OGG_USES= pkgconfig MP3OGG_CONFIGURE_OFF= --with-mp3-support=no --with-ogg-support=no TOC2MP3_DESC= Build with toc2mp3 (requires audio/lame) TOC2MP3_LIB_DEPENDS= libmp3lame.so:audio/lame TOC2MP3_CONFIGURE_OFF= --with-lame=no post-patch: .for i in cdrdao.man main.cc @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/dao/${i} .endfor .for i in toc2cddb.1 toc2cue.1 @${REINPLACE_CMD} -e 's|1\.2\.2|${PORTVERSION}|g' ${WRKSRC}/utils/${i} .endfor post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in CREDITS ChangeLog README README.PlexDAE ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/sysutils/grub2-efi/files/patch-autogen.sh b/sysutils/grub2-efi/files/patch-autogen.sh new file mode 100644 index 000000000000..f2e50ff66917 --- /dev/null +++ b/sysutils/grub2-efi/files/patch-autogen.sh @@ -0,0 +1,9 @@ +--- autogen.sh.orig 2015-06-03 14:54:01 UTC ++++ autogen.sh +@@ -83,5 +83,5 @@ echo "Running autoreconf..." + echo timestamp > stamp-h.in + + echo "Running autoreconf..." +-autoreconf -vi ++autoreconf -vif + exit 0 diff --git a/sysutils/grub2-pcbsd/files/patch-autogen.sh b/sysutils/grub2-pcbsd/files/patch-autogen.sh new file mode 100644 index 000000000000..f2e50ff66917 --- /dev/null +++ b/sysutils/grub2-pcbsd/files/patch-autogen.sh @@ -0,0 +1,9 @@ +--- autogen.sh.orig 2015-06-03 14:54:01 UTC ++++ autogen.sh +@@ -83,5 +83,5 @@ echo "Running autoreconf..." + echo timestamp > stamp-h.in + + echo "Running autoreconf..." +-autoreconf -vi ++autoreconf -vif + exit 0 diff --git a/www/wget2/files/patch-configure.ac b/www/wget2/files/patch-configure.ac new file mode 100644 index 000000000000..07e5cc33b04b --- /dev/null +++ b/www/wget2/files/patch-configure.ac @@ -0,0 +1,23 @@ +--- configure.ac.orig 2024-11-24 18:15:30 UTC ++++ configure.ac +@@ -410,17 +410,10 @@ test "${ENABLE_XATTR}" = "yes" && AC_DEFINE([ENABLE_XA + # + # Gettext + # +-m4_ifdef([AM_GNU_GETTEXT], [ +- AM_GNU_GETTEXT([external],[need-ngettext]) +- AC_CONFIG_FILES([po/Makefile.in]) +- have_po=yes +-], [ +- have_po=no +-]) +-m4_ifdef([AM_GNU_GETTEXT_VERSION], [ +-#do not indent here ++AM_GNU_GETTEXT([external],[need-ngettext]) ++AC_CONFIG_FILES([po/Makefile.in]) ++have_po=yes + AM_GNU_GETTEXT_VERSION([0.22.5]) +-]) + AM_CONDITIONAL([HAVE_PO], [ test "$have_po" = "yes" ]) + + #