diff options
author | jperkin <jperkin@pkgsrc.org> | 2017-04-27 13:56:46 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2017-04-27 13:56:46 +0000 |
commit | ec47dc8fcd08c4fa1f4858e05d016be5236142c8 (patch) | |
tree | 016f9537d1ce2a9382a16ee591ed4b09595cf29d /security/cyrus-sasl | |
parent | 3bf8c5aedc30928d11f744e65156492c26cad0a9 (diff) | |
download | pkgsrc-ec47dc8fcd08c4fa1f4858e05d016be5236142c8.tar.gz |
Fix to use PKG_SYSCONFDIR. Bump PKGREVISION for all packages using the
shared Makefile.common.
Diffstat (limited to 'security/cyrus-sasl')
-rw-r--r-- | security/cyrus-sasl/Makefile | 4 | ||||
-rw-r--r-- | security/cyrus-sasl/Makefile.common | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile index ede78c1cb7c..d480d6de812 100644 --- a/security/cyrus-sasl/Makefile +++ b/security/cyrus-sasl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.71 2016/09/11 06:11:15 richard Exp $ +# $NetBSD: Makefile,v 1.72 2017/04/27 13:56:47 jperkin Exp $ -PKGREVISION= 5 +PKGREVISION= 6 COMMENT= Simple Authentication and Security Layer .include "Makefile.common" diff --git a/security/cyrus-sasl/Makefile.common b/security/cyrus-sasl/Makefile.common index d7693e97221..047c37d2d8f 100644 --- a/security/cyrus-sasl/Makefile.common +++ b/security/cyrus-sasl/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.25 2017/01/19 18:52:23 agc Exp $ +# $NetBSD: Makefile.common,v 1.26 2017/04/27 13:56:47 jperkin Exp $ # # used by security/cyrus-sasl/Makefile # used by security/cy2-anonymous/Makefile @@ -33,6 +33,8 @@ LICENSE= original-bsd # CMU version DISTINFO_FILE= ${.CURDIR}/../cyrus-sasl/distinfo PATCHDIR= ${.CURDIR}/../cyrus-sasl/patches +PKG_SYSCONFSUBDIR= sasl2 + .include "../../mk/bsd.prefs.mk" .if defined(SASL_PLUGIN) && !empty(SASL_PLUGIN:M[yY][eE][sS]) @@ -51,6 +53,7 @@ USE_LIBTOOL= yes DOCDIR= ${PREFIX}/share/doc/cyrus-sasl PLUGINDIR= ${PREFIX}/lib/sasl2 +CONFIGURE_ARGS+= --with-configdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-plugindir=${PLUGINDIR:Q} CONFIGURE_ARGS+= --disable-java |