po: Add comment.
[pspp] / po / automake.mk
1 # PSPP - a program for statistical analysis.
2 # Copyright (C) 2017, 2020 Free Software Foundation, Inc.
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17 include $(top_srcdir)/po/Makevars
18
19 XGETTEXT=xgettext
20 MSGMERGE=msgmerge
21 MSGFMT=msgfmt
22
23 POFILES = \
24         po/ca.po \
25         po/de.po \
26         po/el.po \
27         po/es.po \
28         po/fr.po \
29         po/gl.po \
30         po/hu.po \
31         po/ja.po \
32         po/lt.po \
33         po/nl.po \
34         po/pl.po \
35         po/pt_BR.po \
36         po/ru.po \
37         po/sl.po \
38         po/tr.po \
39         po/uk.po \
40         po/zh_CN.po
41
42 LOCALPOFILES = po/cs.po
43
44 POTFILE=po/$(DOMAIN).pot
45
46 TRANSLATABLE_FILES = $(DIST_SOURCES) $(all_q_sources)
47
48 XGETTEXT_OPTIONS = \
49         --copyright-holder="$(COPYRIGHT_HOLDER)" \
50         --package-name=$(PACKAGE) \
51         --package-version=$(VERSION) \
52         --msgid-bugs-address=$(MSGID_BUGS_ADDRESS) \
53         --from-code=UTF-8 \
54         --add-comments='TRANSLATORS:' \
55         --directory=$(top_srcdir)
56
57 ALL_TRANSLATABLE_FILES = \
58         $(TRANSLATABLE_FILES) \
59         $(UI_FILES) \
60         src/ui/gui/org.fsf.pspp.metainfo.xml.in \
61         src/ui/gui/org.fsf.pspp.desktop.in
62
63 $(POTFILE): $(ALL_TRANSLATABLE_FILES) Makefile
64         @$(MKDIR_P) po
65         $(AM_V_GEN)$(XGETTEXT) $(XGETTEXT_OPTIONS) $(TRANSLATABLE_FILES) --language=C --keyword=_ --keyword=N_ -o $@,tmp
66         $(AM_V_at)test -z "$(UI_FILES)" || $(XGETTEXT) $(XGETTEXT_OPTIONS) -j $(UI_FILES) --language=Glade -o $@,tmp
67         $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j src/ui/gui/org.fsf.pspp.metainfo.xml.in -o $@,tmp
68         $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j src/ui/gui/org.fsf.pspp.desktop.in -o $@,tmp
69         $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: .*/d' $@,tmp > $@
70         rm -f $@,tmp
71
72 $(LOCALPOFILES) $(POFILES): $(POTFILE)
73         $(AM_V_GEN)$(MSGMERGE) --previous --quiet $(top_srcdir)/$@ $? -o $@,tmp
74         $(AM_V_at)if test -e $(top_srcdir)/$@,aux ; then \
75                 touch $@,tmp ; \
76                 msgcat --use-first $(top_srcdir)/$@,aux $@,tmp -o $@,tmp; \
77         fi ;
78         $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: /d' $@,tmp > $@,tmp2
79         $(RM) $@,tmp
80         $(MSGFMT) -c $@,tmp2 -o - > /dev/null
81         mv $@,tmp2 $@
82
83 SUFFIXES += .po .gmo
84 .po.gmo:
85         @$(MKDIR_P) `dirname $@`
86         $(AM_V_GEN)$(MSGFMT) $< -o $@
87
88
89 GMOFILES = $(LOCALPOFILES:.po=.gmo) $(POFILES:.po=.gmo)
90
91 ALL_LOCAL += $(GMOFILES)
92
93 install-data-hook: $(GMOFILES)
94         for f in $(GMOFILES); do \
95           lang=`echo $$f | $(SED) -e 's%po/\(.*\)\.gmo%\1%' ` ; \
96           $(MKDIR_P) $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES; \
97           $(INSTALL_DATA) $$f $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/$(DOMAIN).mo ; \
98         done
99
100 uninstall-hook:
101         for f in $(GMOFILES); do \
102           lang=`echo $$f | $(SED) -e 's%po/\(.*\)\.gmo%\1%' ` ; \
103           rm -f $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/$(DOMAIN).mo ; \
104         done
105
106
107 EXTRA_DIST += \
108         $(LOCALPOFILES) \
109         $(POFILES) \
110         $(POTFILE) \
111         po/LINGUAS \
112         po/ChangeLog \
113         po/cs.po,aux
114
115 CLEANFILES += $(GMOFILES) $(POTFILE)
116
117 # Clean $(POFILES) from build directory but not if that's the same as
118 # the source directory.
119 po_CLEAN:
120         @if test "$(srcdir)" != .; then \
121                 echo rm -f $(LOCALPOFILES) $(POFILES); \
122                 rm -f $(LOCALPOFILES) $(POFILES); \
123         fi
124 CLEAN_LOCAL += po_CLEAN
125
126 # Download the po files from http://translationproject.org
127 # The final action to this rule is to remove the .pot file.  This
128 # is because the po files must be re-merged against an updated version of it.
129 #
130 # You can update just one .po file with, e.g.:
131 # make po-update POFILES=po/uk.po
132 PHONY += po-update
133 po-update:
134         for p in $(POFILES); do \
135                 wget --no-use-server-timestamps -O $$p,tmp \
136                 https://translationproject.org/latest/pspp/`basename $$p` ; \
137                 mv $$p,tmp ${top_srcdir}/$$p; \
138         done
139         $(RM) $(POTFILE)