b71a1d488b
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
21 lines
530 B
Makefile
21 lines
530 B
Makefile
# $NetBSD: Makefile,v 1.3 2005/12/05 20:50:55 rillig Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-plain/}
|
|
COMMENT= Cyrus SASL PLAIN authentication plugin
|
|
SASL_PLUGIN= yes
|
|
|
|
CONFLICTS= cyrus-sasl<=2.1.19nb1
|
|
|
|
.include "../../security/cyrus-sasl2/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --enable-plain
|
|
|
|
BUILD_DIRS= ${WRKSRC}/plugins
|
|
BUILD_TARGET= libplain.la
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PLUGINDIR}
|
|
cd ${WRKSRC}/plugins && ${SHLIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} libplain.la ${PLUGINDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|