blob: 11f9a9a96b0c14f6999352dfc5219501c2dc03cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.5 2013/04/06 15:46:39 rodent Exp $
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-scram/}
PKGREVISION= 1
COMMENT= Cyrus SASL SCRAM authentication plugin
SASL_PLUGIN= yes
.include "../../security/cyrus-sasl/Makefile.common"
CONFIGURE_ARGS+= --enable-scram
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
BUILD_DIRS= plugins
BUILD_TARGET= libscram.la
.include "../../security/openssl/buildlink3.mk"
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${PLUGINDIR}
cd ${WRKSRC}/plugins && ${SHLIBTOOL} --mode=install \
${INSTALL_PROGRAM} libscram.la ${DESTDIR}${PLUGINDIR}
.include "../../mk/bsd.pkg.mk"
|