pkgsrc/security/cyrus-saslauthd/Makefile
obache 26c17a6dab Use md5.h in distfile instead of system provided file.
This is better solution of PR 28562 and may fix PR 34792.

Also, convert a post-build sed step to use the SUBST framework,
requested by PR 34792.
2006-11-13 15:47:14 +00:00

63 lines
1.8 KiB
Makefile

# $NetBSD: Makefile,v 1.35 2006/11/13 15:47:14 obache Exp $
DISTNAME= cyrus-sasl-2.1.22
PKGNAME= ${DISTNAME:S/sasl/saslauthd/}
CATEGORIES= security
MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \
ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/OLD-VERSIONS/sasl/
CONFLICTS+= cyrus-sasl<2.1.15nb2
PKG_INSTALLATION_TYPES= overwrite pkgviews
.include "../../mk/bsd.prefs.mk"
WRKSRC= ${WRKDIR}/${DISTNAME}/saslauthd
EXTRACT_ELEMENTS= ${DISTNAME}/saslauthd
EXTRACT_ELEMENTS+= ${DISTNAME}/include/md5.h
EXTRACT_ELEMENTS+= ${DISTNAME}/include/hmac-md5.h
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://asg.web.cmu.edu/sasl/
COMMENT= Cyrus SASL plaintext authentication daemon
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
BUILD_TARGET= all saslcache testsaslauthd
SASLSOCKETDIR?= ${VARBASE}/run/saslauthd
BUILD_DEFS+= SASLSOCKETDIR
FILES_SUBST+= SASLSOCKETDIR=${SASLSOCKETDIR:Q}
CONFIGURE_ARGS+= --with-saslauthd=${SASLSOCKETDIR:Q}
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
.include "options.mk"
RCD_SCRIPTS= saslauthd
FILES_SUBST+= ROOT_USER=${ROOT_USER:Q}
INSTALLATION_DIRS= bin
.include "../../security/openssl/buildlink3.mk"
SUBST_CLASSES+= sysconf
SUBST_MESSAGE.sysconf= Fixing path to ${PKG_SYSCONFDIR}
SUBST_STAGE.sysconf= post-build
SUBST_FILES.sysconf= LDAP_SASLAUTHD saslauthd.mdoc
SUBST_SED.sysconf= -e "s,/usr/local/etc/,${PKG_SYSCONFDIR}/,g"
post-configure:
${LN} -sf saslauthd.h ${WRKSRC}/config.h
post-install:
for f in saslcache testsaslauthd; do \
${INSTALL_PROGRAM} ${WRKSRC}/$$f ${PREFIX}/bin/$$f; \
done
.if !empty(PKG_OPTIONS:Mldap)
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cyrus-saslauthd
${INSTALL_DATA} ${WRKSRC}/LDAP_SASLAUTHD \
${PREFIX}/share/doc/cyrus-saslauthd
.endif
.include "../../mk/bsd.pkg.mk"