diff options
author | jlam <jlam@pkgsrc.org> | 2004-08-05 03:04:33 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-08-05 03:04:33 +0000 |
commit | c21e3b668c68cdd14d7791ca02f8bb26171c0ca8 (patch) | |
tree | 8faee2d93353d9bee1d6b74a86343f5c7baec763 /databases/openldap/options.mk | |
parent | 78e53550634e268ab521b9f92704e49373fe15f0 (diff) | |
download | pkgsrc-c21e3b668c68cdd14d7791ca02f8bb26171c0ca8.tar.gz |
Rename Makefile.options to options.mk in the packages that I maintain.
This follows the example of the mail/dovecot package, as suggested by
<schmonz>.
Diffstat (limited to 'databases/openldap/options.mk')
-rw-r--r-- | databases/openldap/options.mk | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/databases/openldap/options.mk b/databases/openldap/options.mk new file mode 100644 index 00000000000..79e87470e15 --- /dev/null +++ b/databases/openldap/options.mk @@ -0,0 +1,65 @@ +# $NetBSD: options.mk,v 1.1 2004/08/05 03:04:33 jlam Exp $ + +# Global and legacy options +.if defined(KERBEROS) || defined(USE_SASL) || defined(USE_SASL2) +. if !defined(PKG_OPTIONS.openldap) +. if defined(KERBEROS) +PKG_OPTIONS.openldap+= kerberos +. endif +. if defined(USE_SASL) && !empty(USE_SASL:M[yY][eE][sS]) +PKG_OPTIONS.openldap+= sasl +. endif +. if defined(USE_SASL2) && !empty(USE_SASL2:M[yY][eE][sS]) +PKG_OPTIONS.openldap+= sasl +. endif +. endif +.endif + +PKG_OPTIONS_VAR= PKG_OPTIONS.openldap +PKG_SUPPORTED_OPTIONS= dynamic kerberos sasl slp +.include "../../mk/bsd.options.mk" + +### +### Whether to build with dynamically-loadable backend modules. If not +### specified, then link the backend modules statically into slapd. +### +.if !empty(PKG_OPTIONS:Mdynamic) +. include "../../devel/libtool/buildlink3.mk" +CONFIGURE_ARGS+= --enable-modules +PLIST_SUBST+= DYNAMIC_MOD= +.else +PLIST_SUBST+= DYNAMIC_MOD="@comment " +.endif + +### +### Kerberos authentication is via SASL. +### +.if !empty(PKG_OPTIONS:Mkerberos) +. if empty(PKG_OPTIONS:Msasl) +PKG_OPTIONS+= sasl +. endif +.endif + +### +### SASL authentication +### +.if !empty(PKG_OPTIONS:Msasl) +. if !defined(USE_SASL2) && !defined(USE_SASL) +. include "../../security/cyrus-sasl2/buildlink3.mk" +CONFIGURE_ARGS+= --with-cyrus-sasl +. elif defined(USE_SASL2) && !empty(USE_SASL2:M[yY][eE][sS]) +. include "../../security/cyrus-sasl2/buildlink3.mk" +CONFIGURE_ARGS+= --with-cyrus-sasl +. elif defined(USE_SASL) && !empty(USE_SASL:M[yY][eE][sS]) +. include "../../security/cyrus-sasl/buildlink3.mk" +CONFIGURE_ARGS+= --with-cyrus-sasl +. endif +.endif + +### +### SLP (Service Locator Protocol) +### +.if !empty(PKG_OPTIONS:Mslp) +. include "../../net/openslp/buildlink3.mk" +CONFIGURE_ARGS+= --enable-slp +.endif |