]> git.donarmstrong.com Git - lilypond.git/blobdiff - stepmake/stepmake/po-targets.make
Run grand replace for 2015.
[lilypond.git] / stepmake / stepmake / po-targets.make
index bb6215cf3025161afd1a5b7452f9e2abdfb011b9..ef8b1c5cae3b1c82a44d0518e6ea70cff5427843 100644 (file)
@@ -1,4 +1,6 @@
 XGETTEXT_OPTIONS = \
+        --directory=$(src-dir) \
+        --directory=. \
        --default-domain=$(package) \
        --from-code=UTF-8 \
        --join \
@@ -7,15 +9,16 @@ XGETTEXT_OPTIONS = \
        --package-name=$(package) \
        --package-version=$(VERSION)
 
-sed-header = \# Translation of LilyPond\n\# Copyright \(C\) 1998--2012 Han-Wen Nienhuys, Jan Nieuwenhuizen.\n\# This file is distributed under the same license as the LilyPond package.
+sed-header = \# Translation of LilyPond\n\# Copyright \(C\) 1998--2015 Han-Wen Nienhuys, Jan Nieuwenhuizen.\n\# This file is distributed under the same license as the LilyPond package.
 sed-content = "Content-Type: text\/plain; charset=UTF-8\\n"
 
 ####
 #### UGH!
 new-po:
-       if test -r $(po-dir); then \
-         rm -f $(po-dir)/$(outdir)/$(package).po; \
-         touch $(po-dir)/$(outdir)/$(package).po; \
+       if test -r $(po-srcdir); then \
+         rm -f $(po-outdir)/$(package).po; \
+         mkdir -p $(po-outdir); \
+         touch $(po-outdir)/$(package).po; \
        fi
 
 ifeq ($(strip $(depth)),.)
@@ -26,25 +29,25 @@ local-po:
 else
 po: local-po
        $(LOOP)
-ALL_PO_SOURCES = $(ALL_C_SOURCES) $(ALL_CC_SOURCES) $(PYTHON_SCRIPTS_IN) $(PY_MODULES_IN) $(SCM_FILES) $(wildcard $(outdir)/*.hh) $(wildcard $(outdir)/*.cc)
+ALL_PO_SOURCES = $(ALL_C_SOURCES) $(ALL_CC_SOURCES) $(PYTHON_SCRIPTS_IN) $(PY_MODULES_IN) $(SCM_FILES)
 local-po:
 ifneq ($(strip $(ALL_PO_SOURCES)),)
        @echo $(ALL_PO_SOURCES)
-       xgettext $(XGETTEXT_OPTIONS) --output-dir=$(po-dir)/$(outdir) \
+       xgettext $(XGETTEXT_OPTIONS) --output-dir=$(po-outdir) \
         --keyword=_ --keyword=_f --keyword=_i \
         $(XGETTEXT_FLAGS) $(ALL_PO_SOURCES)
 endif
+       sed -i '1,2d' $(po-outdir)/$(package).po
+       sed -i -e 's/^\# This file is distributed.*/$(sed-header)/' $(po-outdir)/$(package).po
+       sed -i -e 's/^\"Content-Type: text\/plain.*/$(sed-content)/' $(po-outdir)/$(package).po
 endif
-       sed -i '1,2d' $(po-dir)/$(outdir)/$(package).po
-       sed -i -e 's/^\# This file is distributed.*/$(sed-header)/' $(po-dir)/$(outdir)/$(package).po
-       sed -i -e 's/^\"Content-Type: text\/plain.*/$(sed-content)/' $(po-dir)/$(outdir)/$(package).po
 
 
 po-update: po
-       $(MAKE) -C $(po-dir) po-update
+       $(MAKE) -C $(po-outdir)/.. po-update
 
 po-changes:
-       $(MAKE) -C $(po-dir) po-changes
+       $(MAKE) -C $(po-outdir)/.. po-changes
 
 po-replace: po
-       $(MAKE) -C $(po-dir) po-replace
+       $(MAKE) -C $(po-outdir)/.. po-replace