blob: 84da3de7317388e03a5a632b017fb5a1d5ebc6ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: options.mk,v 1.2 2019/12/14 18:02:50 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.lilv
PKG_SUPPORTED_OPTIONS= debug doc tests
PKG_SUGGESTED_OPTIONS+= # blank
PLIST_VARS+= doc
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
WAF_ARGS+= --debug
.endif
.if !empty(PKG_OPTIONS:Mdoc)
WAF_ARGS+= --docs
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
BUILD_DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
PLIST.doc= yes
.endif
.if !empty(PKG_OPTIONS:Mtests)
WAF_ARGS+= --test
.endif
|