1 # Gettext stuff; based on the contents of the Makefile.in.in file
2 # distributed with GNU Gettext.
4 # The original copyright notice follows:
6 # Makefile for PO directory in any package using GNU gettext.
7 # Copyright (C) 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
9 # This file can be copied and used freely without restrictions. It can
10 # be used in projects which are not available under the GNU General Public
11 # License but which still want to provide support for the GNU gettext
13 # Please note that the actual code of GNU gettext is covered by the GNU
14 # General Public License and is *not* in the public domain.
16 # Origin: gettext-0.17
18 DOMAIN := $(GETTEXT_PACKAGE)
20 MSGFMT := $(shell which msgfmt)
22 XGETTEXT := $(shell which xgettext)
24 MSGMERGE := $(shell which msgmerge)
26 MSGMERGE_UPDATE := $(MSGMERGE) --update
28 POFILES += $(shell ls $(srcdir)/Source/WebKit/gtk/po/*.po)
30 MOFILES += $(shell echo $(POFILES) | tr ' ' '\n' | sed "s,^$(srcdir)/,,g" | sed 's/\.po/.mo/g')
33 test -d Source/WebKit/gtk/po/ || mkdir -p Source/WebKit/gtk/po/
34 @echo "$(MSGFMT) -c -o $@ $<"; \
37 # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no
38 # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because
39 # we don't want to bother translators with empty POT files). We assume that
40 # LINGUAS is empty in this case, i.e. $(POFILES) and $(MOFILES) are empty.
41 # In this case, stamp-po is a nop (i.e. a phony target).
43 # stamp-po is a timestamp denoting the last time at which the CATALOGS have
44 # been loosely updated. Its purpose is that when a developer or translator
45 # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,
46 # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent
47 # invocations of "make" will do nothing. This timestamp would not be necessary
48 # if updating the $(CATALOGS) would always touch them; however, the rule for
49 # $(POFILES) has been designed to not touch files that don't need to be
51 stamp-po: $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot $(MOFILES)
52 test ! -f $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot || \
53 test -z "$(MOFILES)" || $(MAKE) $(MOFILES)
54 @test ! -f $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot || { \
55 echo "touch stamp-po" && \
56 echo timestamp > stamp-poT && \
57 mv stamp-poT stamp-po; \
60 # This target rebuilds $(DOMAIN).pot; it is an expensive operation.
61 # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
62 $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/Source/WebKit/gtk/po/POTFILES
64 if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
65 msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
67 msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
69 case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
70 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
71 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(srcdir) \
72 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
73 --files-from=$(srcdir)/Source/WebKit/gtk/po/POTFILES \
74 --copyright-holder='$(COPYRIGHT_HOLDER)' \
75 --msgid-bugs-address="$$msgid_bugs_address" \
76 --keyword=_ --keyword=N_ -o $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot \
79 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(srcdir) \
80 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
81 --files-from=$(srcdir)/Source/WebKit/gtk/po/POTFILES \
82 --copyright-holder='$(COPYRIGHT_HOLDER)' \
83 --package-name="$${package_gnu}@PACKAGE@" \
84 --package-version='@VERSION@' \
85 --msgid-bugs-address="$$msgid_bugs_address" \
86 --keyword=_ --keyword=N_ -o $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot \
90 # This rule has no dependencies: we don't need to update $(DOMAIN).pot at
91 # every "make" invocation, only create it when it is missing.
92 # Only "make $(DOMAIN).pot-update" or "make dist" will force an update.
93 $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot:
94 $(MAKE) $(DOMAIN).pot-update
96 # This target rebuilds a PO file if $(DOMAIN).pot has changed.
97 # Note that a PO file is not touched if it doesn't need to be changed.
98 update-po-files: $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot
99 @for pofile in $(POFILES); do \
100 lang=`echo $$pofile | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
101 if test -f "$(srcdir)/Source/WebKit/gtk/po/$${lang}.po"; then \
102 echo "$${cdcmd}$(MSGMERGE_UPDATE) $(top_srcdir)/Source/WebKit/gtk/po/$${lang}.po $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot"; \
103 $(MSGMERGE_UPDATE) $(top_srcdir)/Source/WebKit/gtk/po/$${lang}.po $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot; \
105 $(MAKE) $${lang}.po-create; \
109 update-po: GNUmakefile
110 $(MAKE) $(DOMAIN).pot-update
111 $(MAKE) update-po-files
115 @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
116 echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
121 $(top_builddir)/stamp-po
123 MAINTAINERCLEANFILES += \
125 $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot
129 $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot
131 po-install-data-local: all
132 $(mkdir_p) $(DESTDIR)$(datadir)
133 @catalogs='$(MOFILES)'; \
134 for cat in $$catalogs; do \
135 cat=`basename $$cat`; \
136 lang=`echo $$cat | sed -e 's/\.mo$$//'`; \
137 dir=$(localedir)/$$lang/LC_MESSAGES; \
138 $(mkdir_p) $(DESTDIR)$$dir; \
139 if test -r Source/WebKit/gtk/po/$$cat; then realcat=Source/WebKit/gtk/po/$$cat; else realcat=$(srcdir)/$$cat; fi; \
140 $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
141 echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
142 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
143 if test -n "$$lc"; then \
144 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
145 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
146 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
147 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
148 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
150 if test -f $$file; then \
151 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
154 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
156 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
159 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
160 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
163 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
164 ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
165 ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
166 cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
167 echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \
172 po-installdirs-data-local:
173 $(mkdir_p) $(DESTDIR)$(datadir)
174 @catalogs='$(MOFILES)'; \
175 for cat in $$catalogs; do \
176 cat=`basename $$cat`; \
177 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
178 dir=$(localedir)/$$lang/LC_MESSAGES; \
179 $(mkdir_p) $(DESTDIR)$$dir; \
180 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
181 if test -n "$$lc"; then \
182 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
183 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
184 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
185 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
186 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
188 if test -f $$file; then \
189 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
192 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
194 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
197 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
198 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
206 catalogs='$(MOFILES)'; \
207 for cat in $$catalogs; do \
208 cat=`basename $$cat`; \
209 lang=`echo $$cat | sed -e 's/\.mo$$//'`; \
210 for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
211 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \