]> git.sesse.net Git - vlc/commitdiff
* added a package-translations target
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 5 Feb 2004 21:01:44 +0000 (21:01 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 5 Feb 2004 21:01:44 +0000 (21:01 +0000)
  - holds doc/translations.txt
  - all the .po's
  - convert-po.sh

Makefile.am
doc/Makefile.am

index e43de39fbefe6ed8eabec4b315091bddcab009d6..cd74a0d95ae51123eb583887b8b868bb30a80863 100644 (file)
@@ -467,6 +467,8 @@ VLC.app: vlc
            output.m \
            playlist.h \
            playlist.m \
+           prefs_widgets.h \
+           prefs_widgets.m \
            prefs.h \
            prefs.m \
            vout.h \
@@ -686,6 +688,34 @@ package-macosx:
 # Clean up
        rm -Rf $(top_builddir)/tmp
 
+package-translations:
+       @if test -e "$(srcdir)/vlc-translations-${VERSION}"; then \
+         echo "Error: please remove $(srcdir)/vlc-translations-${VERSION}, it is in the way"; \
+         false; \
+       else \
+         echo "OK."; mkdir -p "$(srcdir)/vlc-translations-${VERSION}"; \
+       fi
+# Copy translations
+       for i in $(ALL_LINGUAS); do \
+         cp "$(srcdir)/po/$${i}.po" \
+           "$(srcdir)/vlc-translations-${VERSION}/$${i}.po" \
+           || true ; \
+       done
+       cp "$(srcdir)/doc/translations.txt" \
+         "$(srcdir)/vlc-translations-${VERSION}/README.txt"
+
+       echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo "  echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo "  exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+       echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
+
+       $(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
+         | GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
+
 ###############################################################################
 # Stamp rules
 ###############################################################################
index d9ee5acd51fe486c61274fb2e5618f5eefc3e838..30872c2a102e3450061c6548dd08a42d3cc204ca 100644 (file)
@@ -32,5 +32,7 @@ EXTRA_DIST = \
        skins/skins-howto.txt \
        skins/events-howto.txt \
        skins/curve_maker \
+       strings.txt \
+       translations.txt \
        win32/Cross-Compile-Howto.txt \
        $(NULL)