]> git.saurik.com Git - apt-legacy.git/blame - po/makefile
I hate std::string: the concept is great, the implementation is shit.
[apt-legacy.git] / po / makefile
CommitLineData
da6ee469
JF
1# -*- make -*-
2
3# This will compile the gettext message catalogues.
4
5# The other make files drop file lists in build/po/domains/DOMAIN/* which
6# is then picked up by this make file to define all the domains and all the
7# source files that compose each domain. It then produces the POT files
8# and then filters the PO files through the per-domain POT file to create
9# the input to msgformat, which is then dumped into a locale directory.
10
11BASE=..
12SUBDIR=po
13
14# Bring in the default rules
15include ../buildlib/defaults.mak
16
17CATALOGS := $(addsuffix .gmo,$(shell cat LINGUAS))
18DOMAINS := $(notdir $(wildcard $(PO_DOMAINS)/*))
19POTFILES := $(addsuffix .pot,$(addprefix $(PO)/,$(DOMAINS)))
20
21# Construct a list of all mo files for all domains under $(PO_DOMAINS)
22MOFILES := $(patsubst %.gmo,%.mo,$(CATALOGS))
23MOFILES := $(foreach D,$(DOMAINS),$(addprefix $(PO_DOMAINS)/$(D)/,$(MOFILES)))
24LANG_POFILES := $(patsubst %.mo,%.po,$(MOFILES))
25LINGUAS := $(patsubst %.gmo,%,$(CATALOGS))
26
27GETDOMAIN = $(word 1,$(subst /, ,$(1)))
28
29# Generate the list of files from the bits the other make files dropped
30# and produce the .pot file.
31$(POTFILES) : $(PO)/%.pot :
32 printf "%s " "Generating POT file $@"
33 echo $@ : $(wildcard $(PO)/domains/$*/*.*list) $(addprefix $(BASE)/,$(shell cat $(wildcard $(PO)/domains/$*/*.srclist))) > $@.d
34# From sh source
35 cat $(PO)/domains/$*/*.shlist 2> /dev/null | (cd $(BASE) && xargs -n1 bash --dump-po-strings) > $(PO)/domains/$*/sh.pot
36# From C/C++ source
37 cat $(PO)/domains/$*/*.srclist > $(PO)/POTFILES_$*.in
38 $(XGETTEXT) --default-domain=$* --directory=$(BASE) \
39 --add-comments --foreign --keyword=_ --keyword=N_ \
40 --files-from=$(PO)/POTFILES_$*.in -o $(PO)/domains/$*/c.pot
41 rm -f $(PO)/POTFILES_$*.in
42 $(MSGCOMM) --more-than=0 $(PO)/domains/$*/c.pot $(PO)/domains/$*/sh.pot --output=$@
00ec24d0
JF
43 # copy into the domain dirs to make rosetta happy
44 rm -f $(PO)/domains/$*/*.pot
45 cp $@ $(PO)/domains/$*
da6ee469
JF
46
47$(PACKAGE)-all.pot: $(POTFILES)
48 $(MSGCOMM) --more-than=0 $(POTFILES) --output=$@
49
50# Filter the complete translation with the domain specific file to produce
51# only the subtext needed for this domain
52# We cannot express the dependencies required for this directly with a pattern
53# rule, so we use the .d hack.
54$(LANG_POFILES) : $(PO_DOMAINS)/%.po : $(PACKAGE)-all.pot
55 printf "%s " "Generating $@"
56 echo $@ : $(notdir $@) $(PO)/$(call GETDOMAIN,$*).pot > $(PO)/$(call GETDOMAIN,$*)_$(notdir $@).d
57 $(MSGMERGE) $(notdir $@) $(PO)/$(call GETDOMAIN,$*).pot -o $@
58
59$(MOFILES) : $(PO_DOMAINS)/%.mo : $(PO_DOMAINS)/%.po
60 printf "%s: " "Generating $(LOCALE)/$(notdir $*)/LC_MESSAGES/$(call GETDOMAIN,$*).mo"
61 $(GMSGFMT) --statistics -o $@ $<
62 mkdir -p $(LOCALE)/$(notdir $*)/LC_MESSAGES/
63 cp $@ $(LOCALE)/$(notdir $*)/LC_MESSAGES/$(call GETDOMAIN,$*).mo
64
65stats:
66 for i in *.pot *.po; do echo -n "$$i: "; msgfmt --statistics $$i; done
67
68binary: $(POTFILES) $(PACKAGE)-all.pot $(MOFILES)
69
70.PHONY: update-po
71update-po: $(PACKAGE)-all.pot
72 for lang in ${LINGUAS}; do \
73 echo "Updating $$lang.po"; \
74 $(MSGMERGE) $$lang.po $(PACKAGE)-all.pot -o $$lang.new.po; \
75 cmp $$lang.new.po $$lang.po || cp $$lang.new.po $$lang.po; \
76 rm -f $$lang.new.po; \
77 done
78
79clean: clean/local
80clean/local: update-po
81 rm -f $(MOFILES) $(LANG_POFILES) $(PO)/*.d
82
83# Include the dependencies that are available
84The_DFiles = $(wildcard $(PO)/*.d)
85ifneq ($(words $(The_DFiles)),0)
86include $(The_DFiles)
87endif
88
89.NOTPARALLEL: