44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $NetBSD: options.mk,v 1.17 2009/02/14 19:30:33 tonnerre Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.sudo
|
|
PKG_SUPPORTED_OPTIONS= ldap
|
|
PKG_OPTIONS_OPTIONAL_GROUPS= auth
|
|
PKG_OPTIONS_GROUP.auth= kerberos pam skey
|
|
|
|
.if ${OPSYS} == "NetBSD" && exists(/usr/include/skey.h)
|
|
PKG_SUGGESTED_OPTIONS= skey
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mpam)
|
|
. include "../../mk/pam.buildlink3.mk"
|
|
DL_AUTO_VARS= yes
|
|
CONFIGURE_ARGS+= --with-pam
|
|
.else
|
|
CONFIGURE_ARGS+= --without-pam
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mkerberos)
|
|
. include "../../mk/krb5.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --without-kerb4
|
|
CONFIGURE_ARGS+= --with-kerb5
|
|
.else
|
|
CONFIGURE_ARGS+= --without-kerb5
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
. include "../../databases/openldap-client/buildlink3.mk"
|
|
. include "../../security/cyrus-sasl/buildlink3.mk"
|
|
DL_AUTO_VARS= yes
|
|
CONFIGURE_ARGS+= --with-ldap=${BUILDLINK_PREFIX.openldap-client}
|
|
CONFIGURE_ARGS+= --with-ldap-conf-file=${PKG_SYSCONFDIR}/ldap.conf
|
|
PLIST.ldap= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mskey)
|
|
CONFIGURE_ARGS+= --with-skey
|
|
.else
|
|
CONFIGURE_ARGS+= --without-skey
|
|
.endif
|