summaryrefslogtreecommitdiffstats
path: root/po/Makefile
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-04-25 12:26:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-04-25 12:26:16 +0000
commit5fd2d25f56ee44f0a4f93eee0fb161879404241d (patch)
tree17c35744bbd555ccdcbb9ee319c1969e7a588157 /po/Makefile
parent0ad51b215fff27243c114a67ae0b7eea46b2cb5a (diff)
downloaddrakx-kbd-mouse-x11-5fd2d25f56ee44f0a4f93eee0fb161879404241d.tar
drakx-kbd-mouse-x11-5fd2d25f56ee44f0a4f93eee0fb161879404241d.tar.gz
drakx-kbd-mouse-x11-5fd2d25f56ee44f0a4f93eee0fb161879404241d.tar.bz2
drakx-kbd-mouse-x11-5fd2d25f56ee44f0a4f93eee0fb161879404241d.tar.xz
drakx-kbd-mouse-x11-5fd2d25f56ee44f0a4f93eee0fb161879404241d.zip
re-sync after the big svn loss
Diffstat (limited to 'po/Makefile')
-rw-r--r--po/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/po/Makefile b/po/Makefile
new file mode 100644
index 0000000..21c618a
--- /dev/null
+++ b/po/Makefile
@@ -0,0 +1,43 @@
+include ../Makefile.config
+
+# Installation directories
+localedir = $(DESTDIR)/usr/share/locale
+
+PGOAL = $(NAME)
+
+# perl files to search translatable strings in
+PL_FILES:= ../tools/* ../lib/*.pm ../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 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
+