blob: 2af5aa674eaf66ebfb84703876078bf7ec00cc36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: options.mk,v 1.1.1.1 2011/01/16 09:56:01 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fop
PKG_SUPPORTED_OPTIONS= doc
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdoc)
PLIST_SRC+= ${PKGDIR}/PLIST.docs
.endif
post-extract:
.if empty(PKG_OPTIONS:Mdoc)
.for subdir in docs javadocs
cd ${WRKSRC} && ${RM} -rf ${subdir}
.endfor
.endif
|