blob: e12cb926f9b517da5efa1d4b54d9ed304ea996d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: options.mk,v 1.7 2015/05/23 08:53:11 bsiegert Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.tor
PKG_SUPPORTED_OPTIONS= doc
PKG_SUGGESTED_OPTIONS+= doc
.include "../../mk/bsd.options.mk"
###
### This enables the build of manual pages. It requires asciidoc
### at build time, which comes with a tail of dependencies and
### may not be wanted under certain circumstances.
###
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= asciidoc>=8.3.3:../../textproc/asciidoc
CONFIGURE_ARGS+= --enable-asciidoc
.else
CONFIGURE_ARGS+= --disable-asciidoc
.endif
|