1
0
mirror of https://git.freebsd.org/ports.git synced 2026-06-02 11:08:52 +00:00

devel/libtextstyle, devel/gettext*: Update to 0.26

Recent versions of gettext no longer install m4 files in
PREFIX/share/aclocal.  They have to be installed in the work
directory by autopoint for aclocal to find them.

Patch devel/autoconf so autoreconf runs autopoint when gettext related
macros are used in configure.ac (e.g. AM_ICONV).  Previously it only
ran autopoint when AM_GNU_GETTEXT_(REQUIRE_)VERSION was used.

The following ports now require autopoint (i.e. USES=gettext-tools):
benchmarks/sysbench, devel/libhtp, editors/fxite, filesystems/rar2fs,
graphics/gd, net/ucarp, news/fidogate, sysutils/cdrdao

Other fixes:

emulators/mednafen, misc/lifelines: Use older version of gettext macros.
ftp/axel: Patch Makefile.am and configure.ac to get gettext working and
add NLS option.
ftp/wzdftpd: Use autoreconf 2.72.
mail/sympa: Remove hack from configure.ac.
multimedia/dvdauthor: Use ports autoreconf.
net/asterisk-chan_sccp: Drop autoreconf and gettext-tools dependencies.
security/pam_pkcs11: Patch configure.ac so autoreconf can find the
custom directory with m4 files.
sysutils/grub2-efi, sysutils/grub2-pcbsd: Add patch to run autoreconf
with -f flag so it updates all files.
www/wget2: Patch configure.ac to what autopoint expects.

PR:		287167
Exp-run by:	antoine
This commit is contained in:
Tijl Coosemans
2025-11-28 18:29:53 +01:00
parent 4b7fa6ccfd
commit 974099d0bd
39 changed files with 1087 additions and 293 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ _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
+3 -3
View File
@@ -14,14 +14,14 @@ 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
+2 -2
View File
@@ -14,10 +14,10 @@ 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
+2 -1
View File
@@ -12,7 +12,8 @@ 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
+1 -1
View File
@@ -1,5 +1,6 @@
PORTNAME= autoconf
DISTVERSION= 2.72
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= GNU
@@ -25,7 +26,6 @@ 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} \
@@ -0,0 +1,159 @@
From e2a4935b45f273410e975ecf56ab26ad72855df0 Mon Sep 17 00:00:00 2001
From: Bruno Haible <bruno@clisp.org>
Date: Wed, 2 Jul 2025 02:43:41 +0200
Subject: [PATCH 1/2] autoreconf: Invoke autopoint in more situations.
Reported in <https://savannah.gnu.org/support/?111272>.
* 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
@@ -0,0 +1,102 @@
From d75171fdf8d03d2e070fcc3dbb5afb942dbd7828 Mon Sep 17 00:00:00 2001
From: Bruno Haible <bruno@clisp.org>
Date: Sat, 5 Jul 2025 17:20:11 +0200
Subject: [PATCH] autoreconf: Adapt to the on-disk situation after autopoint
has run.
Reported in <https://savannah.gnu.org/support/?111273>.
* 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
+1 -1
View File
@@ -1,5 +1,5 @@
PORTNAME= gettext-po-mode
PORTREVISION= 10
PORTREVISION= 0
MAINTAINER= mandree@FreeBSD.org
COMMENT= GNU gettext po-mode for emacs
+7 -1
View File
@@ -2,6 +2,8 @@ bin/envsubst
bin/gettext
bin/gettext.sh
bin/ngettext
bin/printf_gettext
bin/printf_ngettext
include/autosprintf.h
include/libintl.h
lib/libasprintf.a
@@ -11,7 +13,7 @@ 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
@@ -39,6 +41,8 @@ lib/libintl.so.8.4.2
%%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
@@ -87,6 +91,8 @@ 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
+1 -1
View File
@@ -3,7 +3,7 @@
# discretion.
PORTNAME= gettext-tools
PORTREVISION= 1
PORTREVISION= 0
COMMENT= GNU gettext development and translation tools
WWW= https://www.gnu.org/software/gettext/
+643 -186
View File
@@ -23,7 +23,7 @@ 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
@@ -32,88 +32,142 @@ 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
@@ -412,73 +466,78 @@ share/aclocal/progtest.m4
%%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
@@ -527,6 +586,60 @@ share/aclocal/progtest.m4
%%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
@@ -741,6 +854,59 @@ share/aclocal/progtest.m4
%%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
@@ -794,6 +960,123 @@ share/aclocal/progtest.m4
%%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
@@ -1121,63 +1404,116 @@ share/aclocal/progtest.m4
%%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
@@ -1503,12 +1839,121 @@ share/aclocal/progtest.m4
%%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
@@ -1793,6 +2238,7 @@ share/aclocal/progtest.m4
%%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
@@ -1835,6 +2281,17 @@ share/aclocal/progtest.m4
%%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
+1 -1
View File
@@ -2,7 +2,7 @@
# 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
+3 -3
View File
@@ -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
+2 -2
View File
@@ -9,8 +9,8 @@ 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
+1 -1
View File
@@ -5,7 +5,7 @@ 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
+2 -1
View File
@@ -13,7 +13,8 @@ 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
+3 -8
View File
@@ -18,8 +18,8 @@ LIB_DEPENDS= libFLAC.so:audio/flac \
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
@@ -80,7 +80,7 @@ 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
@@ -99,11 +99,6 @@ 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 \
+11 -3
View File
@@ -1,6 +1,14 @@
--- 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=""
@@ -8,7 +16,7 @@
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
+1 -1
View File
@@ -15,7 +15,7 @@ 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
+7 -4
View File
@@ -1,6 +1,7 @@
PORTNAME= axel
DISTVERSIONPREFIX= v
DISTVERSION= 2.17.14
PORTREVISION= 1
CATEGORIES= ftp
MAINTAINER= yuri@FreeBSD.org
@@ -19,11 +20,13 @@ 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 <bsd.port.mk>
+12
View File
@@ -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
+11
View File
@@ -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()
+13
View File
@@ -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
+1 -2
View File
@@ -11,9 +11,8 @@ 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
+2 -1
View File
@@ -14,7 +14,8 @@ 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
+10
View File
@@ -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)
+2 -2
View File
@@ -10,7 +10,7 @@ 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"
@@ -35,7 +35,7 @@ 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:
+18
View File
@@ -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
@@ -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); \
+4 -12
View File
@@ -21,11 +21,10 @@ 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
@@ -52,15 +51,8 @@ MANPAGES_BUILD_DEPENDS= docbook2man:textproc/docbook-utils \
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}
+1 -2
View File
@@ -20,8 +20,7 @@ ${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
+4 -6
View File
@@ -11,15 +11,16 @@ 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
@@ -28,9 +29,6 @@ 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
+1 -1
View File
@@ -10,7 +10,7 @@ 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
+2 -6
View File
@@ -12,7 +12,7 @@ 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
@@ -22,7 +22,6 @@ 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
@@ -50,7 +49,7 @@ PCSC_CONFIGURE_WITH= pcsclite
SSL_USES= ssl
NLS_CONFIGURE_ENABLE= nls
NLS_USES= gettext
NLS_USES= gettext-runtime
DOCS_CONFIGURE_ENABLE= doc
@@ -94,7 +93,4 @@ post-patch:
@${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' \
${WRKSRC}/doc/pam_pkcs11.8.in
pre-configure:
@(cd ${WRKSRC} && ./bootstrap)
.include <bsd.port.mk>
@@ -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
+2 -2
View File
@@ -13,11 +13,11 @@ 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 \
@@ -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
@@ -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
+23
View File
@@ -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" ])
#