summaryrefslogtreecommitdiffstats
path: root/share/man/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--share/man/Makefile26
-rw-r--r--share/man/Makefile.old33
2 files changed, 54 insertions, 5 deletions
diff --git a/share/man/Makefile b/share/man/Makefile
index decf333..86790db 100644
--- a/share/man/Makefile
+++ b/share/man/Makefile
@@ -22,22 +22,38 @@ A2X = a2x \
--asciidoc-opts "-a revdate=$(shell cat ../../VERSION.txt)" \
--doctype=manpage
+LANGUAGES := $(shell cd po && ls)
+
SHELL := sh -e
all: build
clean:
- rm -f *.[0-9]
- rm -f *.xml
+ rm -f en/*.[0-9]
+ rm -f en/*.xml
+ rm -rf $(LANGUAGES)
+
+distclean: clean
+ rm -f po4a.cfg
-build: man
+build: po4a.cfg man
rebuild: clean build
-man: *.txt
+po4a.cfg: en/*.txt
+ echo "[po4a_langs] $(LANGUAGES)" > po4a.cfg
+ echo "[po4a_paths] pot/\$$master.pot \$$lang:po/\$$lang/\$$master.po" >> po4a.cfg
+
+ for FILE in en/*; \
+ do \
+ SECTION="$$(basename $${FILE} | sed -e 's|\.|\n|g' | tail -n1)"; \
+ echo "[type: asciidoc] $${FILE} \$$lang:\$$lang/$$(basename $${FILE} .$${SECTION}).\$$lang.$${SECTION}" >> po4a.cfg; \
+ done
+
+man: en/*.txt
for FILE in *.txt; \
do \
$(A2X) --format=manpage $${FILE}; \
done
-.PHONY: all clean build rebuild man
+.PHONY: all clean distclean build rebuild po4a.cfg man
diff --git a/share/man/Makefile.old b/share/man/Makefile.old
new file mode 100644
index 0000000..ea32a87
--- /dev/null
+++ b/share/man/Makefile.old
@@ -0,0 +1,33 @@
+# Makefile
+
+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 "Open Infrastructure" --keep 0 --package-name container-tools --package-version $(shell cat ../../VERSION.txt) po4a.cfg
+
+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!"