blob: 3520d0fe541d442a705e2ae10a25acbde2824c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: options.mk,v 1.3 2012/07/11 14:47:23 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libcarddav
PKG_SUPPORTED_OPTIONS= doc
PKG_SUGGESTED_OPTIONS= doc
PKG_OPTIONS_LEGACY_OPTS+= doxygen:doc
.include "../../mk/bsd.options.mk"
PLIST_VARS+= doc
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= doxygen>=1.8.1.1:../../devel/doxygen
BUILD_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
BUILD_DEPENDS+= tex-tocloft-[0-9]*:../../print/tex-tocloft
BUILD_DEPENDS+= tex-xtab-[0-9]*:../../print/tex-xtab
BUILD_DEPENDS+= tex-multirow-[0-9]*:../../print/tex-multirow
CONFIGURE_ARGS+= --enable-doc
PLIST.doc= yes
.else
CONFIGURE_ARGS+= --disable-doxygen-doc
.endif
|