From 36c3056b46649d0f28dd3b49f61ad08e8049548a Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 1 Aug 2002 17:35:43 +0000 Subject: Initial revision --- po/Makefile | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 po/Makefile (limited to 'po/Makefile') diff --git a/po/Makefile b/po/Makefile new file mode 100644 index 00000000..7f9d7578 --- /dev/null +++ b/po/Makefile @@ -0,0 +1,40 @@ +PL_FILES = ../rpmdrake ../edit-urpm-sources.pl ../rpmdrake.pm +PL_CFILES = $(PL_FILES:%=%_.c) + +POFILES = $(shell ls *.po) +MOFILES = $(POFILES:%.po=%.mo) +LANGS = $(POFILES:%.po=%) + +PREFIX = /usr/local +DATADIR = $(PREFIX)/share +LOCALEDIR=$(DATADIR)/locale + +all: $(MOFILES) + +%.mo: %.po + msgfmt -o $@ $< + +$(PL_CFILES): %_.c: % + ../grpmi/po/fake_c.pl $< > $@ + +%.mo: %.po + msgfmt -o $@ $< + +merge: rpmdrake.pot + @for n in $(POFILES); do \ + echo "Merging $$n"; \ + msgmerge "$$n" $< > "$$n"t; \ + mv -f "$$n"t "$$n"; \ + done + +rpmdrake.pot: $(PL_CFILES) + xgettext -F -n --add-comments='-PO' --keyword=_ --language=C -o $@ $(PL_CFILES) + +install: + for l in $(LANGS); do \ + install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \ + install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/rpmdrake.mo; \ + done + +clean: + @rm -rf *.mo $(POFILES:%=%t) $(PL_CFILES) rpmdrake.pot -- cgit v1.2.1