0cc4948889
This takes advantage of the introduction of the SYSCONFBASE variable. Tested on NetBSD/amd64, Darwin/amd64. Bumps PKGREVISION.
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.58 2022/05/10 03:34:16 khorben Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/sasl/saslauthd/}
|
|
PKGREVISION= 1
|
|
CONFLICTS+= cyrus-sasl<2.1.15nb2
|
|
|
|
.include "../../security/cyrus-sasl/Makefile.common"
|
|
|
|
COMMENT= Cyrus SASL plaintext authentication daemon
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
BUILD_TARGET= all
|
|
|
|
SASLSOCKETDIR?= ${VARBASE}/run/saslauthd
|
|
BUILD_DEFS+= SASLSOCKETDIR
|
|
FILES_SUBST+= SASLSOCKETDIR=${SASLSOCKETDIR:Q}
|
|
CONFIGURE_ARGS+= --with-saslauthd=${SASLSOCKETDIR:Q}
|
|
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
|
|
|
|
BUILD_DIRS= saslauthd
|
|
|
|
.include "options.mk"
|
|
|
|
RCD_SCRIPTS= saslauthd
|
|
SMF_METHODS= saslauthd
|
|
SMF_NAME= saslauthd
|
|
FILES_SUBST+= ROOT_USER=${REAL_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= saslauthd/LDAP_SASLAUTHD saslauthd/saslauthd.mdoc
|
|
SUBST_SED.sysconf= -e "s,/usr/local/etc/,${PKG_SYSCONFDIR}/,g"
|
|
|
|
post-install:
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/cyrus-saslauthd
|
|
${INSTALL_DATA} ${WRKSRC}/saslauthd/LDAP_SASLAUTHD \
|
|
${DESTDIR}${PREFIX}/share/doc/cyrus-saslauthd
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|