diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-09-09 19:42:46 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-09-09 19:42:46 +0000 |
commit | 30a00f2227a3e53b607331247c81c2911c1e98ef (patch) | |
tree | b3bdcd25b598432ef78aefb0f72e9412f429eee4 | |
parent | fc3bdd2b5bc1f418653dc07e3f7734890f957654 (diff) | |
download | ports-30a00f2227a3e53b607331247c81c2911c1e98ef.tar.gz ports-30a00f2227a3e53b607331247c81c2911c1e98ef.zip |
Notes
100 files changed, 61 insertions, 150 deletions
@@ -10,6 +10,13 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20160909: +AUTHOR: amdmi3@FreeBSD.org + + Verbose build logs are now preferred and enabled by default for cmake, + ninja and GNU configure. Ports which still produce quiet build logs + (hiding actual commands) are strongly advised to switch to verbose logs. + 20160908: AUTHOR: amdmi3@FreeBSD.org diff --git a/Mk/Uses/cmake.mk b/Mk/Uses/cmake.mk index 193c75641329..de1c81a94499 100644 --- a/Mk/Uses/cmake.mk +++ b/Mk/Uses/cmake.mk @@ -12,8 +12,6 @@ # Additional variables that affect cmake behaviour: # # User defined variables: -# CMAKE_VERBOSE - Enable verbose build output -# Default: not set, unless BATCH or PACKAGE_BUILDING is defined # CMAKE_NOCOLOR - Disable colour build output # Default: not set, unless BATCH or PACKAGE_BUILDING is defined # CMAKE_NINJA - Use ninja instead of make(1) @@ -80,18 +78,15 @@ CMAKE_ARGS+= -DCMAKE_C_COMPILER:STRING="${CC}" \ -DCMAKE_INSTALL_PREFIX:PATH="${CMAKE_INSTALL_PREFIX}" \ -DCMAKE_BUILD_TYPE:STRING="${CMAKE_BUILD_TYPE}" \ -DTHREADS_HAVE_PTHREAD_ARG:BOOL=YES \ - -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=YES + -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=YES \ + -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON CMAKE_INSTALL_PREFIX?= ${PREFIX} .if defined(BATCH) || defined(PACKAGE_BUILDING) -CMAKE_VERBOSE= yes CMAKE_NOCOLOR= yes .endif -.if defined(CMAKE_VERBOSE) -CMAKE_ARGS+= -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -.endif .if defined(CMAKE_NOCOLOR) CMAKE_ARGS+= -DCMAKE_COLOR_MAKEFILE:BOOL=OFF .endif diff --git a/Mk/Uses/ninja.mk b/Mk/Uses/ninja.mk index 30029f692963..2345d740aa92 100644 --- a/Mk/Uses/ninja.mk +++ b/Mk/Uses/ninja.mk @@ -5,9 +5,6 @@ # Feature: ninja # Usage: USES=ninja # -# User defined variables: -# NINJA_VERBOSE - Enable verbose output. -# # MAINTAINER: portmgr@FreeBSD.org .if !defined(_INCLUDE_USES_NINJA_MK) @@ -17,9 +14,7 @@ _INCLUDE_USES_NINJA_MK= yes IGNORE= Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments .endif -.if defined(NINJA_VERBOSE) MAKE_ARGS+= -v -.endif BUILD_DEPENDS+= ninja:devel/ninja diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index e9f3fbe8f255..d7384b713e35 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -2507,6 +2507,9 @@ SET_LATE_CONFIGURE_ARGS= \ if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--mandir'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --mandir=${GNU_CONFIGURE_MANPREFIX}/man" ; \ fi ; \ + if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--disable-silent-rules'`" ]; then \ + _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --disable-silent-rules" ; \ + fi ; \ if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--infodir'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --infodir=${GNU_CONFIGURE_PREFIX}/${INFO_PATH}/${INFO_SUBDIR}" ; \ fi ; \ diff --git a/archivers/gcpio/Makefile b/archivers/gcpio/Makefile index 546ec2f62083..bb29246b7b03 100644 --- a/archivers/gcpio/Makefile +++ b/archivers/gcpio/Makefile @@ -17,7 +17,6 @@ CPE_VENDOR= gnu GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-prefix=g \ - --disable-silent-rules \ --with-rmt=/etc/rmt TEST_TARGET= check diff --git a/archivers/gtar/Makefile b/archivers/gtar/Makefile index ad57cbba7742..2ded2ccdc8f6 100644 --- a/archivers/gtar/Makefile +++ b/archivers/gtar/Makefile @@ -18,8 +18,7 @@ INFO= tar USES= charsetfix cpe iconv:${STATIC_ARGS} localbase makeinfo tar:xz CPE_VENDOR= gnu GNU_CONFIGURE= yes -CONFIGURE_ARGS= --program-prefix=g \ - --disable-silent-rules +CONFIGURE_ARGS= --program-prefix=g CONFIGURE_ENV= DEFAULT_ARCHIVE=/dev/sa0 \ DEFAULT_RMT_COMMAND=/etc/rmt # supply result to skip a test that will abort configure if run as root diff --git a/archivers/lhasa/Makefile b/archivers/lhasa/Makefile index 9cf50308214d..96901aa9df0e 100644 --- a/archivers/lhasa/Makefile +++ b/archivers/lhasa/Makefile @@ -17,8 +17,7 @@ USES= autoreconf pathfix libtool PATHFIX_MAKEFILEIN= Makefile.am GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --program-suffix=sa +CONFIGURE_ARGS= --program-suffix=sa INSTALL_TARGET= install-strip PORTDOCS= ChangeLog README AUTHORS TODO NEWS diff --git a/audio/beast/Makefile b/audio/beast/Makefile index c1d3a29fe83f..1758ba63098b 100644 --- a/audio/beast/Makefile +++ b/audio/beast/Makefile @@ -25,8 +25,7 @@ SHEBANG_FILES= autotools/intltool-merge USE_GCC= 4.8 USE_GNOME= intltool libgnomecanvas GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --enable-osspcm=/dev/dsp \ +CONFIGURE_ARGS= --enable-osspcm=/dev/dsp \ --enable-ossmidi=/dev/midi USE_LDCONFIG= yes INSTALL_TARGET= install-strip diff --git a/audio/flac/Makefile b/audio/flac/Makefile index 5577c8c7a21c..8dc3aedcfcd1 100644 --- a/audio/flac/Makefile +++ b/audio/flac/Makefile @@ -25,7 +25,6 @@ CONFIGURE_ARGS= --enable-static \ --enable-sse \ --with-ogg="${LOCALBASE}" \ --disable-doxygen-docs \ - --disable-silent-rules \ --disable-thorough-tests \ --disable-xmms-plugin INSTALL_TARGET= install-strip diff --git a/audio/libgpod/Makefile b/audio/libgpod/Makefile index 4834887beef3..75810787df5e 100644 --- a/audio/libgpod/Makefile +++ b/audio/libgpod/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libplist.so:devel/libplist \ USES= gettext gmake libtool localbase pathfix pkgconfig sqlite:3 tar:bzip2 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-udev --without-hal \ +CONFIGURE_ARGS= --disable-udev --without-hal \ --with-html-dir="${DOCSDIR:H}" USE_CSTD= gnu89 USE_GNOME= gdkpixbuf2 gtk20 intltool diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile index aca2db27e134..7c03f11ceb8a 100644 --- a/audio/soundtouch/Makefile +++ b/audio/soundtouch/Makefile @@ -14,7 +14,6 @@ LICENSE= LGPL21 WRKSRC= ${WRKDIR}/${PORTNAME} GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules USE_LDCONFIG= yes USES= autoreconf libtool pathfix diff --git a/audio/xmms-flac/Makefile b/audio/xmms-flac/Makefile index 805c1089cde8..0bc2723b685f 100644 --- a/audio/xmms-flac/Makefile +++ b/audio/xmms-flac/Makefile @@ -15,7 +15,6 @@ LIB_DEPENDS= libxmms.so:multimedia/xmms \ USES= iconv libtool tar:xz GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/biology/ncbi-blast+/files/patch-src_build-system_configure b/biology/ncbi-blast+/files/patch-src_build-system_configure index fd1342ed07e7..da2ce4fb374a 100644 --- a/biology/ncbi-blast+/files/patch-src_build-system_configure +++ b/biology/ncbi-blast+/files/patch-src_build-system_configure @@ -5,7 +5,7 @@ | --x-includes=* | --x-libraries=* | --with-3psw=* \ | --target=* | --with-runpath=* | --with-relative-runpath=* \ - | --help | --no-create | --no-recursion) -+ | --help | --no-create | --no-recursion | --localstatedir=* | --disable-silent-rules ) ++ | --help | --no-create | --no-recursion | --localstatedir=* ) ;; * ) diff --git a/cad/adms/Makefile b/cad/adms/Makefile index be771f4d115e..739cef9c5e76 100644 --- a/cad/adms/Makefile +++ b/cad/adms/Makefile @@ -15,7 +15,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= bison libtool GNU_CONFIGURE= yes CONFIGURE_ENV= ax_cv_c_compiler_vendor=gnu -CONFIGURE_ARGS= --disable-silent-rules INSTALL_TARGET= install-strip USE_LDCONFIG= yes diff --git a/cad/kicad-devel/Makefile b/cad/kicad-devel/Makefile index b164d7c7b56a..5f0462c9e0ea 100644 --- a/cad/kicad-devel/Makefile +++ b/cad/kicad-devel/Makefile @@ -42,7 +42,6 @@ USES= desktop-file-utils shared-mime-info compiler:c++11-lib tar:bzip2 cmake \ gettext python CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \ - -DCMAKE_VERBOSE_MAKEFILE=ON \ -DCMAKE_BUILD_TYPE="Debug" \ -DKICAD_TESTING_VERSION=ON \ -DKICAD_BUILD_VERSION=${DISTVERSION} \ diff --git a/comms/dfu-util/Makefile b/comms/dfu-util/Makefile index c5f2d8419166..8a64579f25bb 100644 --- a/comms/dfu-util/Makefile +++ b/comms/dfu-util/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 GNU_CONFIGURE= yes CONFIGURE_ENV= USE_LIBS="-lusb" \ ac_cv_lib_usbpath_usb_path2devnum=no -CONFIGURE_ARGS= --disable-silent-rules PLIST_FILES= bin/dfu-prefix bin/dfu-suffix bin/dfu-util man/man1/${PORTNAME}.1.gz diff --git a/comms/libsdr/Makefile b/comms/libsdr/Makefile index 40a10251e9ff..8f703414392d 100644 --- a/comms/libsdr/Makefile +++ b/comms/libsdr/Makefile @@ -22,7 +22,6 @@ GH_ACCOUNT= hmatuschek MAKE_JOBS_UNSAFE= yes USES= cmake pkgconfig CMAKE_ARGS+=-DCMAKE_BUILD_TYPE=RELEASE -CMAKE_VERBOSE= 1 USE_LDCONFIG= yes .include <bsd.port.mk> diff --git a/comms/telldus-core/Makefile b/comms/telldus-core/Makefile index f3e755a5388c..0a129b629e4b 100644 --- a/comms/telldus-core/Makefile +++ b/comms/telldus-core/Makefile @@ -21,7 +21,6 @@ LIB_DEPENDS= libftdi.so:devel/libftdi \ USES= cmake compiler:c++11-lang iconv:wchar_t -#CMAKE_VERBOSE=yes CMAKE_ARGS+=-DGENERATE_MAN=TRUE # Note: these are internal defines and shall NOT contain ${STAGEDIR} CMAKE_ARGS+=-DSYSCONF_INSTALL_DIR="${PREFIX}/etc" diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile index f7095647334f..5bbab1efea1b 100644 --- a/databases/rrdtool/Makefile +++ b/databases/rrdtool/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE CONFLICTS= rrdtool12-* -CONFIGURE_ARGS= --disable-tcl --disable-silent-rules +CONFIGURE_ARGS= --disable-tcl CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 USE_RC_SUBR= rrdcached USE_LDCONFIG= yes diff --git a/deskutils/gnotime/Makefile b/deskutils/gnotime/Makefile index b35e16d97d2c..ab6309fdd578 100644 --- a/deskutils/gnotime/Makefile +++ b/deskutils/gnotime/Makefile @@ -21,7 +21,6 @@ USE_GNOME= gnomeprefix gtkhtml3 intlhack libgnomeui GNU_CONFIGURE= yes CONFIGURE_ENV= GUILE_CFLAGS="$$(guile-config compile)" \ GUILE_LIBS="$$(guile-config link)" -CONFIGURE_ARGS= --disable-silent-rules INSTALL_TARGET= install-strip USE_LDCONFIG= yes INSTALLS_OMF= yes diff --git a/devel/dwarves/Makefile b/devel/dwarves/Makefile index ec0daf9c046e..4c99930fd8dc 100644 --- a/devel/dwarves/Makefile +++ b/devel/dwarves/Makefile @@ -25,8 +25,6 @@ WRKSRC= ${WRKDIR}/dwarves-b52386d USES= cmake:outsource localbase tar:bzip2 USE_LDCONFIG= yes -CMAKE_VERBOSE= 1 - post-patch: @${CP} -a \ ${LOCALBASE}/share/gnulib/lib/gettext.h \ diff --git a/devel/eris/Makefile b/devel/eris/Makefile index 3cf1d330ee4d..6633ea9a083d 100644 --- a/devel/eris/Makefile +++ b/devel/eris/Makefile @@ -16,7 +16,6 @@ LIB_DEPENDS= libAtlas-0.6.so:devel/atlas-devel \ libsigc-2.0.so:devel/libsigc++20 \ libmercator-0.3.so:devel/mercator -CONFIGURE_ARGS= --disable-silent-rules GNU_CONFIGURE= yes USE_LDCONFIG= yes USES= libtool pathfix pkgconfig compiler:c++11-lib diff --git a/devel/gitg/Makefile b/devel/gitg/Makefile index e83011d6ad9c..9711fb57a823 100644 --- a/devel/gitg/Makefile +++ b/devel/gitg/Makefile @@ -27,8 +27,7 @@ PORTSCOUT= limitw:1,even USES= compiler:c11 desktop-file-utils gmake libtool pathfix pkgconfig tar:xz GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-maintainer-mode \ +CONFIGURE_ARGS= --disable-maintainer-mode \ --enable-compile-warnings=no USE_GNOME= glib20 gtk30 gtksourceview3 intlhack introspection INSTALL_TARGET= install-strip diff --git a/devel/glib20/Makefile b/devel/glib20/Makefile index 7b32427f8514..91915557e27b 100644 --- a/devel/glib20/Makefile +++ b/devel/glib20/Makefile @@ -97,8 +97,7 @@ PLIST_SUB+= GDB="@comment " .endif .if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --enable-debug=yes \ - --disable-silent-rules +CONFIGURE_ARGS+= --enable-debug=yes .endif post-patch: diff --git a/devel/libqb/Makefile b/devel/libqb/Makefile index 527ffc6cf9df..605dba6bfe04 100644 --- a/devel/libqb/Makefile +++ b/devel/libqb/Makefile @@ -20,7 +20,7 @@ PLIST_SUB+= QB_SOCKET_DIR=${QB_SOCKET_DIR} USE_LDCONFIG= yes USES= gmake libtool pathfix pkgconfig tar:xz GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --with-socket-dir=${QB_SOCKET_DIR} +CONFIGURE_ARGS= --with-socket-dir=${QB_SOCKET_DIR} INSTALL_TARGET= install-strip OPTIONS_DEFINE= DOXYGEN diff --git a/devel/lua-alien/Makefile b/devel/lua-alien/Makefile index b8a7eeb01e65..82ff0d9a8dac 100644 --- a/devel/lua-alien/Makefile +++ b/devel/lua-alien/Makefile @@ -22,8 +22,7 @@ GH_ACCOUNT= mascarenhas USES= libtool lua shebangfix zip SHEBANG_FILES= src/constants GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --libdir=${LUA_MODLIBDIR} \ +CONFIGURE_ARGS= --libdir=${LUA_MODLIBDIR} \ --datadir=${LUA_MODSHAREDIR} \ --with-lua-suffix="${LUA_VER_STR}" INSTALL_TARGET= install-strip diff --git a/devel/lua-posix/Makefile b/devel/lua-posix/Makefile index da87b61d3d21..f02dfe385644 100644 --- a/devel/lua-posix/Makefile +++ b/devel/lua-posix/Makefile @@ -17,7 +17,6 @@ USE_PERL5= build GNU_CONFIGURE= yes CONFIGURE_ENV= LUA_INCLUDE="-I${LUA_INCDIR}" \ LUA="${LOCALBASE}/bin/lua${LUA_VER_STR}" -CONFIGURE_ARGS= --disable-silent-rules MAKE_ARGS= POSIX_EXTRA_CFLAGS="" POSIX_EXTRA_LDFLAGS="" INSTALL_TARGET= install-strip PORTDOCS= * diff --git a/devel/mercator/Makefile b/devel/mercator/Makefile index bc638da7bde4..4b1e3ba47427 100644 --- a/devel/mercator/Makefile +++ b/devel/mercator/Makefile @@ -12,7 +12,6 @@ COMMENT= Procedural terrain library LIB_DEPENDS= libwfmath-1.0.so:math/wfmath -CONFIGURE_ARGS= --disable-silent-rules USES= libtool pathfix pkgconfig compiler:c++11-lib GNU_CONFIGURE= yes USE_LDCONFIG= yes diff --git a/devel/patch/Makefile b/devel/patch/Makefile index 4e0466013b31..0483048c403d 100644 --- a/devel/patch/Makefile +++ b/devel/patch/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv3 USES= cpe charsetfix gmake tar:xz GNU_CONFIGURE= yes -CONFIGURE_ARGS= --program-prefix=g --disable-silent-rules +CONFIGURE_ARGS= --program-prefix=g CPE_VENDOR= gnu PLIST_FILES= bin/gpatch man/man1/gpatch.1.gz diff --git a/devel/wandio/Makefile b/devel/wandio/Makefile index 3df34d25b134..8196c19cb311 100644 --- a/devel/wandio/Makefile +++ b/devel/wandio/Makefile @@ -12,7 +12,6 @@ COMMENT= C library for compressed file I/O LICENSE= GPLv2 USES= libtool -CONFIGURE_ARGS= --disable-silent-rules GNU_CONFIGURE= yes USE_LDCONFIG= yes diff --git a/dns/hesiod/Makefile b/dns/hesiod/Makefile index 9d4674774786..b22c3fed5892 100644 --- a/dns/hesiod/Makefile +++ b/dns/hesiod/Makefile @@ -18,7 +18,6 @@ OPTIONS_DEFAULT=IDN USES= libtool pathfix GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules INSTALL_TARGET= install-strip USE_LDCONFIG= yes diff --git a/dns/knot1/Makefile b/dns/knot1/Makefile index 7c3754016145..e58e10430625 100644 --- a/dns/knot1/Makefile +++ b/dns/knot1/Makefile @@ -27,10 +27,6 @@ USE_LDCONFIG= yes USE_OPENSSL= yes WITH_OPENSSL_PORT= yes -.if defined(BATCH) || defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+= --disable-silent-rules -.endif - INSTALL_TARGET= install-strip USE_RC_SUBR= ${PORTNAME} diff --git a/dns/knot2/Makefile b/dns/knot2/Makefile index 72b5787c6673..39a4d2f6249d 100644 --- a/dns/knot2/Makefile +++ b/dns/knot2/Makefile @@ -30,10 +30,6 @@ CONFIGURE_ARGS= --with-rundir=/var/run/knot \ --with-storage=/var/db/knot \ --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig -.if defined(BATCH) || defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+= --disable-silent-rules -.endif - INSTALL_TARGET= install-strip USE_RC_SUBR= ${PORTNAME} diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index 20e000f3bb46..5463c2576da9 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -35,7 +35,6 @@ USE_SDL= sdl2 # joystick CMAKE_ARGS= -DUSE_SYSTEM_FFMPEG=on QMAKE_SOURCE_PATH= ${WRKSRC}/Qt/PPSSPPQt.pro QMAKE_ARGS= CONFIG+="system_ffmpeg" LREL_TOOL="${LRELEASE}" -NINJA_VERBOSE= yes NO_INSTALL= yes # ports/202949 DESKTOP_ENTRIES="PPSSPP" \ diff --git a/games/7kaa/Makefile b/games/7kaa/Makefile index 6798d26da1b4..8117fa36c5ff 100644 --- a/games/7kaa/Makefile +++ b/games/7kaa/Makefile @@ -15,8 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libenet.so:net/enet GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-nls # no translations ATM +CONFIGURE_ARGS= --disable-nls # no translations ATM USES= gmake openal:al tar:xz USE_SDL= sdl2 diff --git a/games/burrtools/Makefile b/games/burrtools/Makefile index 651cc094cb33..7cc02dd00423 100644 --- a/games/burrtools/Makefile +++ b/games/burrtools/Makefile @@ -22,7 +22,6 @@ USE_GL= gl glu GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_lib_ICE_IceConnectionNumber="no" \ ac_cv_search_glutInit="none required" -CONFIGURE_ARGS= --disable-silent-rules MAKE_ARGS= am_lua_liblua_a_OBJECTS='lua/luaclass.$$(OBJEXT)' LDFLAGS+= -Wl,--as-needed # fltk deps diff --git a/games/euchre/Makefile b/games/euchre/Makefile index d7d5b5fd2c5b..4e9cac0150eb 100644 --- a/games/euchre/Makefile +++ b/games/euchre/Makefile @@ -19,7 +19,6 @@ LICENSE= GPLv2 USES= pkgconfig USE_GNOME= gtk20 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png diff --git a/games/lander/Makefile b/games/lander/Makefile index aa481cc55010..a4eb7083ff4e 100644 --- a/games/lander/Makefile +++ b/games/lander/Makefile @@ -22,8 +22,7 @@ USE_SDL= sdl image mixer USE_GL= gl glu CONFIGURE_ARGS= --with-boost="${LOCALBASE}" \ - --with-boost-filesystem=boost_filesystem \ - --disable-silent-rules + --with-boost-filesystem=boost_filesystem LDFLAGS= -L${LOCALBASE}/lib PORTDOCS= * diff --git a/graphics/entangle/Makefile b/graphics/entangle/Makefile index e8040d135afa..242309e9317a 100644 --- a/graphics/entangle/Makefile +++ b/graphics/entangle/Makefile @@ -30,12 +30,6 @@ INSTALLS_ICONS= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip -# XXX: it would be nice if one day this option would be passed automatically -# to configure scripts that support it :) -.if defined(BATCH) || defined(PACKAGE_BUILDING) -CONFIGURE_ARGS= --disable-silent-rules -.endif - CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/graphics/gnash/Makefile b/graphics/gnash/Makefile index a321684ba2dd..28e8c61fd572 100644 --- a/graphics/gnash/Makefile +++ b/graphics/gnash/Makefile @@ -36,8 +36,7 @@ CONFIGURE_ARGS= --with-boost-incl="${LOCALBASE}/include" \ --with-plugins-install=prefix \ --sysconfdir="${SYSCONFIGDIR}" \ --disable-kparts3 \ - --disable-jemalloc \ - --disable-silent-rules + --disable-jemalloc GNASHVER= ${PORTVERSION} CONFIG_FILES= gnashpluginrc gnashrc diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index 69aabb6956f2..97aec783fbf5 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -162,8 +162,7 @@ CONFIGURE_ARGS+= --program-transform-name="s/x/x/" \ --with-fontconfigincludedir=${LOCALBASE}/include \ --with-fontconfiglibdir=${LOCALBASE}/lib \ --disable-io --disable-ocaml --disable-java \ - --disable-sharp \ - --disable-silent-rules + --disable-sharp .if ${PORT_OPTIONS:MMING} BROKEN= Ming incomplete, uses removed libgraph diff --git a/graphics/gthumb/Makefile b/graphics/gthumb/Makefile index c87e55d36021..9daed793d800 100644 --- a/graphics/gthumb/Makefile +++ b/graphics/gthumb/Makefile @@ -24,8 +24,7 @@ USE_GNOME= gtk30 intltool librsvg2 GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \ ac_cv_lib_tiff_TIFFWriteScanline=yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-libchamplain \ +CONFIGURE_ARGS= --disable-libchamplain \ --enable-compile-warnings=minimum \ --enable-librsvg INSTALL_TARGET= install-strip diff --git a/graphics/ocrfeeder/Makefile b/graphics/ocrfeeder/Makefile index c1e3cbf24508..2fd9a7f7d8a7 100644 --- a/graphics/ocrfeeder/Makefile +++ b/graphics/ocrfeeder/Makefile @@ -29,7 +29,6 @@ USES= desktop-file-utils gettext ghostscript gmake pkgconfig \ python tar:xz USE_GNOME= gnomedocutils gtk30 intltool librsvg2 pygobject3 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/graphics/sekrit-twc-zimg/Makefile b/graphics/sekrit-twc-zimg/Makefile index c7832b3b15e5..e71b404d4d24 100644 --- a/graphics/sekrit-twc-zimg/Makefile +++ b/graphics/sekrit-twc-zimg/Makefile @@ -23,7 +23,6 @@ USES= autoreconf compiler:c++11-lib gmake libtool pathfix EXTRACT_AFTER_ARGS= --exclude test/extra PATHFIX_MAKEFILEIN= Makefile.am GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules CPPFLAGS+= -D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \ -D_DECLARE_C99_LDBL_MATH # XXX ports/193528 CPPFLAGS+= ${CPPFLAGS_${CHOSEN_COMPILER_TYPE}_${COMPILER_VERSION}} diff --git a/graphics/ufraw/Makefile b/graphics/ufraw/Makefile index 29224d35aa45..12aa87d0318d 100644 --- a/graphics/ufraw/Makefile +++ b/graphics/ufraw/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libtiff.so:graphics/tiff \ liblcms2.so:graphics/lcms2 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --enable-extras +CONFIGURE_ARGS= --enable-extras USES= desktop-file-utils gettext gmake jpeg pkgconfig CPPFLAGS+= -I${LOCALBASE}/include diff --git a/irc/hexchat/Makefile b/irc/hexchat/Makefile index e6a12deb8025..7fb40514fbb7 100644 --- a/irc/hexchat/Makefile +++ b/irc/hexchat/Makefile @@ -21,9 +21,9 @@ USES= gmake desktop-file-utils libtool pkgconfig tar:xz ssl USE_GNOME= cairo gtk20 intltool libxml2 USE_XORG= x11 GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--enable-openssl --enable-gtkfe --disable-sysinfo \ +CONFIGURE_ARGS= --enable-openssl --enable-gtkfe --disable-sysinfo \ --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig \ - --disable-silent-rules LUA=lua-${LUA_VER} + LUA=lua-${LUA_VER} INSTALLS_ICONS= yes INSTALL_TARGET= install-strip diff --git a/irc/ngircd/Makefile b/irc/ngircd/Makefile index 88734f52f19a..13343cdcd9a6 100644 --- a/irc/ngircd/Makefile +++ b/irc/ngircd/Makefile @@ -17,7 +17,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe tar:xz GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules # --docdir=${WRKDIR}/tmproot USE_RC_SUBR= ngircd CPE_VENDOR= barton diff --git a/mail/mpop/Makefile b/mail/mpop/Makefile index 5d8c5708f2e1..cda459f68cea 100644 --- a/mail/mpop/Makefile +++ b/mail/mpop/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv3+ USES= cpe gmake makeinfo pkgconfig tar:xz CPE_VENDOR= martin_lambers GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --with-tls=no +CONFIGURE_ARGS= --with-tls=no INFO= mpop diff --git a/mail/mu/Makefile b/mail/mu/Makefile index 9871dbd59713..a52e4ad6b87c 100644 --- a/mail/mu/Makefile +++ b/mail/mu/Makefile @@ -21,7 +21,7 @@ GH_ACCOUNT= djcb USES= autoreconf gmake libtool makeinfo pkgconfig USE_GNOME= glib20 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-gtk --disable-mu4e +CONFIGURE_ARGS= --disable-gtk --disable-mu4e INSTALL_TARGET= install-strip OPTIONS_DEFINE= DOCS GUILE diff --git a/mail/mu4e/Makefile b/mail/mu4e/Makefile index 48e7de960395..d3df05ed32de 100644 --- a/mail/mu4e/Makefile +++ b/mail/mu4e/Makefile @@ -18,8 +18,7 @@ GH_PROJECT= mu GH_ACCOUNT= djcb USE_EMACS= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-gtk \ +CONFIGURE_ARGS= --disable-gtk \ --disable-webkit \ --disable-guile \ --docdir="${DOCSDIR}" \ diff --git a/multimedia/ffms2/Makefile b/multimedia/ffms2/Makefile index 2a943d611dca..3dfe65ce793b 100644 --- a/multimedia/ffms2/Makefile +++ b/multimedia/ffms2/Makefile @@ -21,7 +21,7 @@ USES= compiler:c++11-lib gmake libtool pathfix pkgconfig EXCLUDE= VSHelper.h VSScript.h VapourSynth.h EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --enable-static +CONFIGURE_ARGS= --enable-static CPPFLAGS+= -D_GLIBCXX_USE_C99 # XXX ports/193528 CPPFLAGS+= `pkg-config vapoursynth --cflags` INSTALL_TARGET= install-strip diff --git a/multimedia/gmtk/Makefile b/multimedia/gmtk/Makefile index f8f0bb76e822..8155da4a7cfd 100644 --- a/multimedia/gmtk/Makefile +++ b/multimedia/gmtk/Makefile @@ -17,8 +17,7 @@ USE_XORG= x11 USE_GNOME= glib20 intltool USE_PERL5= build GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-gconf +CONFIGURE_ARGS= --disable-gconf INSTALL_TARGET= install-strip USE_LDCONFIG= yes diff --git a/multimedia/gnome-mplayer/Makefile b/multimedia/gnome-mplayer/Makefile index 4987adbc9329..9c2e17c80386 100644 --- a/multimedia/gnome-mplayer/Makefile +++ b/multimedia/gnome-mplayer/Makefile @@ -19,8 +19,7 @@ USES= desktop-file-utils gettext gmake pkgconfig USE_XORG= x11 xscrnsaver USE_GNOME= glib20 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-nautilus \ +CONFIGURE_ARGS= --disable-nautilus \ --disable-nemo \ --disable-schemas-install \ --without-libgda diff --git a/multimedia/gstreamer1-vaapi/Makefile b/multimedia/gstreamer1-vaapi/Makefile index 088e0d12f8f1..dc916e37978b 100644 --- a/multimedia/gstreamer1-vaapi/Makefile +++ b/multimedia/gstreamer1-vaapi/Makefile @@ -15,8 +15,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libva.so:multimedia/libva GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-wayland \ - --disable-silent-rules +CONFIGURE_ARGS= --disable-wayland INSTALL_TARGET= install-strip USES= compiler:c11 gmake libtool pkgconfig tar:xz USE_LDCONFIG= yes diff --git a/multimedia/vapoursynth/Makefile b/multimedia/vapoursynth/Makefile index f5b7a08d90d1..7ad50bedea01 100644 --- a/multimedia/vapoursynth/Makefile +++ b/multimedia/vapoursynth/Makefile @@ -14,7 +14,6 @@ USE_GITHUB= yes USES= autoreconf gmake libtool localbase pathfix pkgconfig PATHFIX_MAKEFILEIN= Makefile.am GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules CPPFLAGS+= -D_GLIBCXX_USE_C99 # XXX ports/193528 INSTALL_TARGET= install-strip USE_LDCONFIG= yes diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index a687626070b6..472d17cac48b 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -41,7 +41,7 @@ CONFIGURE_ARGS= --enable-avcodec --enable-avformat --enable-dvbpsi \ --disable-dv1394 --disable-egl --disable-fdkaac \ --disable-gles1 --disable-gles2 --disable-kai --disable-kva \ --disable-libvnc --disable-opencv --disable-projectm \ - --disable-quicksync --disable-silent-rules --disable-telx \ + --disable-quicksync --disable-telx \ --disable-tiger --disable-tremor --disable-udev \ --disable-update-check --disable-vcdx --disable-vsxu \ --disable-wasapi --disable-x26410b \ diff --git a/net-mgmt/adcli/Makefile b/net-mgmt/adcli/Makefile index 63131b82d5a8..64349bfe23cf 100644 --- a/net-mgmt/adcli/Makefile +++ b/net-mgmt/adcli/Makefile @@ -26,7 +26,7 @@ OPTIONS_DEFAULT= GSSAPI_BASE CONFIGURE_ENV+= ac_cv_path_KRB5_CONFIG=${KRB5CONFIG} \ ac_cv_path_XMLTO=${TRUE} -CONFIGURE_ARGS+=--disable-silent-rules --sysconfdir=/etc +CONFIGURE_ARGS= --sysconfdir=/etc # Kerberos may or may not be there, but LDAP always is: CFLAGS+= -I${LOCALBASE}/include -DLDAP_DEPRECATED=0 diff --git a/net-mgmt/ettercap/Makefile b/net-mgmt/ettercap/Makefile index 3cd3943802fd..84e96320976d 100644 --- a/net-mgmt/ettercap/Makefile +++ b/net-mgmt/ettercap/Makefile @@ -29,7 +29,6 @@ CMAKE_ARGS= -DBUNDLED_LIBS=OFF \ -DHAVE_RESOLV=${LIBDIR} \ -DINSTALL_SYSCONFDIR=${PREFIX}/etc \ -DMAN_INSTALLDIR=${PREFIX}/man -CMAKE_VERBOSE= yes LDFLAGS+= ${ICONV_LIB} -lnet -lpcap MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes diff --git a/net-mgmt/netxms/Makefile b/net-mgmt/netxms/Makefile index 663d422661f5..59aed84bc094 100644 --- a/net-mgmt/netxms/Makefile +++ b/net-mgmt/netxms/Makefile @@ -46,7 +46,6 @@ ODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC USE_OPENSSL= yes USES= gmake iconv libtool perl5 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules USE_LDCONFIG= yes INSTALL_TARGET= install-strip diff --git a/net-p2p/gnunet/Makefile b/net-p2p/gnunet/Makefile index 4042bebb179b..d6e93fee23d8 100644 --- a/net-p2p/gnunet/Makefile +++ b/net-p2p/gnunet/Makefile @@ -30,8 +30,7 @@ USES= gmake iconv libtool pathfix pkgconfig USE_GNOME= glib20 USE_GSTREAMER1= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --with-extractor=${LOCALBASE} \ +CONFIGURE_ARGS= --with-extractor=${LOCALBASE} \ --with-gnutls=${LOCALBASE} \ --with-libgcrypt-prefix=${LOCALBASE} \ --with-libunistring-prefix=${LOCALBASE} \ diff --git a/net-p2p/mldonkey/Makefile b/net-p2p/mldonkey/Makefile index 160997ff7ba2..2efb97a0d9d6 100644 --- a/net-p2p/mldonkey/Makefile +++ b/net-p2p/mldonkey/Makefile @@ -24,8 +24,7 @@ ALL_TARGET= opt MAKE_ENV+= OCAMLRUNPARAM="l=256M" MAKE_JOBS_UNSAFE= yes -CONFIGURE_ARGS+=${ICONV_CONFIGURE_ARG} \ - --disable-option-checking +CONFIGURE_ARGS+=${ICONV_CONFIGURE_ARG} CONFIGURE_ENV+= NEWCXX="${CXX}" \ PTHREAD_LIBS="-lpthread" CPPFLAGS+= -I${LOCALBASE}/include diff --git a/net/belle-sip/Makefile b/net/belle-sip/Makefile index a308bde2ba0e..20c407b5b298 100644 --- a/net/belle-sip/Makefile +++ b/net/belle-sip/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libantlr3c.so:devel/libantlr3c GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS= --disable-silent-rules --disable-strict --disable-tests \ +CONFIGURE_ARGS= --disable-strict --disable-tests \ --with-antlr=${LOCALBASE} INSTALL_TARGET= install-strip USES= compiler:c11 gmake libtool pathfix diff --git a/net/kea/Makefile b/net/kea/Makefile index 425dd52b8745..a0c734b7cc38 100644 --- a/net/kea/Makefile +++ b/net/kea/Makefile @@ -19,8 +19,7 @@ USE_LDCONFIG= yes USE_OPENSSL= yes USE_RC_SUBR= ${PORTNAME} GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --with-openssl=${OPENSSLBASE} \ +CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} \ --with-log4cplus=${LOCALBASE} \ --with-boost-include=${LOCALBASE}/include \ --with-boost-lib-dir=${LOCALBASE}/lib \ diff --git a/net/linphone/Makefile b/net/linphone/Makefile index 638bd206a78a..8150b1b42d4a 100644 --- a/net/linphone/Makefile +++ b/net/linphone/Makefile @@ -19,7 +19,7 @@ CONFLICTS_INSTALL= linphone-base-[0-9]* GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-deplibs-link --disable-documentation \ - --disable-silent-rules --disable-speex --disable-strict \ + --disable-speex --disable-strict \ --disable-tutorials \ --enable-external-mediastreamer --enable-external-ortp \ --enable-lime --with-polarssl=${LOCALBASE} \ diff --git a/net/mediastreamer/Makefile b/net/mediastreamer/Makefile index cab6aac151c9..622919066c07 100644 --- a/net/mediastreamer/Makefile +++ b/net/mediastreamer/Makefile @@ -21,7 +21,7 @@ CONFLICTS_INSTALL= linphone-base-[0-9]* GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-alsa --disable-documentation --disable-matroska \ - --disable-pulseaudio --disable-silent-rules --disable-strict \ + --disable-pulseaudio --disable-strict \ --with-gsm=${LOCALBASE} --with-srtp=${LOCALBASE} \ --with-polarssl=${LOCALBASE} xxd_found=yes CPPFLAGS+= -I${LOCALBASE}/include -DHAVE_ARC4RANDOM diff --git a/net/netembryo/Makefile b/net/netembryo/Makefile index b2474f4963ca..09be5d9f7c66 100644 --- a/net/netembryo/Makefile +++ b/net/netembryo/Makefile @@ -27,7 +27,6 @@ USES= gmake libtool pathfix pkgconfig tar:bzip2 USE_GNOME= glib20 USE_LDCONFIG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules INSTALL_TARGET= install-strip .include <bsd.port.options.mk> diff --git a/net/ntp-devel/Makefile b/net/ntp-devel/Makefile index e2b5ae149934..4c3bbb86eda4 100644 --- a/net/ntp-devel/Makefile +++ b/net/ntp-devel/Makefile @@ -22,7 +22,6 @@ USES= cpe pathfix shebangfix libedit libtool pkgconfig ssl \ gettext-runtime GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules TEST_TARGET= check diff --git a/net/ntp/Makefile b/net/ntp/Makefile index 35d9e737299d..cff41c044ae6 100644 --- a/net/ntp/Makefile +++ b/net/ntp/Makefile @@ -21,7 +21,6 @@ CONFLICTS= ntp-rc-* ntp-devel-* USES= cpe pathfix shebangfix libedit libtool pkgconfig ssl GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules TEST_TARGET= check diff --git a/net/openntpd/Makefile b/net/openntpd/Makefile index 6bedca6990fd..f9d3891f1e12 100644 --- a/net/openntpd/Makefile +++ b/net/openntpd/Makefile @@ -18,7 +18,6 @@ GROUPS= _ntp USE_RC_SUBR= openntpd GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules OPTIONS_DEFINE= RESSL RESSL_DESC= SSL/TLS support via LibreSSL diff --git a/net/ortp/Makefile b/net/ortp/Makefile index 98d8d1612970..79de2f70d8af 100644 --- a/net/ortp/Makefile +++ b/net/ortp/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS_INSTALL= linphone-base-[0-9]* GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-strict +CONFIGURE_ARGS= --disable-strict INSTALL_TARGET= install-strip USES= libtool pathfix pkgconfig USE_LDCONFIG= yes diff --git a/print/cups-filters/Makefile b/print/cups-filters/Makefile index fd5242dd5b3c..1db559cd8bc7 100644 --- a/print/cups-filters/Makefile +++ b/print/cups-filters/Makefile @@ -30,7 +30,7 @@ SHEBANG_FILES= filter/braille/drivers/generic/brftoembosser.in \ USE_GNOME= glib20 USE_RC_SUBR= cups_browsed GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --with-shell=/bin/sh \ +CONFIGURE_ARGS= --with-shell=/bin/sh \ ZLIB_CFLAGS=" " ZLIB_LIBS="-lz" INSTALL_TARGET= install-strip diff --git a/science/gwyddion/Makefile b/science/gwyddion/Makefile index 031661a979ec..a77416b92ee1 100644 --- a/science/gwyddion/Makefile +++ b/science/gwyddion/Makefile @@ -24,7 +24,7 @@ USE_GNOME= gconf2 gtk20 libxml2 USE_GL= glu USE_XORG= xmu GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-gtk-doc \ +CONFIGURE_ARGS= --disable-gtk-doc \ --without-kde4-thumbnailer INSTALL_TARGET= install-strip INSTALLS_ICONS= yes diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile index 5c151fcc48b7..becab3e808de 100644 --- a/security/gnutls/Makefile +++ b/security/gnutls/Makefile @@ -22,7 +22,6 @@ USES= cpe gmake iconv libtool makeinfo pathfix pkgconfig tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-guile \ - --disable-silent-rules \ --enable-local-libopts \ ac_cv_type_max_align_t=yes CPPFLAGS+= -I${LOCALBASE}/include diff --git a/security/libbzrtp/Makefile b/security/libbzrtp/Makefile index 4aca0f985577..c6a4f60430cd 100644 --- a/security/libbzrtp/Makefile +++ b/security/libbzrtp/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libmbedtls.so.9:security/polarssl13 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-strict \ +CONFIGURE_ARGS= --disable-strict \ --with-polarssl=${LOCALBASE} INSTALL_TARGET= install-strip USES= libtool pathfix pkgconfig diff --git a/security/suricata/Makefile b/security/suricata/Makefile index 9bbc5678556c..66d643669ef2 100644 --- a/security/suricata/Makefile +++ b/security/suricata/Makefile @@ -104,7 +104,6 @@ TESTS_CONFIGURE_ENABLE= unittests SUB_FILES= pkg-message CONFIGURE_ARGS+=--enable-gccprotect \ - --disable-silent-rules \ --with-libpcre-includes=${LOCALBASE}/include \ --with-libpcre-libraries=${LOCALBASE}/lib \ --with-libyaml-includes=${LOCALBASE}/include \ diff --git a/sysutils/fusefs-simple-mtpfs/Makefile b/sysutils/fusefs-simple-mtpfs/Makefile index d8f9dc926d6b..91b10501c2aa 100644 --- a/sysutils/fusefs-simple-mtpfs/Makefile +++ b/sysutils/fusefs-simple-mtpfs/Makefile @@ -18,7 +18,6 @@ GH_ACCOUNT= phatina USES= autoreconf compiler:c++11-lib fuse localbase pkgconfig GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules MAKEFILE= makefile INSTALL_TARGET= install-strip PLIST_FILES= bin/${PORTNAME} \ diff --git a/sysutils/fusefs-squashfuse/Makefile b/sysutils/fusefs-squashfuse/Makefile index c0fa423325aa..40c0ba6e8caa 100644 --- a/sysutils/fusefs-squashfuse/Makefile +++ b/sysutils/fusefs-squashfuse/Makefile @@ -16,7 +16,6 @@ GH_ACCOUNT= vasi USES= autoreconf fuse libtool pkgconfig GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules PLIST_FILES= bin/squashfuse bin/squashfuse_ll man/man1/squashfuse.1.gz diff --git a/sysutils/libcpuid/Makefile b/sysutils/libcpuid/Makefile index 43236a828423..a49ec310c9b5 100644 --- a/sysutils/libcpuid/Makefile +++ b/sysutils/libcpuid/Makefile @@ -15,7 +15,6 @@ ONLY_FOR_ARCHS= i386 amd64 USES= libtool pathfix GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules USE_LDCONFIG= yes INSTALL_TARGET= install-strip diff --git a/sysutils/unieject/Makefile b/sysutils/unieject/Makefile index 4cbc96ad2a6d..fc74b2e7dea8 100644 --- a/sysutils/unieject/Makefile +++ b/sysutils/unieject/Makefile @@ -20,8 +20,7 @@ LIB_DEPENDS= libconfuse.so:devel/libconfuse \ USES= tar:bzip2 pathfix pkgconfig gettext iconv libtool USE_GNOME= glib20 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-doc +CONFIGURE_ARGS= --disable-doc USE_LDCONFIG= yes INSTALL_TARGET= install-strip diff --git a/sysutils/watchman/Makefile b/sysutils/watchman/Makefile index 9b1ff6116628..07a2996fbd05 100644 --- a/sysutils/watchman/Makefile +++ b/sysutils/watchman/Makefile @@ -20,10 +20,6 @@ CONFIGURE_ENV= ac_cv_prog_HAVE_ARC=false ac_cv_header_sys_inotify_h=no CONFIGURE_ARGS= --without-python --without-ruby # in separate ports TEST_TARGET= check -.if defined(BATCH) || defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+= --disable-silent-rules -.endif - PLIST_FILES= bin/${PORTNAME} \ "@dir(,,2777) /var/run/${PORTNAME}" PORTDOCS= README.markdown diff --git a/textproc/google-ctemplate/Makefile b/textproc/google-ctemplate/Makefile index aea95159f7e9..b250e02b3c28 100644 --- a/textproc/google-ctemplate/Makefile +++ b/textproc/google-ctemplate/Makefile @@ -17,7 +17,6 @@ OPTIONS_DEFINE= DOCS USES= libtool pathfix pkgconfig python shebangfix GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules SHEBANG_FILES= src/template-converter src/htmlparser/generate_fsm.py src/htmlparser/fsm_config.py USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/textproc/groonga/Makefile b/textproc/groonga/Makefile index b9a85b3bb302..8cb3e35fa004 100644 --- a/textproc/groonga/Makefile +++ b/textproc/groonga/Makefile @@ -16,7 +16,6 @@ USES= execinfo gmake libedit libtool pathfix pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-benchmark \ --disable-document \ - --disable-silent-rules \ --localstatedir=/var \ --without-cutter \ --without-inkscape \ diff --git a/textproc/libucl/Makefile b/textproc/libucl/Makefile index 8d929ea6c9f6..a8e7ed95c90e 100644 --- a/textproc/libucl/Makefile +++ b/textproc/libucl/Makefile @@ -41,7 +41,6 @@ USE_GITHUB= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --disable-silent-rules GH_ACCOUNT= vstakhov diff --git a/textproc/uncrustify/Makefile b/textproc/uncrustify/Makefile index e668a9bdef8f..46615c6fe567 100644 --- a/textproc/uncrustify/Makefile +++ b/textproc/uncrustify/Makefile @@ -14,7 +14,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes USES= gmake -CONFIGURE_ARGS= --disable-silent-rules TEST_TARGET= check PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz diff --git a/textproc/xmlwrapp/Makefile b/textproc/xmlwrapp/Makefile index a3f31446909e..7ea36f73e6a7 100644 --- a/textproc/xmlwrapp/Makefile +++ b/textproc/xmlwrapp/Makefile @@ -27,7 +27,6 @@ XSLT_CONFIGURE_ENABLE= xslt USES= pathfix pkgconfig libtool USE_GNOME= libxml2 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules USE_LDCONFIG= yes INSTALL_TARGET= install-strip diff --git a/textproc/zorba/Makefile b/textproc/zorba/Makefile index 8889dd265586..b28226fb6ea7 100644 --- a/textproc/zorba/Makefile +++ b/textproc/zorba/Makefile @@ -41,8 +41,7 @@ USES= cmake:outsource compiler:c++11-lib execinfo CXXFLAGS+= -I${LOCALBASE}/include -O1 # compiler hangs with -O2 on CURRENT LDFLAGS+= -L${LOCALBASE}/lib CMAKE_ARGS= -DCMAKE_REQUIRED_FLAGS:STRING="-I${LOCALBASE}/include -L${LOCALBASE}/lib" \ - -DLOCALBASE:STRING=${LOCALBASE} \ - -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON + -DLOCALBASE:STRING=${LOCALBASE} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} diff --git a/www/cherokee/Makefile b/www/cherokee/Makefile index da9b3d7ba8a4..1fa43321865f 100644 --- a/www/cherokee/Makefile +++ b/www/cherokee/Makefile @@ -27,8 +27,7 @@ SHEBANG_FILES= admin/CTK/CTK-run.pre admin/server.py \ USE_RC_SUBR= cherokee USE_OPENSSL= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-static \ +CONFIGURE_ARGS= --disable-static \ --localstatedir=${CHEROKEE_VARDIR} \ --without-php \ --with-python=${PYTHON_CMD} \ diff --git a/www/gecko-mediaplayer/Makefile b/www/gecko-mediaplayer/Makefile index bd06d14e48f1..e07f43cc43ec 100644 --- a/www/gecko-mediaplayer/Makefile +++ b/www/gecko-mediaplayer/Makefile @@ -21,8 +21,7 @@ USES= compiler:c++11-lang gecko gettext pkgconfig webplugin:native USE_GNOME= glib20 USE_CXXSTD= c++11 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-schemas-install \ +CONFIGURE_ARGS= --disable-schemas-install \ --with-plugin_dir="${WEBPLUGIN_DIR}" CPPFLAGS+= -I${LOCALBASE}/include diff --git a/www/gnome-web-photo/Makefile b/www/gnome-web-photo/Makefile index 3f5507d34df2..f4595429f2ca 100644 --- a/www/gnome-web-photo/Makefile +++ b/www/gnome-web-photo/Makefile @@ -19,8 +19,7 @@ LIB_DEPENDS= libwebkitgtk-1.0.so:www/webkit-gtk2 USE_GNOME= gconf2 gnomeprefix intltool USES= gettext gmake pathfix pkgconfig tar:xz GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --with-gtk=2.0 +CONFIGURE_ARGS= --with-gtk=2.0 GCONF_SCHEMAS= thumbnailer.schemas diff --git a/www/tinyproxy/Makefile b/www/tinyproxy/Makefile index 1d15923d5be7..043775f39e78 100644 --- a/www/tinyproxy/Makefile +++ b/www/tinyproxy/Makefile @@ -21,7 +21,6 @@ TRANSPARENT_DESC= Transparent proxy support XHEADER_DESC= X-Tinyproxy header CONFIGURE_ARGS= --bindir=${PREFIX}/sbin \ - --disable-silent-rules \ --program-transform-name="" GNU_CONFIGURE= yes USE_RC_SUBR= ${PORTNAME} diff --git a/www/trafficserver/Makefile b/www/trafficserver/Makefile index ec8fbc66136f..1f9c6b3241c6 100644 --- a/www/trafficserver/Makefile +++ b/www/trafficserver/Makefile @@ -37,7 +37,6 @@ CONFIGURE_ARGS= --with-libxml2=${LOCALBASE} \ --with-openssl=${OPENSSLBASE} \ --with-xml=libxml2 \ --with-tcl=${TCL_LIBDIR} \ - --disable-silent-rules \ --enable-cppapi \ --localstatedir=/var \ --with-user=${USERS} \ diff --git a/www/webkit-gtk3/Makefile b/www/webkit-gtk3/Makefile index ac762fa46f44..286ece863515 100644 --- a/www/webkit-gtk3/Makefile +++ b/www/webkit-gtk3/Makefile @@ -50,7 +50,6 @@ MAKE_ENV= XDG_CACHE_HOME=${WRKDIR} BROKEN_sparc64= fails to detect working compiler -#CONFIGURE_ARGS+=--disable-silent-rules CONFIGURE_ARGS+=--disable-egl \ --disable-gles2 # --with-acceleration-backend=opengl # clutter broken? diff --git a/x11-fonts/fntsample/Makefile b/x11-fonts/fntsample/Makefile index 0ca0049dd60e..b48852ddf742 100644 --- a/x11-fonts/fntsample/Makefile +++ b/x11-fonts/fntsample/Makefile @@ -18,8 +18,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= pdfoutline:textproc/pdfoutline -CONFIGURE_ARGS= --disable-silent-rules \ - --with-unicode-blocks=${WRKSRC}/Blocks.txt +CONFIGURE_ARGS= --with-unicode-blocks=${WRKSRC}/Blocks.txt GNU_CONFIGURE= yes USE_GNOME= pango USE_PERL5= run diff --git a/x11-wm/lxsession/Makefile b/x11-wm/lxsession/Makefile index f1a318f85196..a2fddd3da12f 100644 --- a/x11-wm/lxsession/Makefile +++ b/x11-wm/lxsession/Makefile @@ -21,7 +21,6 @@ LIB_DEPENDS= libhal.so:sysutils/hal \ USES= gmake iconv localbase pkgconfig USE_GNOME= gtk20 intlhack libxslt GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules USE_LDCONFIG= yes OPTIONS_DEFINE= NLS diff --git a/x11/keybinder-gtk3/Makefile b/x11/keybinder-gtk3/Makefile index 88e0b8e41756..f7f2f1916cac 100644 --- a/x11/keybinder-gtk3/Makefile +++ b/x11/keybinder-gtk3/Makefile @@ -22,7 +22,7 @@ PATHFIX_MAKEFILEIN= Makefile.am USE_GNOME= gtk30 introspection:build USE_XORG= x11 xext xrender GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-gtk-doc +CONFIGURE_ARGS= --disable-gtk-doc INSTALL_TARGET= install-strip USE_LDCONFIG= yes diff --git a/x11/keybinder/Makefile b/x11/keybinder/Makefile index ef4c2cb79ff2..94957d611282 100644 --- a/x11/keybinder/Makefile +++ b/x11/keybinder/Makefile @@ -21,7 +21,7 @@ PATHFIX_MAKEFILEIN= Makefile.am USE_GNOME= gtk20 introspection:build USE_XORG= x11 xext xrender GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-gtk-doc +CONFIGURE_ARGS= --disable-gtk-doc INSTALL_TARGET= install-strip USE_LDCONFIG= yes diff --git a/x11/lxpanel/Makefile b/x11/lxpanel/Makefile index 6118e639dbf6..4794d4a254aa 100644 --- a/x11/lxpanel/Makefile +++ b/x11/lxpanel/Makefile @@ -26,7 +26,7 @@ USES= gmake pathfix pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --prefix="${PREFIX}" \ --with-plugins=netstatus,volume,volumealsa,deskno,batt,kbled,xkb,thermal,cpu,cpufreq,monitors,wnckpager \ - --with-x --disable-silent-rules \ + --with-x \ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CFLAGS+= -I${WRKSRC} diff --git a/x11/sbxkb/Makefile b/x11/sbxkb/Makefile index c49c75c92322..ddb77d661bd6 100644 --- a/x11/sbxkb/Makefile +++ b/x11/sbxkb/Makefile @@ -12,7 +12,6 @@ COMMENT= XKB keyboard layout indicator and switcher LICENSE= GPLv3 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules LIBS+= -L${LOCALBASE}/lib -lX11 USES= pkgconfig USE_GNOME= gtk20 diff --git a/x11/workrave/Makefile b/x11/workrave/Makefile index ca177e2fb5d1..21b5ca781a27 100644 --- a/x11/workrave/Makefile +++ b/x11/workrave/Makefile @@ -12,12 +12,11 @@ LICENSE= GPLv3+ LIB_DEPENDS= libgdome.so:textproc/gdome2 -USES= autoreconf:build gettext gmake libtool pathfix pkgconfig +USES= autoreconf:build gettext gmake libtool pathfix pkgconfig USE_XORG= ice recordproto sm x11 xext xmu xscrnsaver xtst USE_GNOME= intltool intlhack introspection gtkmm30 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-gsettings \ +CONFIGURE_ARGS= --disable-gsettings \ --disable-pulse \ --disable-gconf \ --disable-mate \ diff --git a/x11/xtermcontrol/Makefile b/x11/xtermcontrol/Makefile index 692284ddd6f7..ea28601df227 100644 --- a/x11/xtermcontrol/Makefile +++ b/x11/xtermcontrol/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2+ GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_libintl_h=no -CONFIGURE_ARGS= --disable-silent-rules PLIST_FILES= bin/xtermcontrol man/man1/xtermcontrol.1.gz |