1# Example for use of GNU gettext. 2# Copyright (C) 2003-2006 Free Software Foundation, Inc. 3# This file is in the public domain. 4# 5# Makefile configuration - processed by automake. 6 7# List of files which contain translatable strings. 8POTFILES = \ 9 hello.tcl 10 11# Usually the message domain is the same as the package name. 12DOMAIN = $(PACKAGE) 13 14# These options get passed to xgettext. 15XGETTEXT_OPTIONS = --keyword=_ --flag=_:1:pass-tcl-format 16 17# This is the copyright holder that gets inserted into the header of the 18# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 19# package. (Note that the msgstr strings, extracted from the package's 20# sources, belong to the copyright holder of the package.) Translators are 21# expected to transfer the copyright for their translations to this person 22# or entity, or to disclaim their copyright. The empty string stands for 23# the public domain; in this case the translators are expected to disclaim 24# their copyright. 25COPYRIGHT_HOLDER = Yoyodyne, Inc. 26 27# This is the email address or URL to which the translators shall report 28# bugs in the untranslated strings: 29# - Strings which are not entire sentences, see the maintainer guidelines 30# in the GNU gettext documentation, section 'Preparing Strings'. 31# - Strings which use unclear terms or require additional context to be 32# understood. 33# - Strings which make invalid assumptions about notation of date, time or 34# money. 35# - Pluralisation problems. 36# - Incorrect English spelling. 37# - Incorrect formatting. 38# It can be your email address, or a mailing list address where translators 39# can write to without being subscribed, or the URL of a web page through 40# which the translators can contact you. 41MSGID_BUGS_ADDRESS = bug-gnu-gettext@gnu.org 42 43MSGMERGE = msgmerge 44MSGMERGE_UPDATE = @MSGMERGE@ --update 45MSGINIT = msginit 46MSGCONV = msgconv 47MSGFILTER = msgfilter 48 49# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) 50POTFILES_DEPS = @POTFILES_DEPS@ 51 52# This is computed as $(foreach lang, $(LINGUAS), $(srcdir)/$(lang).po) 53POFILES = @POFILES@ 54# This is computed as $(foreach lang, $(LINGUAS), $(lang).po-update) 55UPDATEPOFILES = @UPDATEPOFILES@ 56# This is computed as $(foreach lang, $(LINGUAS), $(lang).nop) 57DUMMYPOFILES = @DUMMYPOFILES@ 58# This is computed as $(foreach lang, $(LINGUAS), $(srcdir)/$(frob $(lang)).msg) 59MSGFILES = @MSGFILES@ 60 61# This is computed as 62# $(foreach lang, user-specified subset of $(LINGUAS), $(frob $(lang)).msg) 63CATALOGS = @TCLCATALOGS@ 64 65SUFFIXES = .sed .sin .nop .po-create .po-update 66 67.sin.sed: 68 sed -e '/^#/d' $< > t-$@ 69 mv t-$@ $@ 70 71 72all-local: all-local-@USE_NLS@ 73 74all-local-yes: stamp-po 75all-local-no: 76 77# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no 78# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because 79# we don't want to bother translators with empty POT files). We assume that 80# LINGUAS is empty in this case, i.e. $(POFILES) and $(MSGFILES) are empty. 81# In this case, stamp-po is a nop (i.e. a phony target). 82 83# stamp-po is a timestamp denoting the last time at which the CATALOGS have 84# been loosely updated. Its purpose is that when a developer or translator 85# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, 86# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent 87# invocations of "make" will do nothing. This timestamp would not be necessary 88# if updating the $(CATALOGS) would always touch them; however, the rule for 89# $(POFILES) has been designed to not touch files that don't need to be 90# changed. 91stamp-po: $(srcdir)/$(DOMAIN).pot 92 test ! -f $(srcdir)/$(DOMAIN).pot || \ 93 test -z "$(MSGFILES)" || $(MAKE) $(MSGFILES) 94 @test ! -f $(srcdir)/$(DOMAIN).pot || { \ 95 echo "touch stamp-po" && \ 96 echo timestamp > stamp-poT && \ 97 mv stamp-poT stamp-po; \ 98 } 99 100# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', 101# otherwise packages like GCC can not be built if only parts of the source 102# have been downloaded. 103 104# This target rebuilds $(DOMAIN).pot; it is an expensive operation. 105# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. 106$(DOMAIN).pot-update: $(POTFILES_DEPS) remove-potcdate.sed 107 if test -n '$(MSGID_BUGS_ADDRESS)'; then \ 108 msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ 109 else \ 110 msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ 111 fi; \ 112 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ 113 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ 114 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 115 --msgid-bugs-address="$$msgid_bugs_address" \ 116 $(POTFILES) 117 test ! -f $(DOMAIN).po || { \ 118 if test -f $(srcdir)/$(DOMAIN).pot; then \ 119 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ 120 sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ 121 if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ 122 rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ 123 else \ 124 rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ 125 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ 126 fi; \ 127 else \ 128 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ 129 fi; \ 130 } 131 132# This rule has no dependencies: we don't need to update $(DOMAIN).pot at 133# every "make" invocation, only create it when it is missing. 134# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. 135$(srcdir)/$(DOMAIN).pot: 136 $(MAKE) $(DOMAIN).pot-update 137 138# This target rebuilds a PO file if $(DOMAIN).pot has changed. 139# Note that a PO file is not touched if it doesn't need to be changed. 140$(POFILES): $(srcdir)/$(DOMAIN).pot 141 @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ 142 if test -f "$(srcdir)/$${lang}.po"; then \ 143 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 144 echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ 145 cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ 146 else \ 147 $(MAKE) $${lang}.po-create; \ 148 fi 149 150 151install-data-local: install-data-local-@USE_NLS@ 152install-data-local-no: all-local 153install-data-local-yes: all-local 154 $(mkdir_p) $(DESTDIR)$(pkgdatadir)/msgs 155 @catalogs='$(CATALOGS)'; \ 156 for cat in $$catalogs; do \ 157 cat=`basename $$cat`; \ 158 if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ 159 $(INSTALL_DATA) $$realcat $(DESTDIR)$(pkgdatadir)/msgs/$$cat; \ 160 echo "installing $$realcat as $(DESTDIR)$(pkgdatadir)/msgs/$$cat"; \ 161 done 162 163installdirs-local: installdirs-local-@USE_NLS@ 164installdirs-local-no: 165installdirs-local-yes: 166 $(mkdir_p) $(DESTDIR)$(pkgdatadir)/msgs 167 168uninstall-local: uninstall-local-@USE_NLS@ 169uninstall-local-no: 170uninstall-local-yes: 171 catalogs='$(CATALOGS)'; \ 172 for cat in $$catalogs; do \ 173 cat=`basename $$cat`; \ 174 rm -f $(DESTDIR)$(pkgdatadir)/msgs/$$cat; \ 175 done 176 177html ID: 178 179MOSTLYCLEANFILES = 180MOSTLYCLEANFILES += remove-potcdate.sed 181MOSTLYCLEANFILES += stamp-poT 182MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po 183MOSTLYCLEANFILES += *.o 184 185MAINTAINERCLEANFILES = stamp-po $(MSGFILES) 186 187EXTRA_DIST = remove-potcdate.sin LINGUAS $(POFILES) $(MSGFILES) 188 189# Hidden from automake, but really activated. Works around an automake-1.5 bug. 190#distdir: distdir1 191distdir1: 192 $(MAKE) update-po 193 if test -f $(srcdir)/$(DOMAIN).pot; then \ 194 for file in $(DOMAIN).pot stamp-po; do \ 195 if test -f $$file; then d=.; else d=$(srcdir); fi; \ 196 cp -p $$d/$$file $(distdir)/$$file || exit 1; \ 197 done; \ 198 fi 199 200update-po: Makefile 201 $(MAKE) $(DOMAIN).pot-update 202 test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) 203 $(MAKE) update-msg 204 205# General rule for creating PO files. 206 207.nop.po-create: 208 @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ 209 echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ 210 exit 1 211 212# General rule for updating PO files. 213 214.nop.po-update: 215 @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ 216 tmpdir=`pwd`; \ 217 echo "$$lang:"; \ 218 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 219 echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ 220 cd $(srcdir); \ 221 if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ 222 if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ 223 rm -f $$tmpdir/$$lang.new.po; \ 224 else \ 225 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ 226 :; \ 227 else \ 228 echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ 229 exit 1; \ 230 fi; \ 231 fi; \ 232 else \ 233 echo "msgmerge for $$lang.po failed!" 1>&2; \ 234 rm -f $$tmpdir/$$lang.new.po; \ 235 fi 236 237$(DUMMYPOFILES): 238 239update-msg: Makefile $(MSGFILES) 240 @: 241