blob: cb1d869bf53cddf0bc4926f19b5d8049787611f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2014/07/22 17:36:49 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libpgf
PKG_SUPPORTED_OPTIONS= doc
PLIST_VARS+= doc
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= doxygen>=1.8.7:../../devel/doxygen
PLIST.doc= yes
CONFIGURE_ARGS+= --enable-doc
.endif
|