22 lines
582 B
Makefile
22 lines
582 B
Makefile
# $NetBSD: Makefile,v 1.17 2006/04/18 17:42:12 jlam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-ntlm/}
|
|
COMMENT= Cyrus SASL NTLM authentication plugin
|
|
SASL_PLUGIN= yes
|
|
|
|
.include "../../security/cyrus-sasl/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --enable-ntlm
|
|
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
|
|
|
|
BUILD_DIRS= ${WRKSRC}/plugins
|
|
BUILD_TARGET= libntlm.la
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PLUGINDIR}
|
|
cd ${WRKSRC}/plugins && ${SHLIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} libntlm.la ${PLUGINDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|