freebsd-ports/devel/wandio/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

40 lines
1,008 B
Makefile

# Created by: Alistair King <alistair@caida.org>
# $FreeBSD$
PORTNAME= wandio
PORTVERSION= 1.0.3
CATEGORIES= devel
MASTER_SITES= http://research.wand.net.nz/software/wandio/
MAINTAINER= alistair@caida.org
COMMENT= C library for compressed file I/O
LICENSE= GPLv2
USES= libtool
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= ZLIB BZIP2 LZO LZMA HTTP
OPTIONS_DEFAULT= ZLIB BZIP2 LZMA HTTP
ZLIB_DESC= Read/write support for ZLIB (gz) compressed files
BZIP2_DESC= Read/write support for BZIP2 (bz2) compressed files
LZO_DESC= Write support for LZO compressed files
LZMA_DESC= Read/write support for LZMA compressed files
HTTP_DESC= Support for reading files over HTTP
ZLIB_CONFIGURE_WITH= zlib
BZIP2_CONFIGURE_WITH= bzip2
LZO_CONFIGURE_WITH= lzo
LZO_LIB_DEPENDS= liblzo2.so:archivers/lzo2
LZMA_CONFIGURE_WITH= lzma
HTTP_CONFIGURE_WITH= http
HTTP_LIB_DEPENDS= libcurl.so:ftp/curl
.include <bsd.port.mk>