ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/po/Makefile.in.in
Revision: 1.1
Committed: Thu Jul 19 08:24:56 2007 UTC (16 years, 10 months ago) by pippijn
Branch: MAIN
CVS Tags: HEAD
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# User Rev Content
1 pippijn 1.1 # Makefile for PO directory in any package using GNU gettext.
2     # Copyright © 1995-1997, 2000-2006 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
3     #
4     # This file can be copied and used freely without restrictions. It can
5     # be used in projects which are not available under the GNU General Public
6     # License but which still want to provide support for the GNU gettext
7     # functionality.
8     # Please note that the actual code of GNU gettext is covered by the GNU
9     # General Public License and is *not* in the public domain.
10     #
11     # Origin: gettext-0.16
12    
13     PACKAGE = @PACKAGE@
14     VERSION = @VERSION@
15     PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
16    
17     SHELL = /bin/sh
18     @SET_MAKE@
19    
20     srcdir = @srcdir@
21     top_srcdir = @top_srcdir@
22     VPATH = @srcdir@
23    
24     prefix = @prefix@
25     exec_prefix = @exec_prefix@
26     datarootdir = @datarootdir@
27     datadir = @datadir@
28     localedir = @localedir@
29     gettextsrcdir = $(datadir)/gettext/po
30    
31     INSTALL = @INSTALL@
32     INSTALL_DATA = @INSTALL_DATA@
33    
34     # We use $(mkdir_p).
35     # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as
36     # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions,
37     # @install_sh@ does not start with $(SHELL), so we add it.
38     # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined
39     # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake
40     # versions, $(mkinstalldirs) and $(install_sh) are unused.
41     mkinstalldirs = $(SHELL) @install_sh@ -d
42     install_sh = $(SHELL) @install_sh@
43     MKDIR_P = @MKDIR_P@
44     mkdir_p = @mkdir_p@
45    
46     GMSGFMT_ = @GMSGFMT@
47     GMSGFMT_no = @GMSGFMT@
48     GMSGFMT_yes = @GMSGFMT_015@
49     GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))
50     MSGFMT_ = @MSGFMT@
51     MSGFMT_no = @MSGFMT@
52     MSGFMT_yes = @MSGFMT_015@
53     MSGFMT = $(MSGFMT_$(USE_MSGCTXT))
54     XGETTEXT_ = @XGETTEXT@
55     XGETTEXT_no = @XGETTEXT@
56     XGETTEXT_yes = @XGETTEXT_015@
57     XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))
58     MSGMERGE = msgmerge
59     MSGMERGE_UPDATE = @MSGMERGE@ --update
60     MSGINIT = msginit
61     MSGCONV = msgconv
62     MSGFILTER = msgfilter
63    
64     POFILES = @POFILES@
65     GMOFILES = @GMOFILES@
66     UPDATEPOFILES = @UPDATEPOFILES@
67     DUMMYPOFILES = @DUMMYPOFILES@
68     DISTFILES.common = Makefile.in.in remove-potcdate.sin \
69     $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
70     DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \
71     $(POFILES) $(GMOFILES) \
72     $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
73    
74     POTFILES = \
75    
76     CATALOGS = @CATALOGS@
77    
78     # Makevars gets inserted here. (Don't remove this line!)
79    
80     .SUFFIXES:
81     .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update
82    
83     .po.mo:
84     @echo "$(MSGFMT) -c -o $@ $<"; \
85     $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@
86    
87     .po.gmo:
88     @lang=`echo $* | sed -e 's,.*/,,'`; \
89     test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
90     echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \
91     cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo
92    
93     .sin.sed:
94     sed -e '/^#/d' $< > t-$@
95     mv t-$@ $@
96    
97    
98     all: all-@USE_NLS@
99    
100     all-yes: stamp-po
101     all-no:
102    
103     # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no
104     # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because
105     # we don't want to bother translators with empty POT files). We assume that
106     # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.
107     # In this case, stamp-po is a nop (i.e. a phony target).
108    
109     # stamp-po is a timestamp denoting the last time at which the CATALOGS have
110     # been loosely updated. Its purpose is that when a developer or translator
111     # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,
112     # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent
113     # invocations of "make" will do nothing. This timestamp would not be necessary
114     # if updating the $(CATALOGS) would always touch them; however, the rule for
115     # $(POFILES) has been designed to not touch files that don't need to be
116     # changed.
117     stamp-po: $(srcdir)/$(DOMAIN).pot
118     test ! -f $(srcdir)/$(DOMAIN).pot || \
119     test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES)
120     @test ! -f $(srcdir)/$(DOMAIN).pot || { \
121     echo "touch stamp-po" && \
122     echo timestamp > stamp-poT && \
123     mv stamp-poT stamp-po; \
124     }
125    
126     # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
127     # otherwise packages like GCC can not be built if only parts of the source
128     # have been downloaded.
129    
130     # This target rebuilds $(DOMAIN).pot; it is an expensive operation.
131     # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
132     $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
133     if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
134     msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
135     else \
136     msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
137     fi; \
138     $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
139     --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
140     --files-from=$(srcdir)/POTFILES.in \
141     --copyright-holder='$(COPYRIGHT_HOLDER)' \
142     --msgid-bugs-address="$$msgid_bugs_address"
143     test ! -f $(DOMAIN).po || { \
144     if test -f $(srcdir)/$(DOMAIN).pot; then \
145     sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
146     sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \
147     if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \
148     rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \
149     else \
150     rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
151     mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
152     fi; \
153     else \
154     mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
155     fi; \
156     }
157    
158     # This rule has no dependencies: we don't need to update $(DOMAIN).pot at
159     # every "make" invocation, only create it when it is missing.
160     # Only "make $(DOMAIN).pot-update" or "make dist" will force an update.
161     $(srcdir)/$(DOMAIN).pot:
162     $(MAKE) $(DOMAIN).pot-update
163    
164     # This target rebuilds a PO file if $(DOMAIN).pot has changed.
165     # Note that a PO file is not touched if it doesn't need to be changed.
166     $(POFILES): $(srcdir)/$(DOMAIN).pot
167     @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
168     if test -f "$(srcdir)/$${lang}.po"; then \
169     test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
170     echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
171     cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \
172     else \
173     $(MAKE) $${lang}.po-create; \
174     fi
175    
176    
177     install: install-exec install-data
178     install-exec:
179     install-data: install-data-@USE_NLS@
180     if test "$(PACKAGE)" = "gettext-tools"; then \
181     $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
182     for file in $(DISTFILES.common) Makevars.template; do \
183     $(INSTALL_DATA) $(srcdir)/$$file \
184     $(DESTDIR)$(gettextsrcdir)/$$file; \
185     done; \
186     for file in Makevars; do \
187     rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
188     done; \
189     else \
190     : ; \
191     fi
192     install-data-no: all
193     install-data-yes: all
194     $(mkdir_p) $(DESTDIR)$(datadir)
195     @catalogs='$(CATALOGS)'; \
196     for cat in $$catalogs; do \
197     cat=`basename $$cat`; \
198     lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
199     dir=$(localedir)/$$lang/LC_MESSAGES; \
200     $(mkdir_p) $(DESTDIR)$$dir; \
201     if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \
202     $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
203     echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
204     for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
205     if test -n "$$lc"; then \
206     if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
207     link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
208     mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
209     mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
210     (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
211     for file in *; do \
212     if test -f $$file; then \
213     ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
214     fi; \
215     done); \
216     rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
217     else \
218     if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
219     :; \
220     else \
221     rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
222     mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
223     fi; \
224     fi; \
225     rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
226     ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
227     ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
228     cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
229     echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \
230     fi; \
231     done; \
232     done
233    
234     install-strip: install
235    
236     installdirs: installdirs-exec installdirs-data
237     installdirs-exec:
238     installdirs-data: installdirs-data-@USE_NLS@
239     if test "$(PACKAGE)" = "gettext-tools"; then \
240     $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
241     else \
242     : ; \
243     fi
244     installdirs-data-no:
245     installdirs-data-yes:
246     $(mkdir_p) $(DESTDIR)$(datadir)
247     @catalogs='$(CATALOGS)'; \
248     for cat in $$catalogs; do \
249     cat=`basename $$cat`; \
250     lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
251     dir=$(localedir)/$$lang/LC_MESSAGES; \
252     $(mkdir_p) $(DESTDIR)$$dir; \
253     for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
254     if test -n "$$lc"; then \
255     if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
256     link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
257     mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
258     mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
259     (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
260     for file in *; do \
261     if test -f $$file; then \
262     ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
263     fi; \
264     done); \
265     rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
266     else \
267     if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
268     :; \
269     else \
270     rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
271     mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
272     fi; \
273     fi; \
274     fi; \
275     done; \
276     done
277    
278     # Define this as empty until I found a useful application.
279     installcheck:
280    
281     uninstall: uninstall-exec uninstall-data
282     uninstall-exec:
283     uninstall-data: uninstall-data-@USE_NLS@
284     if test "$(PACKAGE)" = "gettext-tools"; then \
285     for file in $(DISTFILES.common) Makevars.template; do \
286     rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
287     done; \
288     else \
289     : ; \
290     fi
291     uninstall-data-no:
292     uninstall-data-yes:
293     catalogs='$(CATALOGS)'; \
294     for cat in $$catalogs; do \
295     cat=`basename $$cat`; \
296     lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
297     for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
298     rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
299     done; \
300     done
301    
302     check: all
303    
304     info dvi ps pdf html tags TAGS ctags CTAGS ID:
305    
306     mostlyclean:
307     rm -f remove-potcdate.sed
308     rm -f stamp-poT
309     rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po
310     rm -fr *.o
311    
312     clean: mostlyclean
313    
314     distclean: clean
315     rm -f Makefile Makefile.in POTFILES *.mo
316    
317     maintainer-clean: distclean
318     @echo "This command is intended for maintainers to use;"
319     @echo "it deletes files that may require special tools to rebuild."
320     rm -f stamp-po $(GMOFILES)
321    
322     distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
323     dist distdir:
324     $(MAKE) update-po
325     @$(MAKE) dist2
326     # This is a separate target because 'update-po' must be executed before.
327     dist2: stamp-po $(DISTFILES)
328     dists="$(DISTFILES)"; \
329     if test "$(PACKAGE)" = "gettext-tools"; then \
330     dists="$$dists Makevars.template"; \
331     fi; \
332     if test -f $(srcdir)/$(DOMAIN).pot; then \
333     dists="$$dists $(DOMAIN).pot stamp-po"; \
334     fi; \
335     if test -f $(srcdir)/ChangeLog; then \
336     dists="$$dists ChangeLog"; \
337     fi; \
338     for i in 0 1 2 3 4 5 6 7 8 9; do \
339     if test -f $(srcdir)/ChangeLog.$$i; then \
340     dists="$$dists ChangeLog.$$i"; \
341     fi; \
342     done; \
343     if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
344     for file in $$dists; do \
345     if test -f $$file; then \
346     cp -p $$file $(distdir) || exit 1; \
347     else \
348     cp -p $(srcdir)/$$file $(distdir) || exit 1; \
349     fi; \
350     done
351    
352     update-po: Makefile
353     $(MAKE) $(DOMAIN).pot-update
354     test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
355     $(MAKE) update-gmo
356    
357     # General rule for creating PO files.
358    
359     .nop.po-create:
360     @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
361     echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
362     exit 1
363    
364     # General rule for updating PO files.
365    
366     .nop.po-update:
367     @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
368     if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \
369     tmpdir=`pwd`; \
370     echo "$$lang:"; \
371     test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
372     echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \
373     cd $(srcdir); \
374     if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \
375     if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
376     rm -f $$tmpdir/$$lang.new.po; \
377     else \
378     if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
379     :; \
380     else \
381     echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
382     exit 1; \
383     fi; \
384     fi; \
385     else \
386     echo "msgmerge for $$lang.po failed!" 1>&2; \
387     rm -f $$tmpdir/$$lang.new.po; \
388     fi
389    
390     $(DUMMYPOFILES):
391    
392     update-gmo: Makefile $(GMOFILES)
393     @:
394    
395     Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@
396     cd $(top_builddir) \
397     && $(SHELL) ./config.status $(subdir)/$@.in
398    
399     force:
400    
401     # Tell versions [3.59,3.63) of GNU make not to export all variables.
402     # Otherwise a system limit (for SysV at least) may be exceeded.
403     .NOEXPORT: