diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-08-01 17:35:43 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-08-01 17:35:43 +0000 |
commit | 36c3056b46649d0f28dd3b49f61ad08e8049548a (patch) | |
tree | 5d5a8e8b6880e3acdbf7349ccf62c4860fc6332c /grpmi/po/Makefile | |
parent | 814cacf5edc5ad3642157a23d6d8cff249644d3a (diff) | |
download | rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar.gz rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar.bz2 rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar.xz rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.zip |
Initial revisionV2_0topic/RPMDRAKE
Diffstat (limited to 'grpmi/po/Makefile')
-rw-r--r-- | grpmi/po/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/grpmi/po/Makefile b/grpmi/po/Makefile new file mode 100644 index 00000000..d8ac59bb --- /dev/null +++ b/grpmi/po/Makefile @@ -0,0 +1,44 @@ +PL_FILES = ../grpmi.pl +PL_CFILES = $(PL_FILES:%=%_.c) + +CFILES = ../curl_download/curl_download.xs ../rpm/grpmi_rpm.xs + +POFILES = $(shell ls *.po) +MOFILES = $(POFILES:%.po=%.mo) +LANGS = $(POFILES:%.po=%) + +PREFIX = /usr/local +DATADIR = $(PREFIX)/share +LOCALEDIR=$(DATADIR)/locale + +CFILES = ../curl_download/curl_download.xs ../rpm/grpmi_rpm.xs + +all: $(MOFILES) + +%.mo: %.po + msgfmt -o $@ $< + +$(PL_CFILES): %_.c: % + ./fake_c.pl $< > $@ + +%.mo: %.po + msgfmt -o $@ $< + +merge: grpmi.pot + @for n in $(POFILES); do \ + echo "Merging $$n"; \ + msgmerge "$$n" $< > "$$n"t; \ + mv -f "$$n"t "$$n"; \ + done + +grpmi.pot: $(PL_CFILES) $(CFILES) + xgettext -F -n --add-comments='-PO' --keyword=_ --language=C -o $@ $(PL_CFILES) $(CFILES) + +install: + for l in $(LANGS); do \ + install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \ + install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/grpmi.mo; \ + done + +clean: + @rm -rf *.mo $(POFILES:%=%t) $(PL_CFILES) grpmi.pot |