]> sipb.mit.edu Git - ikiwiki.git/blob - po/Makefile
smcvpostcomment: use better names for special comment files
[ikiwiki.git] / po / Makefile
1 # List here all source files with translatable strings.
2 POTFILES=$(sort $(shell find ../IkiWiki -type f -name \*.pm)) \
3         ../ikiwiki.in ../IkiWiki.pm ../auto.setup
4
5 POFILES=$(wildcard *.po)
6 MOFILES=$(POFILES:.po=.mo)
7
8 all: ikiwiki.pot mo
9
10 mo: $(MOFILES)
11
12 install: all
13         for file in $(MOFILES); do \
14                 lang=`echo $$file | sed 's/\.mo//'`; \
15                 install -d $(DESTDIR)$(PREFIX)/share/locale/$$lang/LC_MESSAGES/; \
16                 install -m 0644 $$file $(DESTDIR)$(PREFIX)/share/locale/$$lang/LC_MESSAGES/ikiwiki.mo; \
17         done
18
19 ikiwiki.pot: $(POTFILES)
20         @if perl -e '($$ver)=`xgettext -V | head -n 1`=~/.*\s+([0-9]+\.[0-9]+)/; die "gettext $$ver too old, not updating the pot file\n" if $$ver < 0.16'; then \
21                 echo "Rebuilding the pot file"; \
22                 xgettext --from-code=UTF-8 $(POTFILES) -o ikiwiki.pot -Lperl --add-comments=translators; \
23         fi
24
25 clean:
26         rm -f $(MOFILES) messages messages.mo
27
28 %.mo: %.po
29         msgfmt -o $@ $<
30
31 %.po: ikiwiki.pot
32         @echo -n "Merging ikiwiki.pot and $@"
33         @msgmerge $@ ikiwiki.pot -o $@.new 2>&1
34 # Typically all that changes was a date or line number. I'd prefer not to
35 # commit such changes, so detect and ignore them.
36         @if [ "`diff $@ $@.new | grep '[<>]' | grep -v '[<>] #:' | wc -l`" -ne 2 ]; then \
37                 mv -f $@.new $@; \
38         else \
39                 rm -f $@.new; \
40         fi
41         @msgfmt --statistics $@ 2>&1
42
43 check:
44         @for file in $(POFILES); do \
45                 lang=`echo $$file | sed 's/\.po//'`; \
46                 printf "$$lang: "; \
47                 msgfmt -o /dev/null -c -v --statistics $$lang.po;\
48         done