initial import
[vuplus_webkit] / Source / WebKit / gtk / po / GNUmakefile.am
1 # Gettext stuff; based on the contents of the Makefile.in.in file
2 # distributed with GNU Gettext.
3 #
4 # The original copyright notice follows:
5 #
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>
8 #
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
12 # functionality.
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.
15 #
16 # Origin: gettext-0.17
17
18 DOMAIN := $(GETTEXT_PACKAGE)
19
20 MSGFMT := $(shell which msgfmt)
21
22 XGETTEXT := $(shell which xgettext)
23
24 MSGMERGE := $(shell which msgmerge)
25
26 MSGMERGE_UPDATE := $(MSGMERGE) --update
27
28 POFILES += $(shell ls $(srcdir)/Source/WebKit/gtk/po/*.po)
29
30 MOFILES += $(shell echo $(POFILES) | tr ' ' '\n' | sed "s,^$(srcdir)/,,g" | sed 's/\.po/.mo/g')
31
32 .po.mo:
33         test -d Source/WebKit/gtk/po/ || mkdir -p Source/WebKit/gtk/po/
34         @echo "$(MSGFMT) -c -o $@ $<"; \
35         $(MSGFMT) -c -o $@ $<
36
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).
42
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
50 # changed.
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; \
58         }
59
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
63         package_gnu=''; \
64         if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
65           msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
66         else \
67           msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
68         fi; \
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 \
77             ;; \
78           *) \
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 \
87             ;; \
88         esac
89
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
95
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             test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir)/Source/WebKit/gtk/po && "; \
103             echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
104             pushd $(srcdir)/Source/WebKit/gtk/po && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \
105             popd; \
106           else \
107             $(MAKE) $${lang}.po-create; \
108           fi; \
109         done
110
111 update-po: GNUmakefile
112         $(MAKE) $(DOMAIN).pot-update
113         $(MAKE) update-po-files
114         $(MAKE) $(MOFILES)
115
116 .nop.po-create:
117         @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
118         echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
119         exit 1
120
121 # clean rules
122 CLEANFILES += \
123         $(top_builddir)/stamp-po
124
125 MAINTAINERCLEANFILES += \
126         $(MOFILES) \
127         $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot
128
129 DISTCLEANFILES += \
130         $(MOFILES) \
131         $(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot
132
133 po-install-data-local: all
134         $(mkdir_p) $(DESTDIR)$(datadir)
135         @catalogs='$(MOFILES)'; \
136         for cat in $$catalogs; do \
137           cat=`basename $$cat`; \
138           lang=`echo $$cat | sed -e 's/\.mo$$//'`; \
139           dir=$(localedir)/$$lang/LC_MESSAGES; \
140           $(mkdir_p) $(DESTDIR)$$dir; \
141           if test -r Source/WebKit/gtk/po/$$cat; then realcat=Source/WebKit/gtk/po/$$cat; else realcat=$(srcdir)/$$cat; fi; \
142           $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
143           echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
144           for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
145             if test -n "$$lc"; then \
146               if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
147                 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
148                 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
149                 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
150                 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
151                  for file in *; do \
152                    if test -f $$file; then \
153                      ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
154                    fi; \
155                  done); \
156                 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
157               else \
158                 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
159                   :; \
160                 else \
161                   rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
162                   mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
163                 fi; \
164               fi; \
165               rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
166               ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
167               ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
168               cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
169               echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \
170             fi; \
171           done; \
172         done
173
174 po-installdirs-data-local:
175         $(mkdir_p) $(DESTDIR)$(datadir)
176         @catalogs='$(MOFILES)'; \
177         for cat in $$catalogs; do \
178           cat=`basename $$cat`; \
179           lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
180           dir=$(localedir)/$$lang/LC_MESSAGES; \
181           $(mkdir_p) $(DESTDIR)$$dir; \
182           for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
183             if test -n "$$lc"; then \
184               if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
185                 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
186                 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
187                 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
188                 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
189                  for file in *; do \
190                    if test -f $$file; then \
191                      ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
192                    fi; \
193                  done); \
194                 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
195               else \
196                 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
197                   :; \
198                 else \
199                   rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
200                   mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
201                 fi; \
202               fi; \
203             fi; \
204           done; \
205         done
206
207 po-uninstall-local:
208         catalogs='$(MOFILES)'; \
209         for cat in $$catalogs; do \
210           cat=`basename $$cat`; \
211           lang=`echo $$cat | sed -e 's/\.mo$$//'`; \
212           for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
213             rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
214           done; \
215         done