blob: cf1f68df22eb2ce599fddee9eb33510e01a0bfcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: options.mk,v 1.3 2007/09/09 14:17:13 taca Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ruby
PKG_SUPPORTED_OPTIONS= ruby-build-ri-db
PKG_SUGGESTED_OPTIONS= ruby-build-ri-db
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mruby-build-ri-db)
CONFIGURE_ARGS+= --enable-install-doc
RUBY_DYNAMIC_DIRS+= ${RUBY_SYSRIDIR}
.endif
|