2f72af218d
Ruby 2.1, post release of Ruby 2.0. *WARNING!* Not all of ruby pkgsrc are supported yet. Ruby 2.1 has many improvements including speedup without severe incompatibilities. You can use this on Rails and other applications, and get a more comfortable experience. This release includes many bugfixes. See tickets and ChangeLog for details. Following the previously announced changed versioning policy of Ruby 2.1, this version is simply called ¡È2.1.1¡É. Update: We¡Çve noticed a regression in Hash#reject. For more details, see: Regression of Hash#reject in Ruby 2.1.1.
16 lines
422 B
Makefile
16 lines
422 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/03/14 19:40:47 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)
|
|
#PRIVILEGED_STAGES+= clean
|
|
RUBY_DYNAMIC_DIRS+= ${RUBY_SYSRIDIR}
|
|
# Use huge memory.
|
|
UNLIMIT_RESOURCES+= datasize
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-install-doc=no
|
|
.endif
|