po: Delete temporary files to fix "make distcheck" error.
[pspp] / po / automake.mk
index ebdb57e343afbb9f63fc190e533d096e5999e2bf..072efea3115ef5ea17529b72325786beee064336 100644 (file)
@@ -54,21 +54,22 @@ XGETTEXT_OPTIONS = \
        --add-comments='TRANSLATORS:' \
        --directory=$(top_srcdir)
 
-ALL_TRANSLATEABLE_FILES = \
-       $(TRANSLATEABLE_FILES) \
+ALL_TRANSLATABLE_FILES = \
+       $(TRANSLATABLE_FILES) \
        $(UI_FILES) \
        src/ui/gui/org.fsf.pspp.metainfo.xml.in \
        src/ui/gui/org.fsf.pspp.desktop.in
 
-$(POTFILE): $(ALL_TRANSLATABLE_FILES)
+$(POTFILE): $(ALL_TRANSLATABLE_FILES) Makefile
        @$(MKDIR_P) po
        $(AM_V_GEN)$(XGETTEXT) $(XGETTEXT_OPTIONS) $(TRANSLATABLE_FILES) --language=C --keyword=_ --keyword=N_ -o $@,tmp
-       $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j $(UI_FILES) --language=glade -o $@,tmp
+       $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j $(UI_FILES) --language=Glade -o $@,tmp
        $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j src/ui/gui/org.fsf.pspp.metainfo.xml.in -o $@,tmp
        $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j src/ui/gui/org.fsf.pspp.desktop.in -o $@,tmp
        $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: .*/d' $@,tmp > $@
+       rm -f $@,tmp
 
-$(LOCALPOFILED) $(POFILES): $(POTFILE)
+$(LOCALPOFILES) $(POFILES): $(POTFILE)
        $(AM_V_GEN)$(MSGMERGE) --previous --quiet $(top_srcdir)/$@ $? -o $@,tmp
        $(AM_V_at)if test -e $(top_srcdir)/$@,aux ; then \
                touch $@,tmp ; \
@@ -76,6 +77,7 @@ $(LOCALPOFILED) $(POFILES): $(POTFILE)
        fi ;
        $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: /d' $@,tmp > $@,tmp2
        $(RM) $@,tmp
+       $(MSGFMT) -c $@,tmp2 -o - > /dev/null
        mv $@,tmp2 $@
 
 SUFFIXES += .po .gmo
@@ -121,6 +123,15 @@ po_CLEAN:
        fi
 CLEAN_LOCAL += po_CLEAN
 
-RSYNC = rsync
-po-update:
-       $(RSYNC) -Lrtvz translationproject.org::tp/latest/pspp/ $(srcdir)/po
+# Download the po files from http://translationproject.org
+# The final action to this rule is to remove the .pot file.  This
+# is because the po files must be re-merged against an updated version of it.
+PHONY += po-update
+po-update: $(POFILES)
+       for p in $^; do \
+               wget --recursive --level=1 --accept=po --no-directories --no-use-server-timestamps \
+               --directory-prefix=po -O ${top_srcdir}/$$p,tmp \
+               https://translationproject.org/latest/pspp/`basename $$p` ; \
+               mv ${top_srcdir}/$$p,tmp ${top_srcdir}/$$p; \
+       done
+       $(RM) $(POTFILE)