diff options
author | Stanislav Sedov <stas@FreeBSD.org> | 2011-07-13 19:13:29 +0000 |
---|---|---|
committer | Stanislav Sedov <stas@FreeBSD.org> | 2011-07-13 19:13:29 +0000 |
commit | 87825d13c4b5cec97fe8fff20b0719345dac5766 (patch) | |
tree | 7c387b6e63a38926a43f92e5d1eb899843a7e868 /lang/sbcl | |
parent | 7d7037565f56636c58b5843647f2d109336ca635 (diff) |
- Graphviz is not required for the build if all the documentation is disabled.
PR: ports/158723
Submitted by: Quentin Stievenart <acieroid@awesom.eu>
Notes
Notes:
svn path=/head/; revision=277643
Diffstat (limited to 'lang/sbcl')
-rw-r--r-- | lang/sbcl/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/sbcl/Makefile b/lang/sbcl/Makefile index e1e6a24d81cf..31e6668aa075 100644 --- a/lang/sbcl/Makefile +++ b/lang/sbcl/Makefile @@ -23,8 +23,6 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:R}-source${SBCLPATCHLEVEL} MAINTAINER= stas@FreeBSD.org COMMENT= A Common Lisp development system derived from the CMU CL system -BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz - # More platforms are supported, but on Linux. ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= is a native code compiler, and has not been ported to this architecture yet @@ -98,6 +96,10 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} IGNORE= does not build with threads, disable threads for now .endif +.if !defined(NOPORTDOCS) || !defined(WITHOUT_PDF) || !defined(WITHOUT_PS) +BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz +.endif + .if !defined(WITHOUT_PDF) BUILD_DEPENDS+= latex:${PORTSDIR}/print/teTeX-base \ texi2dvi:${PORTSDIR}/print/texinfo |