17 lines
349 B
Makefile
17 lines
349 B
Makefile
# $NetBSD: options.mk,v 1.2 2011/01/16 09:58:37 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
|