mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-24 12:14:00 -04:00
29 lines
701 B
Makefile
29 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
|