pkgsrc/security/courier-authlib/Makefile
obache 919a170071 Update courier-authlib to 0.62.2.
Include security fix for CVE-2008-2380 and requested by PR#41023
(approved by wiz@).

0.62.2

This release corrects a makefile compatibility problem with bash 4.

0.62.1

This release correct a couple of minor compiler warnings and errors.

  * cryptpassword.c: Fix compiler warnings

  * checkpasswordsha1.c: Fix compiler warnings.

  * authldaplib.c (auth_ldap_enumerate): Fix typo.

0.62.0

This release adds support for additional hash functions, and an
update to the Postgres driver that removes potentional SQL injection
vulnerabilities in some circumstances.

  * authpgsqllib.c: Use PQescapeStringConn() instead of removing all
    apostrophes from query parameters. This fixes a potential SQL injection
    vulnerability if the Postgres database uses a non-Latin locale.

  * Added support for {SSHA}-encrypted passwords. Based on a patch
    by Zou bin <zb@bisp.com>.

  * Added support for {SHA512} hash function
2009-07-02 12:23:44 +00:00

108 lines
3.3 KiB
Makefile

# $NetBSD: Makefile,v 1.33 2009/07/02 12:23:44 obache Exp $
.include "Makefile.common"
DISTNAME= courier-authlib-0.62.2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=courier/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= jlam@pkgsrc.org
COMMENT= Courier Authentication Library
HOMEPAGE= http://www.courier-mta.org/authlib/
LICENSE= gnu-gpl-v3
CONFLICTS+= courier-auth-[0-9]*
CONFLICTS+= courier-authldap-[0-9]*
CONFLICTS+= courier-authmysql-[0-9]*
CONFLICTS+= courier-authpgsql-[0-9]*
PKG_DESTDIR_SUPPORT= user-destdir
USE_LIBTOOL= yes
LIBTOOLIZE_PLIST= yes
PKG_SYSCONFSUBDIR= authlib
REPLACE_PERL= samplepipe.pl sysconftool
USE_LANGUAGES= c c++
USE_TOOLS+= cat:run gmake perl:run
CONFIGURE_ENV+= CAT=${TOOLS_CAT} # makedat
BUILD_DEFS+= VARBASE
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
CONFIGURE_ARGS+= --with-pkgconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --without-stdheaderdir
.include "../../mk/bsd.prefs.mk"
AUTHDAEMONVAR?= ${VARBASE}/authdaemon
CONFIGURE_ARGS+= --with-authdaemonvar=${AUTHDAEMONVAR:Q}
OWN_DIRS_PERMS= ${AUTHDAEMONVAR} ${COURIER_USER} ${COURIER_GROUP} 0750
FILES_SUBST+= AUTHDAEMONVAR=${AUTHDAEMONVAR:Q}
# Expect is used to change the password from within the courier webmail
# application (sqwebmail). Assume that it's installed in the same prefix
# as courier-authlib.
#
CONFIGURE_ENV+= EXPECT=${PREFIX}/bin/expect
CHECK_INTERPRETER_SKIP= libexec/courier-authlib/authsystem.passwd
AUTHLIBDIR= lib/courier-authlib
AUTHLIBEXECDIR= libexec/courier-authlib
AUTHEXAMPLEDIR= share/examples/courier-authlib
AUTHDOCDIR= share/doc/courier-authlib
FILES_SUBST+= AUTHLIBEXECDIR=${AUTHLIBEXECDIR}
FILES_SUBST+= AUTHEXAMPLEDIR=${AUTHEXAMPLEDIR}
PKG_SYSCONFSUBDIR?= courier
EGDIR= ${PREFIX}/${AUTHEXAMPLEDIR}
DOCDIR= ${PREFIX}/${AUTHDOCDIR}
RCD_SCRIPTS= authdaemond
GEN_FILES= authdaemonrc
FILES_SUBST+= GEN_FILES=${GEN_FILES:Q}
AUTHLIB_PLIST= ${AUTHEXAMPLEDIR}/authdaemonrc.dist
# Install the example config files into ${EGDIR}.
INSTALL_AM_MAKEFLAGS= authdaemonrc=${EGDIR}/authdaemonrc \
authldaprc=${EGDIR}/authldaprc \
authmysqlrc=${EGDIR}/authmysqlrc \
authpgsqlrc=${EGDIR}/authpgsqlrc
INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} \
AM_MAKEFLAGS=${INSTALL_AM_MAKEFLAGS:Q}
POST_INSTALL_TARGETS= post-install-common post-install-authdaemon
.include "options.mk"
.include "../../devel/libltdl/buildlink3.mk"
.for file in ${GEN_FILES}
CONF_FILES_PERMS+= ${EGDIR}/${file}.dist ${PKG_SYSCONFDIR}/${file} \
${COURIER_USER} ${COURIER_GROUP} 0660
.endfor
.for file in ${AUTHLIB_PLIST}
GENERATE_PLIST+= ${TEST} -f ${DESTDIR}${PREFIX}/${file} && \
${ECHO} "${file}";
.endfor
GENERATE_PLIST+= ${TRUE};
INSTALLATION_DIRS= bin sbin
post-install: ${POST_INSTALL_TARGETS}
post-install-common:
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
${INSTALL_SCRIPT} ${WRKSRC}/sysconftool ${DESTDIR}${PREFIX}/sbin
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/INSTALL.html ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README.authdebug.html ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README.html ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README_authlib.html ${DESTDIR}${DOCDIR}
post-install-authdaemon:
${CHOWN} ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${EGDIR}/authdaemonrc.dist
${CHMOD} ${SHAREMODE} ${DESTDIR}${EGDIR}/authdaemonrc.dist
.include "../../mk/bsd.pkg.mk"