summaryrefslogtreecommitdiffstats
path: root/po/Makefile
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-06-07 21:11:56 +0000
committerThierry Vignaud <tv@mandriva.org>2007-06-07 21:11:56 +0000
commit9e2f460998c85976f00f6f5d75a0098155ba196c (patch)
tree650689ebf9b24c42fda353bbaed40bc93a6f4ad6 /po/Makefile
parent8f3f6121feee52bed602842f953df78d3c30135a (diff)
downloaddrak3d-9e2f460998c85976f00f6f5d75a0098155ba196c.tar
drak3d-9e2f460998c85976f00f6f5d75a0098155ba196c.tar.gz
drak3d-9e2f460998c85976f00f6f5d75a0098155ba196c.tar.bz2
drak3d-9e2f460998c85976f00f6f5d75a0098155ba196c.tar.xz
drak3d-9e2f460998c85976f00f6f5d75a0098155ba196c.zip
reimport from latest checkout
Diffstat (limited to 'po/Makefile')
-rw-r--r--po/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/po/Makefile b/po/Makefile
new file mode 100644
index 0000000..ad102df
--- /dev/null
+++ b/po/Makefile
@@ -0,0 +1,41 @@
+# Installation directories
+localedir = $(DESTDIR)/usr/share/locale
+
+PGOAL = drak3d
+
+# perl files to search translatable strings in
+PL_FILES:= ../bin/* ../lib/*/*.pm
+
+POFILES = $(shell ls *.po)
+MOFILES = $(POFILES:%.po=%.mo)
+POTFILE= $(PGOAL).pot
+LANGS = $(POFILES:%.po=%)
+
+PREFIX = $(RPM_BUILD_ROOT)/usr
+DATADIR = $(PREFIX)/share
+LOCALEDIR=$(DATADIR)/locale
+
+all: $(MOFILES)
+
+install: all
+ for l in $(LANGS); do \
+ install -d $(localedir)/$$l/LC_MESSAGES; \
+ install -m 644 $$l.mo $(localedir)/$$l/LC_MESSAGES/$(PGOAL).mo; \
+ done
+
+clean:
+ rm -f *~ *.[oas] *.mo $(POTFILE) $(MOFILES) TAGS
+
+%.mo: %.po
+ msgfmt -o $@ $<
+
+$(POTFILE): $(PL_FILES)
+ perl_checker -q --generate-pot $@ $(PL_FILES)
+
+merge: $(POTFILE)
+ @for n in $(POFILES); do \
+ echo "Merging $$n"; \
+ msgmerge -C "$$n" "$$n" $(PGOAL).pot > "$$n"t; \
+ mv -f "$$n"t "$$n"; \
+ done
+