blob: 273af0f15fe428e2cd9f415a1868afaf5cd7122c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.7 2006/02/05 23:10:42 joerg Exp $
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-otp/}
PKGREVISION= 1
COMMENT= Cyrus SASL OTP authentication plugin
SASL_PLUGIN= yes
CONFLICTS= cyrus-sasl<=2.1.19nb1
.include "../../security/cyrus-sasl2/Makefile.common"
CONFIGURE_ARGS+= --enable-otp
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
BUILD_DIRS= ${WRKSRC}/plugins
BUILD_TARGET= libotp.la
.include "../../security/openssl/buildlink3.mk"
do-install:
${INSTALL_DATA_DIR} ${PLUGINDIR}
cd ${WRKSRC}/plugins && ${SHLIBTOOL} --mode=install \
${INSTALL_PROGRAM} libotp.la ${PLUGINDIR}
.include "../../mk/bsd.pkg.mk"
|