~ubuntu-branches/ubuntu/intrepid/totem-pl-parser/intrepid-updates

« back to all changes in this revision

Viewing changes to po/Makefile.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Tirabassi
  • Date: 2008-10-08 12:13:49 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20081008121349-zbj99xrieanf1hj0
Tags: 2.24.1-0ubuntu1
* New bug-fix only upstream release (LP: #280102):
  - fix DVB channels parsing in Totem (LP: #275253)
  - fix parsing of DOS M3U files not ending with a line feed (LP: #272761)
  - always write '#EXTM3U" at the start of M3U playlists
  - updated Danish, Romanian and Russian translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
58
58
 
59
 
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi)
 
59
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
60
60
 
61
 
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
 
61
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
62
62
 
63
63
POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
64
64
 
101
101
install-data: install-data-@USE_NLS@
102
102
install-data-no: all
103
103
install-data-yes: all
 
104
        $(mkdir_p) $(DESTDIR)$(itlocaledir)
104
105
        linguas="$(USE_LINGUAS)"; \
105
106
        for lang in $$linguas; do \
106
107
          dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \