e6e49a2f0f
the appropriate tool via USE_TOOLS (usually "gs:run"), and remove ghostscript.mk. This change removes a rather out-dated file from pkgsrc and switches packages to use the more compact implementation of the Ghostcript-handling inside the tools framework.
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
# $NetBSD: Makefile.common,v 1.2 2005/11/28 06:41:20 jlam 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+= tex-jadetex>=3.13:../../print/tex-jadetex
|
|
GHOSTSCRIPT_REQD= 7.05
|
|
. 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
|