17 lines
390 B
Makefile
17 lines
390 B
Makefile
# $NetBSD: options.mk,v 1.1 2012/05/12 05:33:11 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.cppunit
|
|
PKG_SUPPORTED_OPTIONS= doc
|
|
PKG_SUGGESTED_OPTIONS= # empty
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= doc
|
|
|
|
.if !empty(PKG_OPTIONS:Mdoc)
|
|
BUILD_DEPENDS+= doxygen>=1.6.3:../../devel/doxygen
|
|
CONFIGURE_ARGS+= --enable-doxygen
|
|
PLIST.doc= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-doxygen
|
|
.endif
|