blob: 94206e84b478a5306392520f1019e18c7a88814d (
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
|
# $NetBSD: Makefile,v 1.11 2006/02/05 23:10:42 joerg Exp $
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-login/}
PKGREVISION= 1
COMMENT= Cyrus SASL LOGIN authentication plugin
SASL_PLUGIN= yes
.include "../../security/cyrus-sasl2/Makefile.common"
# We need to configure the PLAIN plugin as well since some of the important
# build variables for the LOGIN plugin are only set if PLAIN is configured.
#
CONFIGURE_ARGS+= --enable-login
CONFIGURE_ARGS+= --enable-plain
BUILD_DIRS= ${WRKSRC}/plugins
BUILD_TARGET= liblogin.la
do-install:
${INSTALL_DATA_DIR} ${PLUGINDIR}
cd ${WRKSRC}/plugins && ${SHLIBTOOL} --mode=install \
${INSTALL_PROGRAM} liblogin.la ${PLUGINDIR}
.include "../../mk/bsd.pkg.mk"
|