- Added support for chaining modules within the version client library. To use this, specify the module string as a list of modules separated with commas. For example: cvm-command:/path/to/module,cvm-local:/path/to/socket This enhancement deprecates the cvm-chain module. - Introduced an "out of scope" fact, to be used on credential rejection results when the supplied credentials are outside of the scope of authority of the module. The cvm-vmailmgr and cvm-qmail modules report this fact as appropriate, and cvm-chain copies it as appropriate from the modules it invokes. - A random anti-spoofing tag is added to all version 2 client requests. Its length is set by $CVM_RANDOM_BYTES and defaults to 8. - Fixed a bug that caused the domain output to be set incorrectly when doing qmail lookups with a domain not in the control files with $CVM_QMAIL_ASSUME_LOCAL set.
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.13 2008/04/13 06:51:19 schmonz Exp $
|
|
#
|
|
|
|
DISTNAME= cvm-0.90
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= http://untroubled.org/cvm/
|
|
COMMENT= Credential Validation Modules
|
|
|
|
DEPENDS+= daemontools-[0-9]*:../../sysutils/daemontools
|
|
|
|
DJB_RESTRICTED= NO
|
|
DJB_MAKE_TARGETS= NO
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_STAGE.paths= do-configure
|
|
SUBST_FILES.paths= qmail-init.c
|
|
SUBST_SED.paths= -e 's|/var/qmail|${QMAILDIR}|g'
|
|
SUBST_MESSAGE.paths= Fixing paths.
|
|
|
|
SUBST_CLASSES+= shlibs
|
|
SUBST_STAGE.shlibs= do-configure
|
|
SUBST_FILES.shlibs= INSTHIER
|
|
SUBST_SED.shlibs= -e 's|@CVM_LIB_EXT@|${CVM_LIB_EXT}|g'
|
|
SUBST_MESSAGE.shlibs= Fixing shlibs.
|
|
|
|
RCD_SCRIPTS= cvm
|
|
PKG_GROUPS+= cvmlog
|
|
PKG_USERS+= cvmlog:cvmlog
|
|
|
|
BUILD_DEFS+= QMAILDIR
|
|
PLIST_SUBST+= CVM_LIB_EXT=${CVM_LIB_EXT:Q}
|
|
|
|
DJB_CONFIG_CMDS= \
|
|
${ECHO} ${DJB_CONFIG_PREFIX}/include > conf-include; \
|
|
${ECHO} ${DJB_CONFIG_PREFIX}/lib > conf-lib
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${_OPSYS_SHLIB_TYPE} == "dylib"
|
|
CVM_LIB_EXT=dylib
|
|
.else
|
|
CVM_LIB_EXT=so
|
|
.endif
|
|
|
|
|
|
.include "../../devel/bglibs/buildlink3.mk"
|
|
.include "../../mk/djbware.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|