pkgsrc/databases/virtuoso/options.mk
jaapb 69ee4fd1df Added the virtuoso server, version 6.1.6.
Virtuoso is a multi-model data server that delivers a platform-agnostic
solution for data management, access and integration.

Services offered include:
* relational data management
* RDF data management
* XML data management
* free text content management & full text indexing
* document web server
* linked data server
* web application server
* web services deployment (SOAP or REST)
2013-04-13 13:16:02 +00:00

28 lines
701 B
Makefile

# $NetBSD: options.mk,v 1.1 2013/04/13 13:16:02 jaapb Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.virtuoso
PKG_SUPPORTED_OPTIONS= imagemagick ldap
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
# Package-specific option-handling
PLIST_VARS= im
###
### ImageMagick support
###
.if !empty(PKG_OPTIONS:Mimagemagick)
CONFIGURE_ARGS+= --enable-imagemagick=${PREFIX}
PLIST.im= yes
.include "../../graphics/ImageMagick/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-imagemagick
.endif
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS+= --enable-openldap=${PREFIX}
.include "../../databases/openldap-client/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-openldap
.endif