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 18DOMAIN := $(GETTEXT_PACKAGE) 19 20MSGFMT := $(shell which msgfmt) 21 22XGETTEXT := $(shell which xgettext) 23 24MSGMERGE := $(shell which msgmerge) 25 26MSGMERGE_UPDATE := $(MSGMERGE) --update 27 28POFILES += $(shell ls $(srcdir)/Source/WebKit/gtk/po/*.po) 29 30MOFILES += $(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. 51stamp-po: $(srcdir)/Source/WebKit/gtk/po/$(DOMAIN).pot $(MOFILES) 52 test ! -f $(srcdir)/Source/WebKit/gtk/po/$(DOMAIN).pot || \ 53 test -z "$(MOFILES)" || $(MAKE) $(MOFILES) 54 @test ! -f $(srcdir)/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 $(srcdir)/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 $(srcdir)/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$(srcdir)/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. 98update-po-files: $(srcdir)/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 111update-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 122CLEANFILES += \ 123 $(top_builddir)/stamp-po 124 125MAINTAINERCLEANFILES += \ 126 $(MOFILES) 127 128DISTCLEANFILES += \ 129 $(MOFILES) 130 131po-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 && \ 149 for file in *; do \ 150 if test -f $$file; then \ 151 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 152 fi; \ 153 done); \ 154 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 155 else \ 156 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ 157 :; \ 158 else \ 159 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ 160 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 161 fi; \ 162 fi; \ 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"; \ 168 fi; \ 169 done; \ 170 done 171 172po-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 && \ 187 for file in *; do \ 188 if test -f $$file; then \ 189 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 190 fi; \ 191 done); \ 192 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 193 else \ 194 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ 195 :; \ 196 else \ 197 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ 198 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 199 fi; \ 200 fi; \ 201 fi; \ 202 done; \ 203 done 204 205po-uninstall-local: 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; \ 212 done; \ 213 done 214