diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 15:45:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 15:45:37 +0000 |
commit | e0801e6bd6cc1241afafea33ba8ef701fec2e5c5 (patch) | |
tree | b5cf84f45181b3dbc14d58833d88683fb7f3465e /po/Makefile | |
parent | Initial commit. (diff) | |
download | whois-e0801e6bd6cc1241afafea33ba8ef701fec2e5c5.tar.xz whois-e0801e6bd6cc1241afafea33ba8ef701fec2e5c5.zip |
Adding upstream version 5.5.17.upstream/5.5.17upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | po/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/po/Makefile b/po/Makefile new file mode 100644 index 0000000..641fe3d --- /dev/null +++ b/po/Makefile @@ -0,0 +1,57 @@ +prefix = /usr + +ifdef DESTDIR +BASEDIR := $(DESTDIR) +endif + +INSTALL= install + +INSTALLNLSDIR=$(BASEDIR)$(prefix)/share/locale + +PACKAGE = whois + +CATALOGS = cs.mo da.mo de.mo el.mo es.mo eu.mo fi.mo fr.mo it.mo ja.mo ka.mo pl.mo pt_BR.mo ru.mo tr.mo zh_CN.mo + +POTFILES=../whois.c ../mkpasswd.c + +all: $(PACKAGE).pot $(CATALOGS) + +$(PACKAGE).pot: $(POTFILES) + xgettext --default-domain=$(PACKAGE) \ + --add-comments --keyword=_ --keyword=N_ $(POTFILES) + if cmp -s $(PACKAGE).po $(PACKAGE).pot; then \ + rm -f $(PACKAGE).po; \ + else \ + mv $(PACKAGE).po $(PACKAGE).pot; \ + fi + +update-po: $(PACKAGE).pot + for cat in $(CATALOGS); do \ + lang=`echo $$cat | sed 's/.mo$$//'`; \ + mv $$lang.po $$lang.old.po; \ + echo "$$lang:"; \ + if msgmerge $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \ + rm -f $$lang.old.po; \ + else \ + echo "msgmerge for $$cat failed!"; \ + rm -f $$lang.po; mv $$lang.old.po $$lang.po; \ + fi; \ + done + +%.mo: %.po + msgfmt --statistics --check --verbose --output-file=$@ $< + +clean: + rm -f *.mo + +distclean: clean + rm -f whois.pot + +install: $(CATALOGS) + for n in $(CATALOGS); do \ + l=`basename $$n .mo`; \ + $(INSTALL) -m 755 -d $(INSTALLNLSDIR)/$$l; \ + $(INSTALL) -m 755 -d $(INSTALLNLSDIR)/$$l/LC_MESSAGES; \ + $(INSTALL) -m 644 $$n $(INSTALLNLSDIR)/$$l/LC_MESSAGES/$(PACKAGE).mo; \ + done + |