Makefiles: Use $(PHONY) instead of .PHONY.
[pspp] / po / automake.mk
index 2f169f338fe6ce3971e90f502a96a1170e237247..1d25f1694800b78971b3ee7f92b32a337ca900f3 100644 (file)
@@ -64,7 +64,7 @@ $(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) --its=$(top_srcdir)/po/metainfo.its -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.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 > $@
 
@@ -107,7 +107,6 @@ EXTRA_DIST += \
        $(LOCALPOFILES) \
        $(POFILES) \
        $(POTFILE) \
-       po/metainfo.its \
        po/LINGUAS \
        po/ChangeLog \
        po/cs.po,aux
@@ -123,6 +122,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)