summaryrefslogtreecommitdiff
path: root/doc/guide/Makefile.common
blob: 435f8d2070311a21d5cc0e22091f52e0833d9c89 (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
# $NetBSD: Makefile.common,v 1.4 2013/04/08 11:29:46 obache Exp $
#
# This is included by doc/guide and meta-pkgs/pkgsrc-guide-tools.
#
# Because the outputs are configurable, this functions as a build-time
# dependency in doc/guide (customized to the desired output types),
# and a runtime dependency in meta-pkgs/pkgsrc-guide-tools (depending
# on all possible output tools).
#

_GUIDE_DEPTYPE?=	build
_GUIDE_OUTPUTS?=	lint html html-split ascii pdf

# html output
_GUIDE_DEPENDS+=	docbook>=4.0:../../textproc/docbook
_GUIDE_DEPENDS+=	docbook-xml>=4.0:../../textproc/docbook-xml
_GUIDE_DEPENDS+=	docbook-xsl>=1.62.4:../../textproc/docbook-xsl
_GUIDE_DEPENDS+=	dsssl-docbook-modular>=1.54:../../textproc/dsssl-docbook-modular
_GUIDE_DEPENDS+=	opensp>=1.5:../../textproc/opensp
_GUIDE_DEPENDS+=	libxslt>=1.0.30:../../textproc/libxslt

.if !empty(_GUIDE_OUTPUTS:Mhtml*)
_GUIDE_DEPENDS+=	tidy>=20021108:../../www/tidy
.endif

.if !empty(_GUIDE_OUTPUTS:Mascii)
_GUIDE_DEPENDS+=	w3m>=0.4:../../www/w3m
.endif

.if !empty(_GUIDE_OUTPUTS:Mps) || !empty(_GUIDE_OUTPUTS:Mpdf)
_GUIDE_DEPENDS+=	openjade>=1.3.2:../../textproc/openjade
_GUIDE_DEPENDS+=	dvipsk-[0-9]*:../../print/dvipsk
_GUIDE_DEPENDS+=	tex-jadetex>=3.13:../../print/tex-jadetex
GHOSTSCRIPT_REQD=	7.05
# XXX: workaround for renaming of ghostscript package.
REQPKGS_PRINT=		tex-jadetex>=3.13 ${TOOLS_DEPENDS.ghostscript}
MAKE_ENV+=		REQPKGS_PRINT=${REQPKGS_PRINT:Q}
# XXX: end
.  if ${_GUIDE_DEPTYPE} == "run"
USE_TOOLS+=		gs:run
.  else
USE_TOOLS+=		gs
.  endif
.endif

.if ${_GUIDE_DEPTYPE} == "run"
DEPENDS+=		${_GUIDE_DEPENDS}
.else
BUILD_DEPENDS+=		${_GUIDE_DEPENDS}
.endif