blob: ece0e313aa89d4ef7aa170fb02f025cadf0bdcc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.8 2012/10/23 18:16:23 asau Exp $
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-crammd5/}
COMMENT= Cyrus SASL CRAM-MD5 authentication plugin
SASL_PLUGIN= yes
CONFLICTS= cyrus-sasl<=2.1.19nb1
.include "../../security/cyrus-sasl/Makefile.common"
CONFIGURE_ARGS+= --enable-cram
BUILD_DIRS= ${WRKSRC}/plugins
BUILD_TARGET= libcrammd5.la
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${PLUGINDIR}
cd ${WRKSRC}/plugins && ${SHLIBTOOL} --mode=install \
${INSTALL_PROGRAM} libcrammd5.la ${DESTDIR}${PLUGINDIR}
.include "../../mk/bsd.pkg.mk"
|