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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# Copyright © 2004-2013 Roger Leigh <rleigh@debian.org>
#
# schroot is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# schroot is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
# <http://www.gnu.org/licenses/>.
#
#####################################################################
# Available translations
LINGUAS=$(shell if [ -n "$(PO4A)" ]; then cat $(srcdir)/po/LINGUAS; fi)
# Actual translatable manual pages (missing pages are not be translated yet)
TRANSMAN = $(shell for MAN in $(foreach LANG,$(LINGUAS),$(addprefix translated/$(LANG)/,$(man_MANS))); do if [ -e "$$MAN.man" ]; then echo $$MAN; fi; done)
man/translated/%.man: man-update-po
man/schroot.ps: $(man_MANS)
tbl $(man_MANS) | groff -K UTF8 -T ps -man > $@
%.ps: PSMAN=$(addprefix man/translated/$(patsubst .%,%,$(suffix $(basename %)))/,$(man_MANS))
%.ps: $(TRANSMAN)
tbl $^ | groff -K UTF8 -T ps -man > $@
%.pdf: %.ps
ps2pdf $< $@
if BUILD_DCHROOT
dchroot_mans = man/dchroot.1
endif
if BUILD_DCHROOT_DSA
dchroot_dsa_mans = man/dchroot-dsa.1
endif
MAN_FILES = \
man/dchroot.1.man \
man/dchroot-dsa.1.man \
man/schroot.1.man \
man/schroot.conf.5.man \
man/schroot-faq.7.man \
man/schroot-script-config.5.man \
man/schroot-setup.5.man
EXPAND = \
man/config.man \
$(srcdir)/man/authors.man \
$(srcdir)/man/copyright.man
man_MANS += \
man/schroot.1 \
man/schroot-setup.5 \
man/schroot.conf.5 \
man/schroot-script-config.5 \
man/schroot-faq.7 \
$(dchroot_mans) \
$(dchroot_dsa_mans)
EXTRA_DIST += \
$(MAN_FILES) \
man/authors.man \
man/copyright.man \
man/po \
man/po4a.cfg
clean-local::
rm -rf man/translated man/*.ps man/*.pdf
CLEANFILES += \
man/config.man \
$(basename $(MAN_FILES)) \
man/schroot.ps \
man/schroot.pdf
%.1: %.1.man $(EXPAND)
$(SOELIM) -I "$(dir $@)" -I "$(dir $<)" -I "$(srcdir)/man" $< >$@
%.5: %.5.man $(EXPAND)
$(SOELIM) -I "$(dir $@)" -I "$(dir $<)" -I "$(srcdir)/man" $< >$@
%.7: %.7.man $(EXPAND)
$(SOELIM) -I "$(dir $@)" -I "$(dir $<)" -I "$(srcdir)/man" $< >$@
%.1.ps: %.1
groffer -Tps -man <$< >$@
%.5.ps: %.5
groffer -Tps -man <$< >$@
%.7.ps: %.7
groffer -Tps -man <$< >$@
all-local:: man-update-po $(TRANSMAN)
ps: man/schroot.ps $(addprefix translated/,$(addsuffix /schroot.ps,$(LINGUAS)))
pdf: man/schroot.pdf $(addprefix translated/,$(addsuffix /schroot.pdf,$(LINGUAS)))
CONFIG =\
.ds RELEASE_DATE $(RELEASE_DATE_S)\n\
.ds VERSION $(VERSION)\n\
.ds SCHROOT_LIBEXEC_DIR $(pkglibexecdir)\n\
.ds SCHROOT_MOUNT_DIR $(schroot_mountdir)\n\
.ds SCHROOT_SESSION_DIR $(schroot_sessiondir)\n\
.ds SCHROOT_FILE_UNPACK_DIR $(schroot_file_unpackdir)\n\
.ds SCHROOT_OVERLAY_DIR $(schroot_overlaydir)\n\
.ds SCHROOT_UNDERLAY_DIR $(schroot_underlaydir)\n\
.ds SCHROOT_SYSCONF_DIR $(schroot_sysconfdir)\n\
.ds SCHROOT_CONF $(SCHROOT_CONF)\n\
.ds SCHROOT_CONF_CHROOT_D $(schroot_sysconf_chrootdir)\n\
.ds SCHROOT_CONF_SETUP_D $(schroot_sysconf_setupdir)\n\
.ds SCHROOT_DATA_DIR $(pkgdatadir)\n\
.ds SCHROOT_SETUP_DATA_DIR $(schroot_setupdatadir)\n\
.ds PACKAGE_LOCALE_DIR $(prefix)/share/locale\n\
.ds CSBUILD_CONF $(CSBUILD_CONF)\n\
.ds PROGRAM schroot
man/config.man: Makefile
$(MKDIR_P) man
echo -e "$(CONFIG)" | sed -e 's/^[ ]//' > $@
man-update-po:
if [ -n "$(PO4A)" ]; then cd man && $(PO4A) --package-name $(PACKAGE) --package-version $(VERSION) --copyright-holder "Roger Leigh <rleigh@debian.org>" "--srcdir=$(abs_top_srcdir)/man" "--destdir=$(abs_top_builddir)/man" "$(abs_top_srcdir)/man/po4a.cfg"; fi
dist-hook:: man-update-po
.PHONY: man-update-po ps pdf
|