summaryrefslogtreecommitdiff
path: root/mk/mkc_imp.man.mk
blob: 15203d4f56b139442439ad63e53b7a3fb898bb05 (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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# Copyright (c) 2009-2010 by Aleksey Cheusov
# Copyright (c) 1994-2009 The NetBSD Foundation, Inc.
# Copyright (c) 1988, 1989, 1993 The Regents of the University of California
# Copyright (c) 1988, 1989 by Adam de Boor
# Copyright (c) 1989 by Berkeley Softworks
#
# See LICENSE file in the distribution.
############################################################

.if !defined(_MKC_IMP_MAN_MK)
_MKC_IMP_MAN_MK := 1

MESSAGE.nroff ?=	@${_MESSAGE} "NROFF: ${.TARGET}"

.if ${MKSHARE:tl} == "no"
MKCATPAGES =	no
MKDOC      =	no
MKINFO     =	no
MKMAN      =	no
.endif

.if ${MKMAN:tl} == "no"
MKCATPAGES =	no
.endif

.if defined(USETBL) && ${USETBL:U:tl} == "no"
.undef USETBL
.endif

.if defined(MANZ) && ${MANZ:U:tl} == "no"
.undef MANZ
.endif

.PHONY:		catinstall maninstall catpages manpages catlinks \
		manlinks html installhtml
.if ${MKMAN:tl} != "no"
realinstall:	${MANINSTALL}
.endif

MANTARGET ?=	cat
NROFF     ?=	nroff
GROFF     ?=	groff
TBL       ?=	tbl

.SUFFIXES: .1 .2 .3 .4 .5 .6 .7 .8 .9 \
	   .cat1 .cat2 .cat3 .cat4 .cat5 .cat6 .cat7 .cat8 .cat9 \
	   .html1 .html2 .html3 .html4 .html5 .html6 .html7 .html8 .html9

.9.cat9 .8.cat8 .7.cat7 .6.cat6 .5.cat5 .4.cat4 .3.cat3 .2.cat2 .1.cat1:
	${MESSAGE.nroff}
.if !defined(USETBL)
	${_V} ${NROFF} ${NROFF_MAN2CAT} ${.IMPSRC} > ${.TARGET} || \
	 (${RM} -f ${.TARGET}; false)
.else
	${_V} ${TBL} ${.IMPSRC} | ${NROFF} ${NROFF_MAN2CAT} > ${.TARGET} || \
	 (${RM} -f ${.TARGET}; false)
.endif

.9.html9 .8.html8 .7.html7 .6.html6 .5.html5 .4.html4 .3.html3 .2.html2 .1.html1:
.if !defined(USETBL)
	@echo "${GROFF} -Tascii -mdoc2html -P-b -P-u -P-o ${.IMPSRC} > ${.TARGET}"
	@${GROFF} -Tascii -mdoc2html -P-b -P-u -P-o ${.IMPSRC} > ${.TARGET} || \
	 (${RM} -f ${.TARGET}; false)
.else
	@echo "${TBL} ${.IMPSRC} | ${GROFF} -mdoc2html -P-b -P-u -P-o > ${.TARGET}"
	@cat ${.IMPSRC} | ${GROFF} -mdoc2html -P-b -P-u -P-o > ${.TARGET} || \
	 (${RM} -f ${.TARGET}; false)
.endif

.if defined(MAN) && !empty(MAN)
realall: ${MAN}
MANPAGES    =	${MAN}
CATPAGES    =	${MANPAGES:C/(.*).([1-9])/\1.cat\2/}
CLEANFILES +=	${CATPAGES}
.NOPATH:	${CATPAGES}
HTMLPAGES   =	${MANPAGES:C/(.*).([1-9])/\1.html\2/}
.endif

MINSTALL    =	${INSTALL} ${RENAME} ${PRESERVE} ${COPY} \
		    -o ${MANOWN} -g ${MANGRP} -m ${MANMODE}

.if defined(MANZ)
# chown and chmod are done afterward automatically
MCOMPRESS       =	gzip -cf
MCOMPRESSSUFFIX =	.gz
.endif

catinstall: catlinks
maninstall: manlinks

__installpage: .USE
.if defined(MCOMPRESS) && !empty(MCOMPRESS)
	@${RM} -f ${.TARGET}
	${MCOMPRESS} ${.ALLSRC} > ${.TARGET}
	@chown ${MANOWN}:${MANGRP} ${.TARGET}
	@chmod ${MANMODE} ${.TARGET}
.else
	${MINSTALL} ${.ALLSRC} ${.TARGET}
.endif


# Rules for cat'ed man page installation
.if defined(CATPAGES) && !empty(CATPAGES) && ${MKCATPAGES:tl} != "no"
realall: ${CATPAGES}

.if ${MKINSTALL:tl} == "yes"
destination_capages = ${CATPAGES:@P@${DESTDIR}${MANDIR}/${P:T:E}${MANSUBDIR}/${P:T:R}.0${MCOMPRESSSUFFIX}@}
UNINSTALLFILES  +=	${destination_capages}
INSTALLDIRS     +=	${destination_capages:H}
.endif # MKINSTALL

catpages:: ${destination_capages}
.PRECIOUS: ${destination_capages}
.PHONY:    ${destination_capages}

.for P in ${CATPAGES:O:u}
${DESTDIR}${MANDIR}/${P:T:E}${MANSUBDIR}/${P:T:R}.0${MCOMPRESSSUFFIX}: ${P} __installpage
.endfor

.else
catpages::
.endif # CATPAGES

# Rules for source page installation
.if defined(MANPAGES) && !empty(MANPAGES)

.if ${MKINSTALL:tl} == "yes"
destination_manpages = ${MANPAGES:@P@${DESTDIR}${MANDIR}/man${P:T:E}${MANSUBDIR}/${P}${MCOMPRESSSUFFIX}@}
UNINSTALLFILES  +=	${destination_manpages}
INSTALLDIRS     +=	${destination_manpages:H}
.endif # MKINSTALL

manpages:: ${destination_manpages}
.PRECIOUS: ${destination_manpages}
.PHONY:    ${destination_manpages}

.for P in ${MANPAGES:O:u}
${DESTDIR}${MANDIR}/man${P:T:E}${MANSUBDIR}/${P}${MCOMPRESSSUFFIX}: ${P} __installpage
.endfor

.else
manpages::
.endif # MANPAGES

.if ${MKCATPAGES:tl} != "no"
.for s d in ${MLINKS}
LINKS          +=	${MANDIR}/cat${s:T:E}${MANSUBDIR}/${s:R}.0${MCOMPRESSSUFFIX} \
			${MANDIR}/cat${d:T:E}${MANSUBDIR}/${d:R}.0${MCOMPRESSSUFFIX}
UNINSTALLFILES +=	${DESTDIR}${MANDIR}/cat${d:T:E}${MANSUBDIR}/${d:R}.0${MCOMPRESSSUFFIX}
.endfor
catlinks: catpages
.endif
catlinks:

.for s d in ${MLINKS}
LINKS          +=	${MANDIR}/man${s:T:E}${MANSUBDIR}/${s}${MCOMPRESSSUFFIX} \
			${MANDIR}/man${d:T:E}${MANSUBDIR}/${d}${MCOMPRESSSUFFIX}
UNINSTALLFILES +=	${DESTDIR}${MANDIR}/man${d:T:E}${MANSUBDIR}/${d}${MCOMPRESSSUFFIX}
.endfor
manlinks: manpages

# Html rules
.PHONY: html
html: ${HTMLPAGES}

.if defined(HTMLPAGES) && !empty(HTMLPAGES)
.for P in ${HTMLPAGES:O:u} 
${DESTDIR}${HTMLDIR}/${P:T:E}/${P:T:R}.html: ${P}
	${MINSTALL} ${.ALLSRC} ${.TARGET}
.endfor

.if ${MKINSTALL:tl} == "yes"
destination_htmls = ${HTMLPAGES:@P@${DESTDIR}${HTMLDIR}/${P:T:E}/${P:T:R}.html@}
.endif

installhtml:            ${destination_htmls}
CLEANFILES +=		${HTMLPAGES}

.if ${MKHTML:tl} == "yes"
realinstall: installhtml
realall: ${HTMLPAGES}
UNINSTALLFILES +=	${destination_htmls}
INSTALLDIRS    +=	${destination_htmls:H}
.endif # MKHTML
.endif # HTMLPAGES

realall:

.endif # _MKC_IMP_MAN_MK