01cf85cf46
Packged by jafour1 and updated by some users. Mongo (from "humongous") is a high-performance, open source, schema-free, document-oriented database. It features: document data model with dynamic schemas; full, flexible index support and rich queries; auto-Sharding for horizontal scalability; built-in replication for high availability; text search; advanced security; aggregation Framework and MapReduce; large media storage with GridFS.
11 lines
266 B
Makefile
11 lines
266 B
Makefile
# $NetBSD: options.mk,v 1.1 2015/05/02 08:10:33 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mongodb
|
|
PKG_SUPPORTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
SCONS_ARGS+= --ssl
|
|
.endif
|