|
@@ -1,90 +1,97 @@
|
|
# Makefile for program source directory in GNU NLS utilities package.
|
|
# Makefile for program source directory in GNU NLS utilities package.
|
|
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <[email protected]>
|
|
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <[email protected]>
|
|
|
|
+# Copyright (C) 2004-2008 Rodney Dawes <[email protected]>
|
|
#
|
|
#
|
|
-# This file file be copied and used freely without restrictions. It can
|
|
|
|
-# be used in projects which are not available under the GNU Public License
|
|
|
|
|
|
+# This file may be copied and used freely without restrictions. It may
|
|
|
|
+# be used in projects which are not available under a GNU Public License,
|
|
# but which still want to provide support for the GNU gettext functionality.
|
|
# but which still want to provide support for the GNU gettext functionality.
|
|
-# Please note that the actual code is *not* freely available.
|
|
|
|
#
|
|
#
|
|
# - Modified by Owen Taylor <[email protected]> to use GETTEXT_PACKAGE
|
|
# - Modified by Owen Taylor <[email protected]> to use GETTEXT_PACKAGE
|
|
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
|
|
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
|
|
#
|
|
#
|
|
# - Modified by jacob berkman <[email protected]> to install
|
|
# - Modified by jacob berkman <[email protected]> to install
|
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
|
|
|
+#
|
|
|
|
+# - Modified by Rodney Dawes <[email protected]> for use with intltool
|
|
|
|
+#
|
|
|
|
+# We have the following line for use by intltoolize:
|
|
|
|
+# INTLTOOL_MAKEFILE
|
|
|
|
|
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
|
PACKAGE = @PACKAGE@
|
|
PACKAGE = @PACKAGE@
|
|
VERSION = @VERSION@
|
|
VERSION = @VERSION@
|
|
|
|
|
|
SHELL = @SHELL@
|
|
SHELL = @SHELL@
|
|
-@SET_MAKE@
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
+top_builddir = @top_builddir@
|
|
VPATH = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
|
|
prefix = @prefix@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
exec_prefix = @exec_prefix@
|
|
-datarootdir = @datarootdir@
|
|
|
|
datadir = @datadir@
|
|
datadir = @datadir@
|
|
|
|
+datarootdir = @datarootdir@
|
|
libdir = @libdir@
|
|
libdir = @libdir@
|
|
-localedir = $(libdir)/locale
|
|
|
|
-gnulocaledir = $(datadir)/locale
|
|
|
|
-gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
|
|
|
|
|
+DATADIRNAME = @DATADIRNAME@
|
|
|
|
+itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
|
subdir = po
|
|
subdir = po
|
|
|
|
+install_sh = @install_sh@
|
|
|
|
+# Automake >= 1.8 provides @mkdir_p@.
|
|
|
|
+# Until it can be supposed, use the safe fallback:
|
|
|
|
+mkdir_p = $(install_sh) -d
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL = @INSTALL@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
-MKINSTALLDIRS = mkdir -p
|
|
|
|
|
|
|
|
-CC = @CC@
|
|
|
|
-GENCAT = @GENCAT@
|
|
|
|
GMSGFMT = @GMSGFMT@
|
|
GMSGFMT = @GMSGFMT@
|
|
MSGFMT = @MSGFMT@
|
|
MSGFMT = @MSGFMT@
|
|
-MSGFMT_OPTS = @MSGFMT_OPTS@
|
|
|
|
XGETTEXT = @XGETTEXT@
|
|
XGETTEXT = @XGETTEXT@
|
|
-MSGMERGE = msgmerge
|
|
|
|
|
|
+INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
|
|
|
|
+INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
|
|
|
+MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
|
|
|
+GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
|
|
|
|
|
-DEFS = @DEFS@
|
|
|
|
-CFLAGS = @CFLAGS@
|
|
|
|
-CPPFLAGS = @CPPFLAGS@
|
|
|
|
|
|
+ALL_LINGUAS = @ALL_LINGUAS@
|
|
|
|
|
|
-INCLUDES = -I.. -I$(top_srcdir)/intl
|
|
|
|
|
|
+PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
|
|
|
|
|
|
-COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
|
|
|
|
|
+USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi)
|
|
|
|
|
|
-SOURCES =
|
|
|
|
-POFILES = @POFILES@
|
|
|
|
-GMOFILES = @GMOFILES@
|
|
|
|
-DISTFILES = LINGUAS ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \
|
|
|
|
-$(POFILES) $(GMOFILES) $(SOURCES)
|
|
|
|
|
|
+USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
|
|
|
+
|
|
|
|
+POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
|
|
|
|
+
|
|
|
|
+DISTFILES = Makefile.in.in POTFILES.in $(POFILES)
|
|
|
|
+EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS
|
|
|
|
|
|
POTFILES = \
|
|
POTFILES = \
|
|
|
|
+# This comment gets stripped out
|
|
|
|
|
|
-CATALOGS = @CATALOGS@
|
|
|
|
-CATOBJEXT = @CATOBJEXT@
|
|
|
|
-INSTOBJEXT = .mo
|
|
|
|
|
|
+CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
|
|
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES:
|
|
-.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
|
|
|
|
|
+.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
|
|
|
|
|
-.c.o:
|
|
|
|
- $(COMPILE) $<
|
|
|
|
|
|
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
|
|
+INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V))
|
|
|
|
+INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
+INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@;
|
|
|
|
|
|
.po.pox:
|
|
.po.pox:
|
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
|
- $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox
|
|
|
|
|
|
+ $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
|
|
|
|
|
|
.po.mo:
|
|
.po.mo:
|
|
- $(MSGFMT) -o $@ $<
|
|
|
|
|
|
+ $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $<
|
|
|
|
|
|
.po.gmo:
|
|
.po.gmo:
|
|
- $(AM_V_GEN) file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
|
|
|
|
- && rm -f $$file && $(GMSGFMT) $(MSGFMT_OPTS) -o $$file $<
|
|
|
|
|
|
+ $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \
|
|
|
|
+ && rm -f $$file && $(GMSGFMT) -o $$file $<
|
|
|
|
|
|
.po.cat:
|
|
.po.cat:
|
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
|
- && rm -f $@ && $(GENCAT) $@ $*.msg
|
|
|
|
|
|
+ && rm -f $@ && gencat $@ $*.msg
|
|
|
|
|
|
|
|
|
|
all: all-@USE_NLS@
|
|
all: all-@USE_NLS@
|
|
@@ -92,139 +99,97 @@ all: all-@USE_NLS@
|
|
all-yes: $(CATALOGS)
|
|
all-yes: $(CATALOGS)
|
|
all-no:
|
|
all-no:
|
|
|
|
|
|
-$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
|
|
|
- $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) \
|
|
|
|
- --msgid-bugs-address='http://bugzilla.gnome.org/enter_bug.cgi?product=glib&keywords=I18N+L10N&component=general' \
|
|
|
|
- --add-comments --keyword=_ --keyword=N_ \
|
|
|
|
- --keyword=C_:1c,2 \
|
|
|
|
- --keyword=NC_:1c,2 \
|
|
|
|
- --keyword=g_dcgettext:2 \
|
|
|
|
- --keyword=g_dngettext:2,3 \
|
|
|
|
- --keyword=g_dpgettext2:2c,3 \
|
|
|
|
- --flag=N_:1:pass-c-format \
|
|
|
|
- --flag=C_:2:pass-c-format \
|
|
|
|
- --flag=NC_:2:pass-c-format \
|
|
|
|
- --flag=g_dngettext:2:pass-c-format \
|
|
|
|
- --flag=g_strdup_printf:1:c-format \
|
|
|
|
- --flag=g_string_printf:2:c-format \
|
|
|
|
- --flag=g_string_append_printf:2:c-format \
|
|
|
|
- --flag=g_error_new:3:c-format \
|
|
|
|
- --flag=g_set_error:4:c-format \
|
|
|
|
- --flag=g_markup_printf_escaped:1:c-format \
|
|
|
|
- --flag=g_log:3:c-format \
|
|
|
|
- --flag=g_print:1:c-format \
|
|
|
|
- --flag=g_printerr:1:c-format \
|
|
|
|
- --flag=g_printf:1:c-format \
|
|
|
|
- --flag=g_fprintf:2:c-format \
|
|
|
|
- --flag=g_sprintf:2:c-format \
|
|
|
|
- --flag=g_snprintf:3:c-format \
|
|
|
|
- --flag=g_scanner_error:2:c-format \
|
|
|
|
- --flag=g_scanner_warn:2:c-format \
|
|
|
|
- $(POTFILES) \
|
|
|
|
- && test ! -f $(GETTEXT_PACKAGE).po \
|
|
|
|
- || ( rm -f $(srcdir)/$(GETTEXT_PACKAGE).pot \
|
|
|
|
- && mv $(GETTEXT_PACKAGE).po $(srcdir)/$(GETTEXT_PACKAGE).pot )
|
|
|
|
-
|
|
|
|
-install: install-exec install-data
|
|
|
|
-install-exec:
|
|
|
|
|
|
+$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
|
|
|
+ $(GENPOT)
|
|
|
|
+
|
|
|
|
+install: install-data
|
|
install-data: install-data-@USE_NLS@
|
|
install-data: install-data-@USE_NLS@
|
|
install-data-no: all
|
|
install-data-no: all
|
|
install-data-yes: all
|
|
install-data-yes: all
|
|
- $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
|
|
|
- catalogs='$(CATALOGS)'; \
|
|
|
|
- for cat in $$catalogs; do \
|
|
|
|
- cat=`basename $$cat`; \
|
|
|
|
- case "$$cat" in \
|
|
|
|
- *.gmo) destdir=$(gnulocaledir);; \
|
|
|
|
- *) destdir=$(localedir);; \
|
|
|
|
- esac; \
|
|
|
|
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
|
|
- dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
|
|
|
- $(MKINSTALLDIRS) $$dir; \
|
|
|
|
- if test -r $$cat; then \
|
|
|
|
- $(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
|
|
- echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
|
|
|
|
|
+ linguas="$(USE_LINGUAS)"; \
|
|
|
|
+ for lang in $$linguas; do \
|
|
|
|
+ dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
|
|
|
|
+ $(mkdir_p) $$dir; \
|
|
|
|
+ if test -r $$lang.gmo; then \
|
|
|
|
+ $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
|
|
|
+ echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
|
else \
|
|
else \
|
|
- $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
|
|
- echo "installing $(srcdir)/$$cat as" \
|
|
|
|
- "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
|
|
|
|
|
+ $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
|
|
|
+ echo "installing $(srcdir)/$$lang.gmo as" \
|
|
|
|
+ "$$dir/$(GETTEXT_PACKAGE).mo"; \
|
|
fi; \
|
|
fi; \
|
|
- if test -r $$cat.m; then \
|
|
|
|
- $(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
|
|
- echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
|
|
|
|
+ if test -r $$lang.gmo.m; then \
|
|
|
|
+ $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
|
|
|
+ echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
|
else \
|
|
else \
|
|
- if test -r $(srcdir)/$$cat.m ; then \
|
|
|
|
- $(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
|
|
- $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
|
|
- echo "installing $(srcdir)/$$cat as" \
|
|
|
|
- "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
|
|
|
|
+ if test -r $(srcdir)/$$lang.gmo.m ; then \
|
|
|
|
+ $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
|
|
|
|
+ $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
|
|
|
+ echo "installing $(srcdir)/$$lang.gmo.m as" \
|
|
|
|
+ "$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
|
else \
|
|
else \
|
|
true; \
|
|
true; \
|
|
fi; \
|
|
fi; \
|
|
fi; \
|
|
fi; \
|
|
done
|
|
done
|
|
- if test "$(PACKAGE)" = "glib"; then \
|
|
|
|
- $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
|
|
|
- $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
|
|
|
- $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
|
|
- else \
|
|
|
|
- : ; \
|
|
|
|
- fi
|
|
|
|
|
|
+
|
|
|
|
+# Empty stubs to satisfy archaic automake needs
|
|
|
|
+dvi info ctags tags CTAGS TAGS ID:
|
|
|
|
|
|
# Define this as empty until I found a useful application.
|
|
# Define this as empty until I found a useful application.
|
|
-installcheck:
|
|
|
|
|
|
+install-exec installcheck:
|
|
|
|
|
|
uninstall:
|
|
uninstall:
|
|
- catalogs='$(CATALOGS)'; \
|
|
|
|
- for cat in $$catalogs; do \
|
|
|
|
- cat=`basename $$cat`; \
|
|
|
|
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
|
|
- rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
|
|
- rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
|
|
- rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
|
|
- rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
|
|
|
|
+ linguas="$(USE_LINGUAS)"; \
|
|
|
|
+ for lang in $$linguas; do \
|
|
|
|
+ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
|
|
|
+ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
|
done
|
|
done
|
|
- if test "$(PACKAGE)" = "glib"; then \
|
|
|
|
- rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
|
|
- fi
|
|
|
|
|
|
|
|
-check: all
|
|
|
|
-
|
|
|
|
-dvi info tags TAGS ID:
|
|
|
|
|
|
+check: all $(GETTEXT_PACKAGE).pot
|
|
|
|
+ rm -f missing notexist
|
|
|
|
+ srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
|
|
|
|
+ if [ -r missing -o -r notexist ]; then \
|
|
|
|
+ exit 1; \
|
|
|
|
+ fi
|
|
|
|
|
|
mostlyclean:
|
|
mostlyclean:
|
|
- rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp
|
|
|
|
- rm -fr *.o
|
|
|
|
|
|
+ rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
|
|
|
+ rm -f .intltool-merge-cache
|
|
|
|
|
|
clean: mostlyclean
|
|
clean: mostlyclean
|
|
|
|
|
|
distclean: clean
|
|
distclean: clean
|
|
- rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
|
|
|
|
|
+ rm -f Makefile Makefile.in POTFILES stamp-it
|
|
|
|
+ rm -f *.mo *.msg *.cat *.cat.m *.gmo
|
|
|
|
|
|
maintainer-clean: distclean
|
|
maintainer-clean: distclean
|
|
@echo "This command is intended for maintainers to use;"
|
|
@echo "This command is intended for maintainers to use;"
|
|
@echo "it deletes files that may require special tools to rebuild."
|
|
@echo "it deletes files that may require special tools to rebuild."
|
|
- rm -f $(GMOFILES)
|
|
|
|
|
|
+ rm -f Makefile.in.in
|
|
|
|
|
|
-distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
|
|
|
|
|
+distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
|
dist distdir: $(DISTFILES)
|
|
dist distdir: $(DISTFILES)
|
|
dists="$(DISTFILES)"; \
|
|
dists="$(DISTFILES)"; \
|
|
|
|
+ extra_dists="$(EXTRA_DISTFILES)"; \
|
|
|
|
+ for file in $$extra_dists; do \
|
|
|
|
+ test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
|
|
|
|
+ done; \
|
|
for file in $$dists; do \
|
|
for file in $$dists; do \
|
|
- ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
|
|
|
- || cp -p $(srcdir)/$$file $(distdir); \
|
|
|
|
|
|
+ test -f $$file || file="$(srcdir)/$$file"; \
|
|
|
|
+ ln $$file $(distdir) 2> /dev/null \
|
|
|
|
+ || cp -p $$file $(distdir); \
|
|
done
|
|
done
|
|
|
|
|
|
update-po: Makefile
|
|
update-po: Makefile
|
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
|
tmpdir=`pwd`; \
|
|
tmpdir=`pwd`; \
|
|
- cd $(srcdir); \
|
|
|
|
- catalogs='$(CATALOGS)'; \
|
|
|
|
- for cat in $$catalogs; do \
|
|
|
|
- cat=`basename $$cat`; \
|
|
|
|
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
|
|
|
|
+ linguas="$(USE_LINGUAS)"; \
|
|
|
|
+ for lang in $$linguas; do \
|
|
echo "$$lang:"; \
|
|
echo "$$lang:"; \
|
|
- if $(MSGMERGE) $$lang.po $(GETTEXT_PACKAGE).pot -o $$tmpdir/$$lang.new.po; then \
|
|
|
|
- if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
|
|
|
|
|
|
+ result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
|
|
|
+ if $$result; then \
|
|
|
|
+ if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
|
|
rm -f $$tmpdir/$$lang.new.po; \
|
|
rm -f $$tmpdir/$$lang.new.po; \
|
|
else \
|
|
else \
|
|
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
|
|
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
|
|
@@ -236,32 +201,21 @@ update-po: Makefile
|
|
fi; \
|
|
fi; \
|
|
fi; \
|
|
fi; \
|
|
else \
|
|
else \
|
|
- echo "msgmerge for $$cat failed!"; \
|
|
|
|
|
|
+ echo "msgmerge for $$lang.gmo failed!"; \
|
|
rm -f $$tmpdir/$$lang.new.po; \
|
|
rm -f $$tmpdir/$$lang.new.po; \
|
|
fi; \
|
|
fi; \
|
|
done
|
|
done
|
|
|
|
|
|
-# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
|
|
|
-# and Intltool tags (enclosed in square brackets), and appending a full
|
|
|
|
-# relative path to them
|
|
|
|
-POTFILES: POTFILES.in
|
|
|
|
- ( if test 'x$(srcdir)' != 'x.'; then \
|
|
|
|
- posrcprefix='$(top_srcdir)/'; \
|
|
|
|
- else \
|
|
|
|
- posrcprefix="../"; \
|
|
|
|
- fi; \
|
|
|
|
- rm -f $@-t $@ \
|
|
|
|
- && (sed -e '/^#/d' \
|
|
|
|
- -e "s/^\[.*\] +//" \
|
|
|
|
- -e '/^[ ]*$$/d' \
|
|
|
|
- -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/[email protected] \
|
|
|
|
- | sed -e '$$s/\\$$//') > $@-t \
|
|
|
|
- && chmod a-w $@-t \
|
|
|
|
- && mv $@-t $@ )
|
|
|
|
-
|
|
|
|
-Makefile: Makefile.in.in ../config.status POTFILES
|
|
|
|
- cd .. \
|
|
|
|
- && $(SHELL) ./config.status $(subdir)/[email protected]
|
|
|
|
|
|
+Makefile POTFILES: stamp-it
|
|
|
|
+ @if test ! -f $@; then \
|
|
|
|
+ rm -f stamp-it; \
|
|
|
|
+ $(MAKE) stamp-it; \
|
|
|
|
+ fi
|
|
|
|
+
|
|
|
|
+stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
|
|
|
+ cd $(top_builddir) \
|
|
|
|
+ && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
|
|
|
|
+ $(SHELL) ./config.status
|
|
|
|
|
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|