18 lines
496 B
Makefile
18 lines
496 B
Makefile
# $NetBSD: options.mk,v 1.4 2016/06/08 07:26:59 wiz Exp $
|
|
### Set options
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.uhd
|
|
PKG_SUPPORTED_OPTIONS= doxygen manual
|
|
PKG_SUGGESTED_OPTIONS= doxygen manual
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdoxygen)
|
|
DEPENDS+= doxygen>=1.8.11:../../devel/doxygen
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.doxygen
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmanual)
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
|
|
#PLIST_SRC+= ${PKGDIR}/PLIST.manual
|
|
.endif
|