1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/mail/mpop/Makefile
Dmitry Marakasov 30a00f2227 Most commonly used build systems support silent builds, when they
hide actual commands executed and only show short summary line (like
"CC foo.c"). CMake and ninja enable this by default, some autotools
using ports do as well. This is unacceptable because we need complete
build logs at any time, so we now switch to verbose build logs
unconditionally. Note that this change deliberately affects ALL
builds and not only package builds on cluster, because we need to
be sure that user experiencing failure can always provide informative
build log regardless of settings and without rerunning the build.

Change summary:

- Always do verbose builds for cmake, ninja and GNU configure (the
  latter includes check if --disable-silent-rules is actually supported
  by the configure script; there are isolated cases when it's not true)
- Remove CMAKE_VERBOSE, NINJA_VERBOSE and
  CONFIGURE_ARGS=--disable-silent-rules from all ports which set them
  for this is no longer needed
- Revert hacks for --disable-silent-rules support priorly committed
  to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well

Submitted by:	amdmi3
Reviewed by:	mat
Exp-run by:	antoine
Approved by:	portmgr (mat, antoine)
Differential Revision:	D7534
2016-09-09 19:42:46 +00:00

52 lines
1.4 KiB
Makefile

# Created by: Sylvio Cesar <sylvio@FreeBSD.org>
# $FreeBSD$
PORTNAME= mpop
DISTVERSION= 1.2.5
CATEGORIES= mail
MASTER_SITES= SF
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Small and fast POP3 client
LICENSE= GPLv3+
USES= cpe gmake makeinfo pkgconfig tar:xz
CPE_VENDOR= martin_lambers
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-tls=no
INFO= mpop
OPTIONS_DEFINE= GSASL IDN LIBSECRET NLS
OPTIONS_RADIO= TLS
OPTIONS_RADIO_TLS= GNUTLS OPENSSL
OPTIONS_DEFAULT= IDN OPENSSL
OPTIONS_SUB= yes
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
GNUTLS_CONFIGURE_ON= --with-tls=gnutls
GSASL_DESC= ${SASL_DESC} via GNU SASL
GSASL_LIB_DEPENDS= libgsasl.so:security/gsasl
GSASL_CONFIGURE_WITH= libgsasl
IDN_LIB_DEPENDS= libidn.so:dns/libidn
IDN_CONFIGURE_WITH= libidn
LIBSECRET_DESC= GNOME password management
LIBSECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret
LIBSECRET_CONFIGURE_WITH= libsecret
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
OPENSSL_USE= openssl=yes
OPENSSL_CONFIGURE_ENV= ${OPENSSLINC:M/usr/include:C,.+,libssl_CFLAGS=" ",} \
${OPENSSLLIB:M/usr/lib:C,.+,libssl_LIBS="-lssl -lcrypto",}
OPENSSL_CONFIGURE_ON= --with-tls=openssl
post-patch:
@${REINPLACE_CMD} -Ee 's/Debian/${OPSYS}/' \
-e 's,/etc/ssl/certs,${LOCALBASE}/share/certs,' \
-e '/crt/s/ca(\\?)-certificates/ca\1-root\1-nss/' \
-e 's/ca\\?-certificates/ca_root_nss/' \
${WRKSRC}/doc/mpop*
.include <bsd.port.mk>