c75fd20826
Though this is actually part of Cyrus SASL2, we cannot simply enable it in security/cyrus-sasl2 to avoid dependency loop with net/openldap.
79 lines
1.9 KiB
Makefile
79 lines
1.9 KiB
Makefile
# New ports collection makefile for: cyrus-sasl2-ldapdb
|
|
# Date created: May 18 2005
|
|
# Whom: ume@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ldapdb
|
|
PORTVERSION= 2.1.21
|
|
#PORTREVISION= 0
|
|
CATEGORIES= security ipv6
|
|
MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/%SUBDIR%/ \
|
|
ftp://ftp.westbend.net/pub/cyrus-mail/%SUBDIR%/ \
|
|
ftp://ftp.hanse.de/sites/transit/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= . OLD-VERSIONS/sasl
|
|
PKGNAMEPREFIX= cyrus-sasl-
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTVERSION}
|
|
|
|
MAINTAINER= ume@FreeBSD.org
|
|
COMMENT= SASL LDAPDB auxprop plugin
|
|
|
|
LIB_DEPENDS= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
|
|
|
|
CYRUS_SASL2_DIR=${MASTERDIR}/../cyrus-sasl2
|
|
MD5_FILE= ${CYRUS_SASL2_DIR}/distinfo
|
|
PATCHDIR= ${CYRUS_SASL2_DIR}/files
|
|
INSTALL_WRKSRC= ${WRKDIR}/${DISTNAME}/plugins
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if defined(WITH_OPENLDAP_VER)
|
|
WANT_OPENLDAP_VER= ${WITH_OPENLDAP_VER}
|
|
.endif
|
|
.if defined(WANT_OPENLDAP_VER) && ${WANT_OPENLDAP_VER} == 12
|
|
BROKEN= "this port requires OpenLDAP >= 2.0"
|
|
.endif
|
|
USE_OPENLDAP= yes
|
|
|
|
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \
|
|
--with-plugindir=${PREFIX}/lib/sasl2 \
|
|
--with-dbpath=${PREFIX}/etc/sasldb2 \
|
|
--includedir=${PREFIX}/include \
|
|
--mandir=${MANPREFIX}/man \
|
|
--enable-static \
|
|
--with-rc4=openssl
|
|
|
|
CONFIGURE_ARGS+=--with-dblib=none \
|
|
--disable-anon \
|
|
--disable-cram \
|
|
--disable-digest \
|
|
--disable-gssapi \
|
|
--disable-krb4 \
|
|
--disable-ntlm \
|
|
--disable-otp \
|
|
--disable-plain
|
|
|
|
CONFIGURE_ARGS+=--enable-ldapdb --with-ldap=${LOCALBASE}
|
|
|
|
PLIST_FILES= lib/sasl2/libldapdb.a \
|
|
lib/sasl2/libldapdb.so \
|
|
lib/sasl2/libldapdb.so.2
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OPENSSLBASE} == /usr
|
|
CONFIGURE_ARGS+=--with-openssl=yes
|
|
.else
|
|
CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE}
|
|
.endif
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/include && ${MAKE}
|
|
cd ${WRKSRC}/plugins && ${MAKE}
|
|
|
|
.include <bsd.port.post.mk>
|