blob: 399f8faeb59a23b87bb041f2028312351e117e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
PO_FILES = $(wildcard *.po)
PO_LANGS = $(PO_FILES:.po=)
PO_STAMPS = po4a-gen.stamp
MAN_SECTIONS = 1 3 5 8
CLEANFILES = $(PO_STAMPS)
EXTRA_DIST = README.md $(PO_FILES) po4a.cfg util-linux-man.pot
DISTCLEANFILES = util-linux-man.pot $(PO_FILES)
if ENABLE_POMAN
util-linux-man.pot: Makefile
$(AM_V_GEN) $(PO4A) --verbose --no-translations po4a.cfg
po4a-gen.stamp: $(PO_FILES)
@echo 'po4a: generate man-pages translations'
$(AM_V_GEN) $(PO4A) --srcdir $(srcdir) $(srcdir)/po4a.cfg
@touch po4a-gen.stamp
# We need to call po4a --force only on 'make dist', otherwise .po and .pot
# files has to be unmodified. This update has to be done before 'make' copies
# sources to the $distdir. $EXTRA_DIST (where is util-linux-man.pot) is used as
# a dependence for 'distdir' automake target, so it's trigered by "make dist*"
# only.
util-linux-man.pot:
@echo 'po4a: force pot-update'
$(AM_V_GEN) $(PO4A) --force --srcdir $(srcdir) $(srcdir)/po4a.cfg
gen-trans: $(PO_STAMPS)
asciidoc_man_cmd = $(ASCIIDOCTOR) \
-b manpage \
-a 'release-version=$(VERSION)' \
-a 'package-docdir=$(docdir)' \
-a 'VERSION=$(VERSION)' \
-a 'ADJTIME_PATH=$(ADJTIME_PATH)' \
--load-path '$(top_srcdir)/tools' \
--require asciidoctor-unicodeconverter
if HAVE_ASCIIDOCTOR_FAILURE_LEVEL
asciidoc_man_cmd += --failure-level ERROR
endif
gen-mans: gen-trans
@set -e; \
for l in $(PO_LANGS); do \
gendir="$(abs_builddir)/$$l"; \
genfiles=`echo $${gendir}/*.adoc`; \
if test "$$genfiles" != "$${gendir}/*.adoc"; then \
for file in $${genfiles}; do \
manname=`echo $$file | sed -e 's|^.*/||' -e 's|\.adoc||'`; \
test -f $${gendir}/$${manname} || { \
echo " GEN " $$l ": " $$manname && \
$(asciidoc_man_cmd) \
--base-dir=$${gendir} \
--destination-dir $${gendir} $${file}; \
}; \
done; \
fi; \
done
all: gen-mans
clean-local:
rm -f *~ *.bak
distclean-local:
rm -rf $(PO_LANGS) *.stamp
install-data-local: gen-mans
@for l in $(PO_LANGS); do \
mansrcdir="$(abs_builddir)/$$l"; \
for s in $(MAN_SECTIONS); do \
installfiles=`echo $${mansrcdir}/*.$$s`; \
if test "$$installfiles" != "$${mansrcdir}/*.$$s"; then \
installdir="$(DESTDIR)$(mandir)/$$l/man$$s"; \
$(MKDIR_P) "$${installdir}" || exit 1; \
for file in $$installfiles; do \
manname=`echo $$file | sed -e 's|^.*/||'`; \
echo " Installing " $$l ": " $$manname ; \
$(INSTALL_DATA) $$file $${installdir}; \
done; \
fi; \
done; \
done
uninstall-local:
@for l in $(PO_LANGS); do \
mansrcdir="$(abs_builddir)/$$l"; \
for s in $(MAN_SECTIONS); do \
installfiles=`echo $${mansrcdir}/*.$$s`; \
if test "$$installfiles" != "$${mansrcdir}/*.$$s"; then \
installdir="$(DESTDIR)$(mandir)/$$l/man$$s"; \
for file in $$installfiles; do \
manname=`echo $$file | sed -e 's|^.*/||'`; \
echo " Uninstalling " $$l ": " $$manname ; \
rm -f $${installdir}/$${manname}; \
done; \
fi; \
done; \
done
else
gen-trans:
gen-mans:
all:
distclean-local:
clean-local:
endif
|