freebsd-ports/mail/msmtp/Makefile
Roman Bogorodskiy 7c569a672b mail/msmtp: don't run autoreconf
The 'autoreconf' was added due to the PATCHFILE added in 04ea6b3ea1.
This patch was later removed, but the 'autoreconf' was left, causing
some issues, for example, requiring gettext during the build stage,
even when NLS is disabled.

Reported by:	Ole Lemke
2023-08-21 19:50:44 +02:00

72 lines
2.1 KiB
Makefile

PORTNAME= msmtp
PORTVERSION= 1.8.24
CATEGORIES= mail
MASTER_SITES= https://marlam.de/msmtp/releases/
PATCH_SITES= https://github.com/marlam/msmtp-mirror/commit/
MAINTAINER= novel@FreeBSD.org
COMMENT= SMTP plugin for MUAs
WWW= https://marlam.de/msmtp/
LICENSE= GPLv3
GNU_CONFIGURE= yes
USES= cpe gmake makeinfo pkgconfig tar:xz
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INFO= msmtp
CPE_VENDOR= marlam
OPTIONS_DEFINE= DOCS GSASL NLS IDN LIBSECRET MSMTPD MSMTPQ
OPTIONS_RADIO= TLS
OPTIONS_RADIO_TLS= GNUTLS OPENSSL
OPTIONS_DEFAULT= GNUTLS MSMTPD MSMTPQ
OPTIONS_SUB= yes
GSASL_DESC= GSASL support
LIBSECRET_DESC= GNOME password management
MSMTPD_DESC= Include minimal SMTP server that pipes mails to msmtp
MSMTPQ_DESC= Install offline messaging scripts
GSASL_CONFIGURE_WITH= libgsasl
GSASL_LIB_DEPENDS= libgsasl.so:security/libgsasl
IDN_CONFIGURE_WITH= libidn
IDN_LIB_DEPENDS= libidn2.so:dns/libidn2
LIBSECRET_CONFIGURE_WITH= libsecret
LIBSECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret
MSMTPD_CONFIGURE_WITH= msmtpd
MSMTPQ_PORTDOCS= README.msmtpq
MSMTPQ_RUN_DEPENDS= bash:shells/bash
NLS_CONFIGURE_ENABLE= nls
NLS_USES= gettext
GNUTLS_CONFIGURE_ON= --with-tls=gnutls
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
OPENSSL_USES= ssl
OPENSSL_CONFIGURE_ON= --with-tls=openssl
OPENSSL_CONFIGURE_ENV= libssl_CFLAGS="-I${OPENSSLINC}" \
libssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto"
CERTSFILE= ${LOCALBASE}/share/certs/ca-root-nss.crt
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGNUTLS} || ${PORT_OPTIONS:MOPENSSL}
RUN_DEPENDS+= ${CERTSFILE}:security/ca_root_nss
.else
CONFIGURE_ARGS+= --with-tls=no
.endif
post-extract:
@${REINPLACE_CMD} -e 's|/etc/ssl/certs/ca\\-certificates.crt|${CERTSFILE}|' \
${WRKSRC}/doc/msmtp.1
.if ${PORT_OPTIONS:MMSMTPQ}
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/scripts/msmtpq/msmtp-queue ${STAGEDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/scripts/msmtpq/msmtpq ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_SCRIPT} ${WRKSRC}/scripts/msmtpq/README.msmtpq ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>