From 21c068f1916330e90f814bed461fe0821d1665ec Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sun, 9 Oct 2011 16:36:37 +0000 Subject: checked in pd-0.43-0.src.tar.gz svn path=/trunk/; revision=15557 --- pd/po/Makefile.am | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 pd/po/Makefile.am (limited to 'pd/po/Makefile.am') diff --git a/pd/po/Makefile.am b/pd/po/Makefile.am new file mode 100644 index 00000000..7ab45eec --- /dev/null +++ b/pd/po/Makefile.am @@ -0,0 +1,68 @@ +AUTOMAKE_OPTIONS = foreign + +SUFFIXES = .po .pot .msg + +# this is the only way to get gettext 0.17 with Fink +#UNAME := $(shell uname -s) +#ifeq ($(UNAME),Darwin) +if MACOSX + PATH := /sw/lib/gettext-tools-0.17/bin:${PATH} +endif + +TCLFILES = apple_events.tcl dialog_canvas.tcl dialog_gatom.tcl dialog_path.tcl pd_bindings.tcl pd_menus.tcl pdwindow.tcl scrollboxwindow.tcl AppMain.tcl dialog_data.tcl dialog_iemgui.tcl dialog_startup.tcl pd_connect.tcl pdtk_array.tcl pkgIndex.tcl wheredoesthisgo.tcl dialog_array.tcl dialog_find.tcl dialog_message.tcl helpbrowser.tcl pdtk_canvas.tcl pkg_mkIndex.tcl dialog_audio.tcl dialog_font.tcl dialog_midi.tcl opt_parser.tcl pd_menucommands.tcl pdtk_text.tcl scrollbox.tcl + +FILES=$(addprefix ../tcl/, $(TCLFILES)) + +# these are the supported languages, +ALL_LINGUAS = af az be bg de el en_ca eu fr gu he hi hu it pa pt_br pt_pt sq sv vi +POFILES = $(ALL_LINGUAS:=.po) +MSGFILES = $(ALL_LINGUAS:=.msg) + +TEMPLATE = template.pot + +libpdpodir = $(pkglibdir)/po +libpdpo_DATA = $(MSGFILES) +dist_libpdpo_DATA = + +EXTRA_DIST = $(POFILES) + +# generate .msg files from the .po files +all-local: $(MSGFILES) + + + +# refresh .po files from the template +clean-local: + -rm -f -- $(MSGFILES) + -rm -f -- $(POFILES:=~) + +po: $(POFILES) + +# refresh the template from the source code +template: $(TEMPLATE) + +$(TEMPLATE): $(FILES) + xgettext --join-existing \ + --from-code=UTF-8 --language=Tcl --keyword=_ \ + --sort-by-file --output=$(TEMPLATE) \ + --package-name="Pure Data" --package-version=0.43 \ + --copyright-holder='This file is put in the public domain' \ + --msgid-bugs-address=pd-dev@iem.at \ + $(FILES) +# fink's and MinGW's xgettext are too old for these flags, needs 0.17 +# --package-name="Pure Data" --package-version=0.43 + +# I guess officially, the .po file should depend on the template.pot, but its +# mostly annoying since it wasnts to update the template.pot and .po files any +# time a .tcl file changes +# $(POFILES): %.po: $(TEMPLATE) +$(POFILES): %.po: + msgmerge --sort-by-file --update $< $(TEMPLATE) + + +%.msg: %.po + msgfmt --check --tcl --locale=$* -d . $< + + +etags: TAGS + etags --append --language=none --regex="/proc[ \t]+\([^ \t]+\)/\1/" *.tcl -- cgit v1.2.1