X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=manpages%2FMakefile;h=122e7d6073d3d29352e73a880eb7bf7f523b0a9b;hb=f5716f9a79564e44e38f5d4164a4dc1d77cb8c3a;hp=c2ddc94bc0b7c25347456e2aa3805145ce3d0d1b;hpb=86c5f2bf1bc193e5b1d5e42df5af6d86ffe5b6d4;p=live-boot-grml.git diff --git a/manpages/Makefile b/manpages/Makefile index c2ddc94..122e7d6 100644 --- a/manpages/Makefile +++ b/manpages/Makefile @@ -1,28 +1,57 @@ -all: doc +# Makefile -doc: doc_man doc_html +SHELL := sh -e -doc_html: html-stamp +LANGUAGES = $(shell cd po && ls) -html-stamp: live-initramfs.en.7.txt live-snapshot.en.1.txt - asciidoc -b xhtml11 live-initramfs.en.7.txt - asciidoc -b xhtml11 live-snapshot.en.1.txt - touch html-stamp +all: build -doc_man: man-stamp +po4a.cfg: + echo "[po4a_langs] $(LANGUAGES)" > po4a.cfg + echo "[po4a_paths] pot/\$$master.pot \$$lang:po/\$$lang/\$$master.po" >> po4a.cfg -man-stamp: live-initramfs.en.7.txt live-snapshot.en.1.txt - # live-initramfs: - asciidoc -d manpage -b docbook live-initramfs.en.7.txt - xsltproc /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl live-initramfs.en.7.xml - mv live-initramfs.7 live-initramfs.en.7 - # live-snapshot: - asciidoc -d manpage -b docbook live-snapshot.en.1.txt - xsltproc /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl live-snapshot.en.1.xml - mv live-snapshot.1 live-snapshot.en.1 - touch man-stamp + for MANPAGE in en/*; \ + do \ + SECTION="$$(basename $${MANPAGE} | sed -e 's|\.|\n|g' | tail -n1)"; \ + echo "[type: man] $${MANPAGE} \$$lang:\$$lang/$$(basename $${MANPAGE} .$${SECTION}).\$$lang.$${SECTION}" >> po4a.cfg; \ + done + +update: + ./bin/update-version.sh + +build: check po4a.cfg + @if [ ! -x "$$(which po4a 2>/dev/null)" ]; \ + then \ + echo "E: po4a - command not found"; \ + echo "I: po4a can be obtained from:"; \ + echo "I: http://po4a.alioth.debian.org/"; \ + echo "I: On Debian based systems, po4a can be installed with:"; \ + echo "I: apt-get install po4a"; \ + exit 1; \ + fi + + po4a --copyright-holder "Live Systems Project" --keep 0 --package-name live-boot --package-version $(shell cat ../VERSION) po4a.cfg clean: - rm -f live-initramfs.en.7.html live-initramfs.en.7.xml live-initramfs.en.7 - rm -f live-snapshot.en.1.html live-snapshot.en.1.xml live-snapshot.en.1 - rm -f html-stamp man-stamp + rm -rf $(LANGUAGES) + +distclean: clean + rm -f po4a.cfg + +rebuild: distclean update build + +check: + @echo -n "Checking the integrity of .po files " + + @if [ -x /usr/bin/msgfmt ]; \ + then \ + for POFILE in po/*/*; \ + do \ + msgfmt --check --output-file=/dev/null $${POFILE}; \ + echo -n "."; \ + done; \ + else \ + echo "WARNING: skipping po integrity check. You must install gettext."; \ + fi + + @echo " done!"