summaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authortrevor <trevor@FreeBSD.org>2004-01-23 18:05:27 +0000
committertrevor <trevor@FreeBSD.org>2004-01-23 18:05:27 +0000
commitb43debac05986ca7ccce91683fcae4d60a2cc6e2 (patch)
tree81db6412cc2c750ddeeebf1a8c4196370b8e4a15 /devel
parenta63a5a735293d6fc58b2621ea2bd182e021ffe1a (diff)
downloadFreeBSD-ports-b43debac05986ca7ccce91683fcae4d60a2cc6e2.zip
FreeBSD-ports-b43debac05986ca7ccce91683fcae4d60a2cc6e2.tar.gz
Update gettext-old to 0.12.1, re-add and reconnect to build.
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/gettext-old/Makefile53
-rw-r--r--devel/gettext-old/distinfo2
-rw-r--r--devel/gettext-old/files/patch-config_ltmain.sh53
-rw-r--r--devel/gettext-old/files/patch-gettext-runtime_configure13
-rw-r--r--devel/gettext-old/files/patch-gettext-runtime_intl_Makefile.in58
-rw-r--r--devel/gettext-old/files/patch-gettext-tools_Makefile.in13
-rw-r--r--devel/gettext-old/files/patch-gettext-tools_configure13
-rw-r--r--devel/gettext-old/files/patch-gettext-tools_lib_Makefile.in31
-rw-r--r--devel/gettext-old/files/patch-gettext-tools_misc_Makefile.in15
-rw-r--r--devel/gettext-old/files/patch-gettext-tools_misc_po-mode.el13
-rw-r--r--devel/gettext-old/files/patch-gettext-tools_src_Makefile.in39
-rw-r--r--devel/gettext-old/pkg-descr7
-rw-r--r--devel/gettext-old/pkg-plist308
14 files changed, 619 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index ffcdef2..d9f05fc 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -249,6 +249,7 @@
SUBDIR += gengameng
SUBDIR += gengetopt
SUBDIR += gettext
+ SUBDIR += gettext-old
SUBDIR += getxml
SUBDIR += gindent
SUBDIR += glade2
diff --git a/devel/gettext-old/Makefile b/devel/gettext-old/Makefile
new file mode 100644
index 0000000..e98f0ce
--- /dev/null
+++ b/devel/gettext-old/Makefile
@@ -0,0 +1,53 @@
+# New ports collection makefile for: gettext
+# Date created: 16 March 1998
+# Whom: Yukihiro Nakai <Nakai@technologist.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gettext
+PORTVERSION= 0.12.1
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_GNU}
+MASTER_SITE_SUBDIR= gettext
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= GNU gettext package
+
+LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv \
+ expat.4:${PORTSDIR}/textproc/expat2
+
+CONFLICTS= gettext-0.13*
+GNU_CONFIGURE= yes
+CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ENV= ACLOCAL="${TRUE}" \
+ AUTOCONF="${TRUE}" \
+ AUTOMAKE="${TRUE}" \
+ AUTOHEADER="${TRUE}" \
+ MAKEINFO="makeinfo --no-split" \
+ CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+CONFIGURE_ARGS= --with-libexpat-prefix=${LOCALBASE}/lib \
+ --mandir=${PREFIX}/man
+INSTALLS_SHLIB= yes
+
+PLIST_SUB= LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} \
+ VERSION=${PORTVERSION}
+
+MAN1= autopoint.1 gettext.1 gettextize.1 msgattrib.1 msgcat.1 \
+ msgcmp.1 msgcomm.1 msgconv.1 msgen.1 msgexec.1 \
+ msgfilter.1 msgfmt.1 msggrep.1 msginit.1 msgmerge.1 \
+ msgunfmt.1 msguniq.1 ngettext.1 xgettext.1
+MAN3= bind_textdomain_codeset.3 bindtextdomain.3 dcgettext.3 \
+ dcngettext.3 dgettext.3 dngettext.3 gettext.3 ngettext.3 \
+ textdomain.3
+
+INFO= autosprintf gettext
+
+post-install:
+.for f in po-compat.el po-mode.el
+ ${INSTALL_DATA} ${WRKSRC}/gettext-tools/misc/${f} ${PREFIX}/share/emacs/site-lisp
+.endfor
+ ${MKDIR} ${X11BASE}/share/locale
+
+.include <bsd.port.mk>
diff --git a/devel/gettext-old/distinfo b/devel/gettext-old/distinfo
new file mode 100644
index 0000000..a26e11f
--- /dev/null
+++ b/devel/gettext-old/distinfo
@@ -0,0 +1,2 @@
+$FreeBSD$
+MD5 (gettext-0.12.1.tar.gz) = 5d4bddd300072315e668247e5b7d5bdb
diff --git a/devel/gettext-old/files/patch-config_ltmain.sh b/devel/gettext-old/files/patch-config_ltmain.sh
new file mode 100644
index 0000000..fade35f
--- /dev/null
+++ b/devel/gettext-old/files/patch-config_ltmain.sh
@@ -0,0 +1,53 @@
+$FreeBSD$
+
+--- config/ltmain.sh.orig Tue Apr 15 19:22:56 2003
++++ config/ltmain.sh Wed Jun 11 14:15:07 2003
+@@ -1279,7 +1279,7 @@
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+- *-*-openbsd* | *-*-freebsd*)
++ *-*-openbsd* | *-*-freebsd4*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+@@ -1289,8 +1289,16 @@
+ continue
+ ;;
+
++ -pthread)
++ compile_command="$compile_command -pthread"
++ finalize_command="$finalize_command -pthread"
++ compiler_flags="$compiler_flags -pthread"
++ continue
++ ;;
++
+ -module)
+ module=yes
++ build_old_libs=no
+ continue
+ ;;
+
+@@ -3001,6 +3009,9 @@
+ # problems, so we reset it completely
+ verstring=
+ ;;
++ *-*-freebsd*)
++ # FreeBSD doesn't need this...
++ ;;
+ *)
+ verstring="0.0"
+ ;;
+@@ -5429,10 +5440,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if /usr/bin/false; then
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
++ fi
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/devel/gettext-old/files/patch-gettext-runtime_configure b/devel/gettext-old/files/patch-gettext-runtime_configure
new file mode 100644
index 0000000..2318d6c
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-runtime_configure
@@ -0,0 +1,13 @@
+$FreeBSD$
+
+--- gettext-runtime/configure.orig Wed Jun 11 17:21:41 2003
++++ gettext-runtime/configure Wed Jun 11 17:21:56 2003
+@@ -1875,7 +1875,7 @@
+ ac_config_headers="$ac_config_headers config.h"
+
+
+-test "$mandir" != '${prefix}/man' || mandir='${datadir}/man'
++test "$mandir" != '${prefix}/man' || mandir='${prefix}/man'
+
+ ac_ext=c
+ ac_cpp='$CPP $CPPFLAGS'
diff --git a/devel/gettext-old/files/patch-gettext-runtime_intl_Makefile.in b/devel/gettext-old/files/patch-gettext-runtime_intl_Makefile.in
new file mode 100644
index 0000000..17e36a8
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-runtime_intl_Makefile.in
@@ -0,0 +1,58 @@
+$FreeBSD$
+
+--- gettext-runtime/intl/Makefile.in.orig Wed May 21 06:55:18 2003
++++ gettext-runtime/intl/Makefile.in Wed Jun 11 14:28:58 2003
+@@ -52,7 +52,7 @@
+ YFLAGS = --name-prefix=__gettext
+
+ DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \
+--DLIBDIR=\"$(libdir)\" -DIN_LIBINTL \
++-DLIBDIR=\"$(prefix)/libdata\" -DIN_LIBINTL \
+ -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DNO_XMALLOC \
+ -Dset_relocation_prefix=libintl_set_relocation_prefix \
+ -Drelocate=libintl_relocate \
+@@ -145,7 +145,7 @@
+ libintl.la libgnuintl.la: $(OBJECTS)
+ $(LIBTOOL) --mode=link \
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \
+- $(OBJECTS) @LTLIBICONV@ $(LIBS) -lc \
++ $(OBJECTS) @LTLIBICONV@ $(LIBS) \
+ -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
+ -rpath $(libdir) \
+ -no-undefined
+@@ -270,22 +270,6 @@
+ : ; \
+ 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 \
+@@ -369,9 +353,9 @@
+ : ; \
+ fi
+ if test '@USE_INCLUDED_LIBINTL@' = yes; then \
+- if test -f $(DESTDIR)$(libdir)/charset.alias; then \
+- temp=$(DESTDIR)$(libdir)/t-charset.alias; \
+- dest=$(DESTDIR)$(libdir)/charset.alias; \
++ if test -f $(DESTDIR)$(prefix)/libdata/charset.alias; then \
++ temp=$(DESTDIR)$(prefix)/libdata/t-charset.alias; \
++ dest=$(DESTDIR)$(prefix)/libdata/charset.alias; \
+ sed -f ref-del.sed $$dest > $$temp; \
+ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
+ rm -f $$dest; \
diff --git a/devel/gettext-old/files/patch-gettext-tools_Makefile.in b/devel/gettext-old/files/patch-gettext-tools_Makefile.in
new file mode 100644
index 0000000..ccb82cc
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-tools_Makefile.in
@@ -0,0 +1,13 @@
+$FreeBSD$
+
+--- gettext-tools/Makefile.in.orig Wed Jun 11 13:55:17 2003
++++ gettext-tools/Makefile.in Wed Jun 11 13:55:27 2003
+@@ -207,7 +207,7 @@
+ AUTOMAKE_OPTIONS = 1.5 gnu no-dependencies
+ ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../config/m4
+
+-SUBDIRS = doc intl lib libuniname src po projects misc man m4 tests
++SUBDIRS = doc intl lib libuniname src po projects misc man m4
+
+ # vms_jackets.h is a header that comes with Compaq's "porting library".
+ # KEEP_CRTL_SETLOCALE tells it to not override the native locale support.
diff --git a/devel/gettext-old/files/patch-gettext-tools_configure b/devel/gettext-old/files/patch-gettext-tools_configure
new file mode 100644
index 0000000..cc9de9c
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-tools_configure
@@ -0,0 +1,13 @@
+$FreeBSD$
+
+--- gettext-tools/configure.orig Wed Jun 11 17:11:46 2003
++++ gettext-tools/configure Wed Jun 11 17:12:02 2003
+@@ -1887,7 +1887,7 @@
+ ac_config_headers="$ac_config_headers config.h"
+
+
+-test "$mandir" != '${prefix}/man' || mandir='${datadir}/man'
++test "$mandir" != '${prefix}/man' || mandir='${prefix}/man'
+
+ ac_ext=c
+ ac_cpp='$CPP $CPPFLAGS'
diff --git a/devel/gettext-old/files/patch-gettext-tools_lib_Makefile.in b/devel/gettext-old/files/patch-gettext-tools_lib_Makefile.in
new file mode 100644
index 0000000..b617875
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-tools_lib_Makefile.in
@@ -0,0 +1,31 @@
+$FreeBSD$
+
+--- gettext-tools/lib/Makefile.in.orig Thu May 22 09:41:20 2003
++++ gettext-tools/lib/Makefile.in Wed Jun 11 14:05:44 2003
+@@ -67,7 +67,7 @@
+ CYGPATH_W = @CYGPATH_W@
+ DATADIRNAME = @DATADIRNAME@
+
+-DEFS = -DEXEEXT=\"$(EXEEXT)\" -DDEPENDS_ON_LIBINTL=1 -DDEPENDS_ON_LIBICONV=1 @DEFS@ -DLIBDIR=\"$(libdir)\"
++DEFS = -DEXEEXT=\"$(EXEEXT)\" -DDEPENDS_ON_LIBINTL=1 -DDEPENDS_ON_LIBICONV=1 @DEFS@ -DLIBDIR=\"$(prefix)/libdata\"
+ DEPDIR = @DEPDIR@
+ DLLTOOL = @DLLTOOL@
+ DVIPS = @DVIPS@
+@@ -317,7 +317,7 @@
+ # Need @LTLIBICONV@ because linebreak.c uses iconv().
+ libgettextlib_la_LDFLAGS = \
+ -release @VERSION@ \
+- @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
++ @LTLIBINTL@ @LTLIBICONV@ -no-undefined
+
+
+
+@@ -599,7 +599,7 @@
+
+ install-data-am: install-gettextsrcDATA
+
+-install-exec-am: install-exec-local install-libLTLIBRARIES
++install-exec-am: install-libLTLIBRARIES
+
+ install-info: install-info-am
+
diff --git a/devel/gettext-old/files/patch-gettext-tools_misc_Makefile.in b/devel/gettext-old/files/patch-gettext-tools_misc_Makefile.in
new file mode 100644
index 0000000..819178b
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-tools_misc_Makefile.in
@@ -0,0 +1,15 @@
+$FreeBSD$
+
+--- gettext-tools/misc/Makefile.in.orig Thu May 22 09:41:22 2003
++++ gettext-tools/misc/Makefile.in Wed Jun 11 14:00:52 2003
+@@ -332,10 +332,8 @@
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ f="`echo $$p | sed -e 's|^.*/||'`"; \
+ echo " $(lispLISP_INSTALL) $$d$$p $(DESTDIR)$(lispdir)/$$f"; \
+- $(lispLISP_INSTALL) $$d$$p $(DESTDIR)$(lispdir)/$$f; \
+ if test -f $${p}c; then \
+ echo " $(lispLISP_INSTALL) $${p}c $(DESTDIR)$(lispdir)/$${f}c"; \
+- $(lispLISP_INSTALL) $${p}c $(DESTDIR)$(lispdir)/$${f}c; \
+ else : ; fi; \
+ done; \
+ else : ; fi
diff --git a/devel/gettext-old/files/patch-gettext-tools_misc_po-mode.el b/devel/gettext-old/files/patch-gettext-tools_misc_po-mode.el
new file mode 100644
index 0000000..bcd527f
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-tools_misc_po-mode.el
@@ -0,0 +1,13 @@
+$FreeBSD$
+
+--- gettext-tools/misc/po-mode.el.orig Sun Jan 23 22:35:10 2000
++++ gettext-tools/misc/po-mode.el Sun Jan 23 22:35:39 2000
+@@ -330,7 +330,7 @@
+ :type 'face
+ :group 'po)
+
+-(defcustom po-gzip-uuencode-command "gzip -9 | uuencode -m"
++(defcustom po-gzip-uuencode-command "gzip -9 | uuencode"
+ "*The filter to use for preparing a mail invoice of the PO file.
+ Normally \"gzip -9 | uuencode -m\", remove the -9 for lesser compression,
+ or remove the -m if you are not using the GNU version of `uuencode'."
diff --git a/devel/gettext-old/files/patch-gettext-tools_src_Makefile.in b/devel/gettext-old/files/patch-gettext-tools_src_Makefile.in
new file mode 100644
index 0000000..a2c0d9d
--- /dev/null
+++ b/devel/gettext-old/files/patch-gettext-tools_src_Makefile.in
@@ -0,0 +1,39 @@
+$FreeBSD$
+
+--- gettext-tools/src/Makefile.in.orig Thu May 22 09:41:24 2003
++++ gettext-tools/src/Makefile.in Wed Jun 11 14:10:48 2003
+@@ -72,7 +72,7 @@
+ -DUSEJEXE=$(USEJEXE) \
+ -DGETTEXTJEXEDIR=\"$(pkglibdir)\" \
+ -DGETTEXTJAR=\"$(jardir)/gettext.jar\" \
+- -DLIBDIR=\"$(libdir)\" \
++ -DLIBDIR=\"$(prefix)/libdata\" \
+ -DGETTEXTDATADIR=\"$(pkgdatadir)\" \
+ -DPROJECTSDIR=\"$(projectsdir)\" @DEFS@
+
+@@ -336,7 +336,7 @@
+ # use iconv().
+ libgettextsrc_la_LDFLAGS = \
+ -release @VERSION@ \
+- ../lib/libgettextlib.la @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
++ ../lib/libgettextlib.la @LTLIBINTL@ @LTLIBICONV@ -no-undefined
+
+
+ # How to build libgettextpo.la.
+@@ -1316,11 +1316,11 @@
+ # Special rules for installation of auxiliary programs.
+
+ install-exec-local:
+- $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
+- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) hostname$(EXEEXT) $(DESTDIR)$(pkglibdir)/hostname$(EXEEXT)
+- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) urlget$(EXEEXT) $(DESTDIR)$(pkglibdir)/urlget$(EXEEXT)
+- $(INSTALL_SCRIPT) user-email $(DESTDIR)$(pkglibdir)/user-email
+- $(INSTALL_SCRIPT) $(srcdir)/project-id $(DESTDIR)$(pkglibdir)/project-id
++ $(mkinstalldirs) $(DESTDIR)$(prefix)/libdata/$(PACKAGE)
++ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) hostname$(EXEEXT) $(DESTDIR)$(prefix)/libdata/$(PACKAGE)/hostname$(EXEEXT)
++ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) urlget$(EXEEXT) $(DESTDIR)$(prefix)/libdata/$(PACKAGE)/urlget$(EXEEXT)
++ $(INSTALL_SCRIPT) user-email $(DESTDIR)$(prefix)/libdata/$(PACKAGE)/user-email
++ $(INSTALL_SCRIPT) $(srcdir)/project-id $(DESTDIR)$(prefix)/libdata/$(PACKAGE)/project-id
+
+ installdirs-local:
+ $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
diff --git a/devel/gettext-old/pkg-descr b/devel/gettext-old/pkg-descr
new file mode 100644
index 0000000..38165c0
--- /dev/null
+++ b/devel/gettext-old/pkg-descr
@@ -0,0 +1,7 @@
+This is the GNU gettext package. It is interesting for authors or
+maintainers of other packages or programs which they want to see
+internationalized. As one step the handling of messages in different
+languages should be implemented. For this task GNU gettext provides
+the needed tools and library functions.
+
+WWW: http://www.gnu.org/software/gettext/
diff --git a/devel/gettext-old/pkg-plist b/devel/gettext-old/pkg-plist
new file mode 100644
index 0000000..756c75ed
--- /dev/null
+++ b/devel/gettext-old/pkg-plist
@@ -0,0 +1,308 @@
+@comment $FreeBSD$
+bin/autopoint
+bin/gettext
+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/ngettext
+bin/xgettext
+include/autosprintf.h
+include/gettext-po.h
+include/libintl.h
+lib/libasprintf.a
+lib/libasprintf.so
+lib/libasprintf.so.0
+lib/libgettextlib-%%VERSION%%.so
+lib/libgettextlib.so
+lib/libgettextpo.a
+lib/libgettextpo.so
+lib/libgettextpo.so.0
+lib/libgettextsrc-%%VERSION%%.so
+lib/libgettextsrc.so
+lib/libintl.a
+lib/libintl.so
+lib/libintl.so.5
+libdata/gettext-tools/hostname
+libdata/gettext-tools/project-id
+libdata/gettext-tools/urlget
+libdata/gettext-tools/user-email
+share/aclocal/codeset.m4
+share/aclocal/gettext.m4
+share/aclocal/glibc21.m4
+share/aclocal/iconv.m4
+share/aclocal/intdiv0.m4
+share/aclocal/inttypes-pri.m4
+share/aclocal/inttypes.m4
+share/aclocal/inttypes_h.m4
+share/aclocal/isc-posix.m4
+share/aclocal/lcmessage.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
+share/aclocal/stdint_h.m4
+share/aclocal/uintmax_t.m4
+share/aclocal/ulonglong.m4
+%%DOCSDIR%%/autopoint.1.html
+%%DOCSDIR%%/bind_textdomain_codeset.3.html
+%%DOCSDIR%%/bindtextdomain.3.html
+%%DOCSDIR%%/gettext.1.html
+%%DOCSDIR%%/gettext.3.html
+%%DOCSDIR%%/gettext_1.html
+%%DOCSDIR%%/gettext_10.html
+%%DOCSDIR%%/gettext_11.html
+%%DOCSDIR%%/gettext_12.html
+%%DOCSDIR%%/gettext_13.html
+%%DOCSDIR%%/gettext_14.html
+%%DOCSDIR%%/gettext_15.html
+%%DOCSDIR%%/gettext_16.html
+%%DOCSDIR%%/gettext_17.html
+%%DOCSDIR%%/gettext_18.html
+%%DOCSDIR%%/gettext_19.html
+%%DOCSDIR%%/gettext_2.html
+%%DOCSDIR%%/gettext_20.html
+%%DOCSDIR%%/gettext_21.html
+%%DOCSDIR%%/gettext_22.html
+%%DOCSDIR%%/gettext_3.html
+%%DOCSDIR%%/gettext_4.html
+%%DOCSDIR%%/gettext_5.html
+%%DOCSDIR%%/gettext_6.html
+%%DOCSDIR%%/gettext_7.html
+%%DOCSDIR%%/gettext_8.html
+%%DOCSDIR%%/gettext_9.html
+%%DOCSDIR%%/gettext_foot.html
+%%DOCSDIR%%/gettext_toc.html
+%%DOCSDIR%%/gettextize.1.html
+%%DOCSDIR%%/javadoc1/AllNames.html
+%%DOCSDIR%%/javadoc1/gnu.gettext.GettextResource.html
+%%DOCSDIR%%/javadoc1/images/blue-ball-small.gif
+%%DOCSDIR%%/javadoc1/images/blue-ball.gif
+%%DOCSDIR%%/javadoc1/images/class-index.gif
+%%DOCSDIR%%/javadoc1/images/constructor-index.gif
+%%DOCSDIR%%/javadoc1/images/constructors.gif
+%%DOCSDIR%%/javadoc1/images/cyan-ball-small.gif
+%%DOCSDIR%%/javadoc1/images/cyan-ball.gif
+%%DOCSDIR%%/javadoc1/images/error-index.gif
+%%DOCSDIR%%/javadoc1/images/exception-index.gif
+%%DOCSDIR%%/javadoc1/images/green-ball-small.gif
+%%DOCSDIR%%/javadoc1/images/green-ball.gif
+%%DOCSDIR%%/javadoc1/images/interface-index.gif
+%%DOCSDIR%%/javadoc1/images/magenta-ball-small.gif
+%%DOCSDIR%%/javadoc1/images/magenta-ball.gif
+%%DOCSDIR%%/javadoc1/images/method-index.gif
+%%DOCSDIR%%/javadoc1/images/methods.gif
+%%DOCSDIR%%/javadoc1/images/package-index.gif
+%%DOCSDIR%%/javadoc1/images/red-ball-small.gif
+%%DOCSDIR%%/javadoc1/images/red-ball.gif
+%%DOCSDIR%%/javadoc1/images/variable-index.gif
+%%DOCSDIR%%/javadoc1/images/variables.gif
+%%DOCSDIR%%/javadoc1/images/yellow-ball-small.gif
+%%DOCSDIR%%/javadoc1/images/yellow-ball.gif
+%%DOCSDIR%%/javadoc1/packages.html
+%%DOCSDIR%%/javadoc1/tree.html
+%%DOCSDIR%%/javadoc2/allclasses-frame.html
+%%DOCSDIR%%/javadoc2/deprecated-list.html
+%%DOCSDIR%%/javadoc2/gnu/gettext/GettextResource.html
+%%DOCSDIR%%/javadoc2/gnu/gettext/package-frame.html
+%%DOCSDIR%%/javadoc2/gnu/gettext/package-summary.html
+%%DOCSDIR%%/javadoc2/gnu/gettext/package-tree.html
+%%DOCSDIR%%/javadoc2/help-doc.html
+%%DOCSDIR%%/javadoc2/index-all.html
+%%DOCSDIR%%/javadoc2/index.html
+%%DOCSDIR%%/javadoc2/overview-tree.html
+%%DOCSDIR%%/javadoc2/package-list
+%%DOCSDIR%%/javadoc2/packages.html
+%%DOCSDIR%%/javadoc2/serialized-form.html
+%%DOCSDIR%%/javadoc2/stylesheet.css
+%%DOCSDIR%%/msgattrib.1.html
+%%DOCSDIR%%/msgcat.1.html
+%%DOCSDIR%%/msgcmp.1.html
+%%DOCSDIR%%/msgcomm.1.html
+%%DOCSDIR%%/msgconv.1.html
+%%DOCSDIR%%/msgen.1.html
+%%DOCSDIR%%/msgexec.1.html
+%%DOCSDIR%%/msgfilter.1.html
+%%DOCSDIR%%/msgfmt.1.html
+%%DOCSDIR%%/msggrep.1.html
+%%DOCSDIR%%/msginit.1.html
+%%DOCSDIR%%/msgmerge.1.html
+%%DOCSDIR%%/msgunfmt.1.html
+%%DOCSDIR%%/msguniq.1.html
+%%DOCSDIR%%/ngettext.1.html
+%%DOCSDIR%%/ngettext.3.html
+%%DOCSDIR%%/textdomain.3.html
+%%DOCSDIR%%/xgettext.1.html
+share/doc/libasprintf/autosprintf.html
+share/emacs/site-lisp/po-compat.el
+share/emacs/site-lisp/po-mode.el
+share/gettext/ABOUT-NLS
+share/gettext/archive.tar.gz
+share/gettext/config.rpath
+share/gettext/gettext.h
+share/gettext/intl/COPYING.LIB-2.0
+share/gettext/intl/COPYING.LIB-2.1
+share/gettext/intl/ChangeLog
+share/gettext/intl/Makefile.in
+share/gettext/intl/VERSION
+share/gettext/intl/bindtextdom.c
+share/gettext/intl/config.charset
+share/gettext/intl/dcgettext.c
+share/gettext/intl/dcigettext.c
+share/gettext/intl/dcngettext.c
+share/gettext/intl/dgettext.c
+share/gettext/intl/dngettext.c
+share/gettext/intl/eval-plural.h
+share/gettext/intl/explodename.c
+share/gettext/intl/finddomain.c
+share/gettext/intl/gettext.c
+share/gettext/intl/gettextP.h
+share/gettext/intl/gmo.h
+share/gettext/intl/hash-string.h
+share/gettext/intl/intl-compat.c
+share/gettext/intl/l10nflist.c
+share/gettext/intl/libgnuintl.h.in
+share/gettext/intl/loadinfo.h
+share/gettext/intl/loadmsgcat.c
+share/gettext/intl/localcharset.c
+share/gettext/intl/localcharset.h
+share/gettext/intl/locale.alias
+share/gettext/intl/localealias.c
+share/gettext/intl/localename.c
+share/gettext/intl/log.c
+share/gettext/intl/ngettext.c
+share/gettext/intl/os2compat.c
+share/gettext/intl/os2compat.h
+share/gettext/intl/osdep.c
+share/gettext/intl/plural-exp.c
+share/gettext/intl/plural-exp.h
+share/gettext/intl/plural.c
+share/gettext/intl/plural.y
+share/gettext/intl/ref-add.sin
+share/gettext/intl/ref-del.sin
+share/gettext/intl/relocatable.c
+share/gettext/intl/relocatable.h
+share/gettext/intl/textdomain.c
+share/gettext/mkinstalldirs
+share/gettext/msgunfmt.tcl
+share/gettext/po/Makefile.in.in
+share/gettext/po/Makevars.template
+share/gettext/po/Rules-quot
+share/gettext/po/boldquot.sed
+share/gettext/po/en@boldquot.header
+share/gettext/po/en@quot.header
+share/gettext/po/insert-header.sin
+share/gettext/po/quot.sed
+share/gettext/po/remove-potcdate.sin
+share/gettext/projects/GNOME/team-address
+share/gettext/projects/GNOME/teams.html
+share/gettext/projects/GNOME/teams.url
+share/gettext/projects/GNOME/trigger
+share/gettext/projects/KDE/team-address
+share/gettext/projects/KDE/teams.html
+share/gettext/projects/KDE/teams.url
+share/gettext/projects/KDE/trigger
+share/gettext/projects/TP/team-address
+share/gettext/projects/TP/teams.html
+share/gettext/projects/TP/teams.url
+share/gettext/projects/TP/trigger
+share/gettext/projects/index
+share/gettext/projects/team-address
+share/locale/be/LC_MESSAGES/gettext-runtime.mo
+share/locale/be/LC_MESSAGES/gettext-tools.mo
+share/locale/ca/LC_MESSAGES/gettext-runtime.mo
+share/locale/ca/LC_MESSAGES/gettext-tools.mo
+share/locale/cs/LC_MESSAGES/gettext-runtime.mo
+share/locale/cs/LC_MESSAGES/gettext-tools.mo
+share/locale/da/LC_MESSAGES/gettext-runtime.mo
+share/locale/da/LC_MESSAGES/gettext-tools.mo
+share/locale/de/LC_MESSAGES/gettext-runtime.mo
+share/locale/de/LC_MESSAGES/gettext-tools.mo
+share/locale/el/LC_MESSAGES/gettext-runtime.mo
+share/locale/el/LC_MESSAGES/gettext-tools.mo
+share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
+share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
+share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
+share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
+share/locale/es/LC_MESSAGES/gettext-runtime.mo
+share/locale/es/LC_MESSAGES/gettext-tools.mo
+share/locale/et/LC_MESSAGES/gettext-runtime.mo
+share/locale/et/LC_MESSAGES/gettext-tools.mo
+share/locale/fi/LC_MESSAGES/gettext-runtime.mo
+share/locale/fi/LC_MESSAGES/gettext-tools.mo
+share/locale/fr/LC_MESSAGES/gettext-runtime.mo
+share/locale/fr/LC_MESSAGES/gettext-tools.mo
+share/locale/gl/LC_MESSAGES/gettext-runtime.mo
+share/locale/gl/LC_MESSAGES/gettext-tools.mo
+share/locale/id/LC_MESSAGES/gettext-runtime.mo
+share/locale/id/LC_MESSAGES/gettext-tools.mo
+share/locale/it/LC_MESSAGES/gettext-runtime.mo
+share/locale/it/LC_MESSAGES/gettext-tools.mo
+share/locale/ja/LC_MESSAGES/gettext-runtime.mo
+share/locale/ja/LC_MESSAGES/gettext-tools.mo
+share/locale/ko/LC_MESSAGES/gettext-runtime.mo
+share/locale/ko/LC_MESSAGES/gettext-tools.mo
+share/locale/locale.alias
+share/locale/nl/LC_MESSAGES/gettext-runtime.mo
+share/locale/nl/LC_MESSAGES/gettext-tools.mo
+share/locale/nn/LC_MESSAGES/gettext-runtime.mo
+share/locale/nn/LC_MESSAGES/gettext-tools.mo
+share/locale/no/LC_MESSAGES/gettext-runtime.mo
+share/locale/no/LC_MESSAGES/gettext-tools.mo
+share/locale/pl/LC_MESSAGES/gettext-runtime.mo
+share/locale/pl/LC_MESSAGES/gettext-tools.mo
+share/locale/pt/LC_MESSAGES/gettext-runtime.mo
+share/locale/pt/LC_MESSAGES/gettext-tools.mo
+share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
+share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
+share/locale/ru/LC_MESSAGES/gettext-runtime.mo
+share/locale/ru/LC_MESSAGES/gettext-tools.mo
+share/locale/sk/LC_MESSAGES/gettext-runtime.mo
+share/locale/sk/LC_MESSAGES/gettext-tools.mo
+share/locale/sl/LC_MESSAGES/gettext-runtime.mo
+share/locale/sl/LC_MESSAGES/gettext-tools.mo
+share/locale/sv/LC_MESSAGES/gettext-runtime.mo
+share/locale/sv/LC_MESSAGES/gettext-tools.mo
+share/locale/tr/LC_MESSAGES/gettext-runtime.mo
+share/locale/tr/LC_MESSAGES/gettext-tools.mo
+share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
+share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
+@dirrm share/gettext/projects/TP
+@dirrm share/gettext/projects/KDE
+@dirrm share/gettext/projects/GNOME
+@dirrm share/gettext/projects
+@dirrm share/gettext/po
+@dirrm share/gettext/intl
+@dirrm share/gettext
+@dirrm share/doc/libasprintf
+@dirrm %%DOCSDIR%%/javadoc2/gnu/gettext
+@dirrm %%DOCSDIR%%/javadoc2/gnu
+@dirrm %%DOCSDIR%%/javadoc2
+@dirrm %%DOCSDIR%%/javadoc1/images
+@dirrm %%DOCSDIR%%/javadoc1
+@dirrm share/doc/gettext
+@dirrm libdata/gettext-tools
+@unexec rmdir %D/share/locale/*/LC_MESSAGES 2>/dev/null || true
+@unexec rmdir %D/share/locale/* 2>/dev/null || true
+@unexec rmdir %D/share/locale 2>/dev/null || true
+@exec mkdir -p %%LOCALBASE%%/share/locale
+@unexec rmdir %%LOCALBASE%%/share/locale/*/LC_MESSAGES 2>/dev/null || true
+@unexec rmdir %%LOCALBASE%%/share/locale/* 2>/dev/null || true
+@unexec rmdir %%LOCALBASE%%/share/locale 2>/dev/null || true
+@exec mkdir -p %%X11BASE%%/share/locale
+@unexec rmdir %%X11BASE%%/share/locale/*/LC_MESSAGES 2>/dev/null || true
+@unexec rmdir %%X11BASE%%/share/locale/* 2>/dev/null || true
+@unexec rmdir %%X11BASE%%/share/locale 2>/dev/null || true
OpenPOWER on IntegriCloud