blob: 5e87417b504faaa53d8be941235840f4ef5194e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.1 2014/01/05 19:56:50 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.opus
PKG_SUPPORTED_OPTIONS= doc
.include "../../mk/bsd.options.mk"
PLIST_VARS+= doc
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
PLIST.doc= yes
.else
CONFIGURE_ARGS+= --disable-doc
.endif
|