FreeBSD Bugzilla – Attachment 174431 Details for
Bug 212075
Switch to verbose builds for cmake, ninja and GNU configure
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch v3
verbose-build.patch (text/plain), 43.25 KB, created by
Dmitry Marakasov
on 2016-09-06 18:47:24 UTC
(
hide
)
Description:
Patch v3
Filename:
MIME Type:
Creator:
Dmitry Marakasov
Created:
2016-09-06 18:47:24 UTC
Size:
43.25 KB
patch
obsolete
>Index: CHANGES >=================================================================== >--- CHANGES (revision 421435) >+++ CHANGES (working copy) >@@ -10,6 +10,13 @@ > > All ports committers are allowed to commit to this file. > >+20160906: >+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. >+ > 20160824: > AUTHOR: mat@FreeBSD.org > >Index: Mk/Uses/cmake.mk >=================================================================== >--- Mk/Uses/cmake.mk (revision 421435) >+++ Mk/Uses/cmake.mk (working copy) >@@ -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 @@ > -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 >Index: Mk/Uses/ninja.mk >=================================================================== >--- Mk/Uses/ninja.mk (revision 421435) >+++ Mk/Uses/ninja.mk (working copy) >@@ -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 @@ > IGNORE= Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments > .endif > >-.if defined(NINJA_VERBOSE) > MAKE_ARGS+= -v >-.endif > > BUILD_DEPENDS+= ninja:devel/ninja > >Index: Mk/bsd.port.mk >=================================================================== >--- Mk/bsd.port.mk (revision 421435) >+++ Mk/bsd.port.mk (working copy) >@@ -2503,6 +2503,9 @@ > 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 ; \ >Index: archivers/gcpio/Makefile >=================================================================== >--- archivers/gcpio/Makefile (revision 421435) >+++ archivers/gcpio/Makefile (working copy) >@@ -17,7 +17,6 @@ > > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --program-prefix=g \ >- --disable-silent-rules \ > --with-rmt=/etc/rmt > TEST_TARGET= check > >Index: archivers/gtar/Makefile >=================================================================== >--- archivers/gtar/Makefile (revision 421435) >+++ archivers/gtar/Makefile (working copy) >@@ -18,8 +18,7 @@ > 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 >Index: archivers/lhasa/Makefile >=================================================================== >--- archivers/lhasa/Makefile (revision 421435) >+++ archivers/lhasa/Makefile (working copy) >@@ -17,8 +17,7 @@ > 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 >Index: audio/beast/Makefile >=================================================================== >--- audio/beast/Makefile (revision 421435) >+++ audio/beast/Makefile (working copy) >@@ -25,8 +25,7 @@ > 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 >Index: audio/flac/Makefile >=================================================================== >--- audio/flac/Makefile (revision 421435) >+++ audio/flac/Makefile (working copy) >@@ -25,7 +25,6 @@ > --enable-sse \ > --with-ogg="${LOCALBASE}" \ > --disable-doxygen-docs \ >- --disable-silent-rules \ > --disable-thorough-tests \ > --disable-xmms-plugin > INSTALL_TARGET= install-strip >Index: audio/libgpod/Makefile >=================================================================== >--- audio/libgpod/Makefile (revision 421435) >+++ audio/libgpod/Makefile (working copy) >@@ -18,7 +18,7 @@ > > 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 >Index: audio/soundtouch/Makefile >=================================================================== >--- audio/soundtouch/Makefile (revision 421435) >+++ audio/soundtouch/Makefile (working copy) >@@ -14,7 +14,6 @@ > WRKSRC= ${WRKDIR}/${PORTNAME} > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > USE_LDCONFIG= yes > > USES= autoreconf libtool pathfix >Index: audio/speex/files/patch-configure >=================================================================== >--- audio/speex/files/patch-configure (nonexistent) >+++ audio/speex/files/patch-configure (working copy) >@@ -0,0 +1,10 @@ >+--- configure.orig 2014-12-06 19:58:24 UTC >++++ configure >+@@ -2486,6 +2486,7 @@ case $enable_silent_rules in # ((( >+ no) AM_DEFAULT_VERBOSITY=1;; >+ *) AM_DEFAULT_VERBOSITY=0;; >+ esac >++unset enableval >+ am_make=${MAKE-make} >+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 >+ $as_echo_n "checking whether $am_make supports nested variables... " >&6; } > >Property changes on: audio/speex/files/patch-configure >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: audio/xmms-flac/Makefile >=================================================================== >--- audio/xmms-flac/Makefile (revision 421435) >+++ audio/xmms-flac/Makefile (working copy) >@@ -15,7 +15,6 @@ > > USES= iconv libtool tar:xz > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > CPPFLAGS+= -I${LOCALBASE}/include > LDFLAGS+= -L${LOCALBASE}/lib > >Index: biology/ncbi-blast+/files/patch-src_build-system_configure >=================================================================== >--- biology/ncbi-blast+/files/patch-src_build-system_configure (revision 421435) >+++ biology/ncbi-blast+/files/patch-src_build-system_configure (working copy) >@@ -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=* ) > ;; > > * ) >Index: cad/adms/Makefile >=================================================================== >--- cad/adms/Makefile (revision 421435) >+++ cad/adms/Makefile (working copy) >@@ -15,7 +15,6 @@ > 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 > >Index: comms/dfu-util/Makefile >=================================================================== >--- comms/dfu-util/Makefile (revision 421435) >+++ comms/dfu-util/Makefile (working copy) >@@ -14,7 +14,6 @@ > 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 > >Index: databases/rrdtool/Makefile >=================================================================== >--- databases/rrdtool/Makefile (revision 421435) >+++ databases/rrdtool/Makefile (working copy) >@@ -15,7 +15,7 @@ > > 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 >Index: deskutils/gnotime/Makefile >=================================================================== >--- deskutils/gnotime/Makefile (revision 421435) >+++ deskutils/gnotime/Makefile (working copy) >@@ -21,7 +21,6 @@ > 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 >Index: devel/eris/Makefile >=================================================================== >--- devel/eris/Makefile (revision 421435) >+++ devel/eris/Makefile (working copy) >@@ -16,7 +16,6 @@ > 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 >Index: devel/gitg/Makefile >=================================================================== >--- devel/gitg/Makefile (revision 421435) >+++ devel/gitg/Makefile (working copy) >@@ -27,8 +27,7 @@ > > 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 >Index: devel/glib20/Makefile >=================================================================== >--- devel/glib20/Makefile (revision 421435) >+++ devel/glib20/Makefile (working copy) >@@ -97,8 +97,7 @@ > .endif > > .if ${PORT_OPTIONS:MDEBUG} >-CONFIGURE_ARGS+= --enable-debug=yes \ >- --disable-silent-rules >+CONFIGURE_ARGS+= --enable-debug=yes > .endif > > post-patch: >Index: devel/libclc/Makefile >=================================================================== >--- devel/libclc/Makefile (revision 421435) >+++ devel/libclc/Makefile (working copy) >@@ -15,7 +15,6 @@ > GH_ACCOUNT= llvm-mirror > GH_TAGNAME= 6d78407 > >-GNU_CONFIGURE= yes > USES= gmake python:2,build ninja > USE_LDCONFIG= yes > MAKE_ENV= MAKE=${GMAKE} DESTDIR=${STAGEDIR} >@@ -35,6 +34,7 @@ > do-configure: > @cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} -g ninja \ > --with-llvm-config=${LOCALBASE}/bin/llvm-config${LLVMVER} \ >- --pkgconfigdir=${PREFIX}/libdata/pkgconfig >+ --pkgconfigdir=${PREFIX}/libdata/pkgconfig \ >+ --prefix=${PREFIX} > > .include <bsd.port.mk> >Index: devel/libqb/Makefile >=================================================================== >--- devel/libqb/Makefile (revision 421435) >+++ devel/libqb/Makefile (working copy) >@@ -20,7 +20,7 @@ > 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 >Index: devel/lua-alien/Makefile >=================================================================== >--- devel/lua-alien/Makefile (revision 421435) >+++ devel/lua-alien/Makefile (working copy) >@@ -22,8 +22,7 @@ > 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 >Index: devel/lua-posix/Makefile >=================================================================== >--- devel/lua-posix/Makefile (revision 421435) >+++ devel/lua-posix/Makefile (working copy) >@@ -17,7 +17,6 @@ > 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= * >Index: devel/mercator/Makefile >=================================================================== >--- devel/mercator/Makefile (revision 421435) >+++ devel/mercator/Makefile (working copy) >@@ -12,7 +12,6 @@ > > 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 >Index: devel/patch/Makefile >=================================================================== >--- devel/patch/Makefile (revision 421435) >+++ devel/patch/Makefile (working copy) >@@ -13,7 +13,7 @@ > > 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 >Index: devel/wandio/Makefile >=================================================================== >--- devel/wandio/Makefile (revision 421435) >+++ devel/wandio/Makefile (working copy) >@@ -12,7 +12,6 @@ > LICENSE= GPLv2 > > USES= libtool >-CONFIGURE_ARGS= --disable-silent-rules > GNU_CONFIGURE= yes > USE_LDCONFIG= yes > >Index: dns/hesiod/Makefile >=================================================================== >--- dns/hesiod/Makefile (revision 421435) >+++ dns/hesiod/Makefile (working copy) >@@ -18,7 +18,6 @@ > > USES= libtool pathfix > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > INSTALL_TARGET= install-strip > USE_LDCONFIG= yes > >Index: dns/knot1/Makefile >=================================================================== >--- dns/knot1/Makefile (revision 421435) >+++ dns/knot1/Makefile (working copy) >@@ -27,10 +27,6 @@ > 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} >Index: dns/knot2/Makefile >=================================================================== >--- dns/knot2/Makefile (revision 421435) >+++ dns/knot2/Makefile (working copy) >@@ -30,10 +30,6 @@ > --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} >Index: games/7kaa/Makefile >=================================================================== >--- games/7kaa/Makefile (revision 421435) >+++ games/7kaa/Makefile (working copy) >@@ -15,8 +15,7 @@ > 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 > >Index: games/burrtools/Makefile >=================================================================== >--- games/burrtools/Makefile (revision 421435) >+++ games/burrtools/Makefile (working copy) >@@ -22,7 +22,6 @@ > 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 >Index: games/euchre/Makefile >=================================================================== >--- games/euchre/Makefile (revision 421435) >+++ games/euchre/Makefile (working copy) >@@ -19,7 +19,6 @@ > USES= pkgconfig > USE_GNOME= gtk20 > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > > PLIST_FILES= bin/${PORTNAME} \ > share/pixmaps/${PORTNAME}.png >Index: games/lander/Makefile >=================================================================== >--- games/lander/Makefile (revision 421435) >+++ games/lander/Makefile (working copy) >@@ -22,8 +22,7 @@ > 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= * >Index: graphics/entangle/Makefile >=================================================================== >--- graphics/entangle/Makefile (revision 421435) >+++ graphics/entangle/Makefile (working copy) >@@ -30,12 +30,6 @@ > 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 > >Index: graphics/gnash/Makefile >=================================================================== >--- graphics/gnash/Makefile (revision 421435) >+++ graphics/gnash/Makefile (working copy) >@@ -36,8 +36,7 @@ > --with-plugins-install=prefix \ > --sysconfdir="${SYSCONFIGDIR}" \ > --disable-kparts3 \ >- --disable-jemalloc \ >- --disable-silent-rules >+ --disable-jemalloc > > GNASHVER= ${PORTVERSION} > CONFIG_FILES= gnashpluginrc gnashrc >Index: graphics/graphviz/Makefile >=================================================================== >--- graphics/graphviz/Makefile (revision 421435) >+++ graphics/graphviz/Makefile (working copy) >@@ -162,8 +162,7 @@ > --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 >Index: graphics/gthumb/Makefile >=================================================================== >--- graphics/gthumb/Makefile (revision 421435) >+++ graphics/gthumb/Makefile (working copy) >@@ -24,8 +24,7 @@ > 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 >Index: graphics/ocrfeeder/Makefile >=================================================================== >--- graphics/ocrfeeder/Makefile (revision 421435) >+++ graphics/ocrfeeder/Makefile (working copy) >@@ -29,7 +29,6 @@ > 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 >Index: graphics/sekrit-twc-zimg/Makefile >=================================================================== >--- graphics/sekrit-twc-zimg/Makefile (revision 421435) >+++ graphics/sekrit-twc-zimg/Makefile (working copy) >@@ -23,7 +23,6 @@ > 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}} >Index: graphics/ufraw/Makefile >=================================================================== >--- graphics/ufraw/Makefile (revision 421435) >+++ graphics/ufraw/Makefile (working copy) >@@ -17,7 +17,7 @@ > 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 >Index: irc/hexchat/Makefile >=================================================================== >--- irc/hexchat/Makefile (revision 421435) >+++ irc/hexchat/Makefile (working copy) >@@ -21,9 +21,9 @@ > 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 > >Index: irc/ngircd/Makefile >=================================================================== >--- irc/ngircd/Makefile (revision 421435) >+++ irc/ngircd/Makefile (working copy) >@@ -17,7 +17,6 @@ > > USES= cpe tar:xz > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules # --docdir=${WRKDIR}/tmproot > USE_RC_SUBR= ngircd > > CPE_VENDOR= barton >Index: mail/mpop/Makefile >=================================================================== >--- mail/mpop/Makefile (revision 421435) >+++ mail/mpop/Makefile (working copy) >@@ -14,7 +14,7 @@ > 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 > >Index: mail/mu/Makefile >=================================================================== >--- mail/mu/Makefile (revision 421435) >+++ mail/mu/Makefile (working copy) >@@ -21,7 +21,7 @@ > 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 >Index: mail/mu4e/Makefile >=================================================================== >--- mail/mu4e/Makefile (revision 421435) >+++ mail/mu4e/Makefile (working copy) >@@ -18,8 +18,7 @@ > 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}" \ >Index: multimedia/ffms2/Makefile >=================================================================== >--- multimedia/ffms2/Makefile (revision 421435) >+++ multimedia/ffms2/Makefile (working copy) >@@ -21,7 +21,7 @@ > 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 >Index: multimedia/gmtk/Makefile >=================================================================== >--- multimedia/gmtk/Makefile (revision 421435) >+++ multimedia/gmtk/Makefile (working copy) >@@ -17,8 +17,7 @@ > 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 > >Index: multimedia/gnome-mplayer/Makefile >=================================================================== >--- multimedia/gnome-mplayer/Makefile (revision 421435) >+++ multimedia/gnome-mplayer/Makefile (working copy) >@@ -19,8 +19,7 @@ > 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 >Index: multimedia/gstreamer1-vaapi/Makefile >=================================================================== >--- multimedia/gstreamer1-vaapi/Makefile (revision 421435) >+++ multimedia/gstreamer1-vaapi/Makefile (working copy) >@@ -15,8 +15,7 @@ > 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 >Index: multimedia/vapoursynth/Makefile >=================================================================== >--- multimedia/vapoursynth/Makefile (revision 421435) >+++ multimedia/vapoursynth/Makefile (working copy) >@@ -14,7 +14,6 @@ > 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 >Index: multimedia/vlc/Makefile >=================================================================== >--- multimedia/vlc/Makefile (revision 421435) >+++ multimedia/vlc/Makefile (working copy) >@@ -41,7 +41,7 @@ > --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 \ >Index: net/belle-sip/Makefile >=================================================================== >--- net/belle-sip/Makefile (revision 421435) >+++ net/belle-sip/Makefile (working copy) >@@ -21,7 +21,7 @@ > 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 >Index: net/kea/Makefile >=================================================================== >--- net/kea/Makefile (revision 421435) >+++ net/kea/Makefile (working copy) >@@ -19,8 +19,7 @@ > 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 \ >Index: net/linphone/Makefile >=================================================================== >--- net/linphone/Makefile (revision 421435) >+++ net/linphone/Makefile (working copy) >@@ -19,7 +19,7 @@ > > 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} \ >Index: net/mediastreamer/Makefile >=================================================================== >--- net/mediastreamer/Makefile (revision 421435) >+++ net/mediastreamer/Makefile (working copy) >@@ -21,7 +21,7 @@ > > 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 >Index: net/netembryo/Makefile >=================================================================== >--- net/netembryo/Makefile (revision 421435) >+++ net/netembryo/Makefile (working copy) >@@ -27,7 +27,6 @@ > USE_GNOME= glib20 > USE_LDCONFIG= yes > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > INSTALL_TARGET= install-strip > > .include <bsd.port.options.mk> >Index: net/ntp/Makefile >=================================================================== >--- net/ntp/Makefile (revision 421435) >+++ net/ntp/Makefile (working copy) >@@ -21,7 +21,6 @@ > USES= cpe pathfix shebangfix libedit libtool pkgconfig ssl > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > > TEST_TARGET= check > >Index: net/ntp-devel/Makefile >=================================================================== >--- net/ntp-devel/Makefile (revision 421435) >+++ net/ntp-devel/Makefile (working copy) >@@ -22,7 +22,6 @@ > gettext-runtime > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > > TEST_TARGET= check > >Index: net/openntpd/Makefile >=================================================================== >--- net/openntpd/Makefile (revision 421435) >+++ net/openntpd/Makefile (working copy) >@@ -18,7 +18,6 @@ > USE_RC_SUBR= openntpd > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > > OPTIONS_DEFINE= RESSL > RESSL_DESC= SSL/TLS support via LibreSSL >Index: net/ortp/Makefile >=================================================================== >--- net/ortp/Makefile (revision 421435) >+++ net/ortp/Makefile (working copy) >@@ -15,7 +15,7 @@ > 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 >Index: net-mgmt/adcli/Makefile >=================================================================== >--- net-mgmt/adcli/Makefile (revision 421435) >+++ net-mgmt/adcli/Makefile (working copy) >@@ -26,7 +26,7 @@ > > 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 >Index: net-mgmt/netxms/Makefile >=================================================================== >--- net-mgmt/netxms/Makefile (revision 421435) >+++ net-mgmt/netxms/Makefile (working copy) >@@ -46,7 +46,6 @@ > USE_OPENSSL= yes > USES= gmake iconv libtool perl5 > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > USE_LDCONFIG= yes > INSTALL_TARGET= install-strip > >Index: net-p2p/gnunet/Makefile >=================================================================== >--- net-p2p/gnunet/Makefile (revision 421435) >+++ net-p2p/gnunet/Makefile (working copy) >@@ -30,8 +30,7 @@ > 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} \ >Index: net-p2p/mldonkey/Makefile >=================================================================== >--- net-p2p/mldonkey/Makefile (revision 421458) >+++ net-p2p/mldonkey/Makefile (working copy) >@@ -24,8 +24,7 @@ > 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 >Index: print/cups-filters/Makefile >=================================================================== >--- print/cups-filters/Makefile (revision 421435) >+++ print/cups-filters/Makefile (working copy) >@@ -30,7 +30,7 @@ > 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 > >Index: science/gwyddion/Makefile >=================================================================== >--- science/gwyddion/Makefile (revision 421435) >+++ science/gwyddion/Makefile (working copy) >@@ -24,7 +24,7 @@ > 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 >Index: security/gnutls/Makefile >=================================================================== >--- security/gnutls/Makefile (revision 421435) >+++ security/gnutls/Makefile (working copy) >@@ -22,7 +22,6 @@ > 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 >Index: security/libbzrtp/Makefile >=================================================================== >--- security/libbzrtp/Makefile (revision 421435) >+++ security/libbzrtp/Makefile (working copy) >@@ -15,7 +15,7 @@ > 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 >Index: security/suricata/Makefile >=================================================================== >--- security/suricata/Makefile (revision 421435) >+++ security/suricata/Makefile (working copy) >@@ -104,7 +104,6 @@ > 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 \ >Index: sysutils/fusefs-simple-mtpfs/Makefile >=================================================================== >--- sysutils/fusefs-simple-mtpfs/Makefile (revision 421435) >+++ sysutils/fusefs-simple-mtpfs/Makefile (working copy) >@@ -18,7 +18,6 @@ > > 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} \ >Index: sysutils/fusefs-squashfuse/Makefile >=================================================================== >--- sysutils/fusefs-squashfuse/Makefile (revision 421435) >+++ sysutils/fusefs-squashfuse/Makefile (working copy) >@@ -16,7 +16,6 @@ > > 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 > >Index: sysutils/libcpuid/Makefile >=================================================================== >--- sysutils/libcpuid/Makefile (revision 421435) >+++ sysutils/libcpuid/Makefile (working copy) >@@ -15,7 +15,6 @@ > > USES= libtool pathfix > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > USE_LDCONFIG= yes > INSTALL_TARGET= install-strip > >Index: sysutils/unieject/Makefile >=================================================================== >--- sysutils/unieject/Makefile (revision 421435) >+++ sysutils/unieject/Makefile (working copy) >@@ -20,8 +20,7 @@ > 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 > >Index: sysutils/watchman/Makefile >=================================================================== >--- sysutils/watchman/Makefile (revision 421435) >+++ sysutils/watchman/Makefile (working copy) >@@ -20,10 +20,6 @@ > 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 >Index: textproc/google-ctemplate/Makefile >=================================================================== >--- textproc/google-ctemplate/Makefile (revision 421435) >+++ textproc/google-ctemplate/Makefile (working copy) >@@ -17,7 +17,6 @@ > > 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 >Index: textproc/groonga/Makefile >=================================================================== >--- textproc/groonga/Makefile (revision 421435) >+++ textproc/groonga/Makefile (working copy) >@@ -16,7 +16,6 @@ > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --disable-benchmark \ > --disable-document \ >- --disable-silent-rules \ > --localstatedir=/var \ > --without-cutter \ > --without-inkscape \ >Index: textproc/libucl/Makefile >=================================================================== >--- textproc/libucl/Makefile (revision 421435) >+++ textproc/libucl/Makefile (working copy) >@@ -41,7 +41,6 @@ > USE_LDCONFIG= yes > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS+= --disable-silent-rules > > GH_ACCOUNT= vstakhov > >Index: textproc/uncrustify/Makefile >=================================================================== >--- textproc/uncrustify/Makefile (revision 421435) >+++ textproc/uncrustify/Makefile (working copy) >@@ -14,7 +14,6 @@ > > GNU_CONFIGURE= yes > USES= gmake >-CONFIGURE_ARGS= --disable-silent-rules > TEST_TARGET= check > > PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz >Index: textproc/xmlwrapp/Makefile >=================================================================== >--- textproc/xmlwrapp/Makefile (revision 421435) >+++ textproc/xmlwrapp/Makefile (working copy) >@@ -27,7 +27,6 @@ > USES= pathfix pkgconfig libtool > USE_GNOME= libxml2 > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > USE_LDCONFIG= yes > INSTALL_TARGET= install-strip > >Index: www/cherokee/Makefile >=================================================================== >--- www/cherokee/Makefile (revision 421435) >+++ www/cherokee/Makefile (working copy) >@@ -27,8 +27,7 @@ > 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} \ >Index: www/gecko-mediaplayer/Makefile >=================================================================== >--- www/gecko-mediaplayer/Makefile (revision 421435) >+++ www/gecko-mediaplayer/Makefile (working copy) >@@ -21,8 +21,7 @@ > 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 >Index: www/gnome-web-photo/Makefile >=================================================================== >--- www/gnome-web-photo/Makefile (revision 421435) >+++ www/gnome-web-photo/Makefile (working copy) >@@ -19,8 +19,7 @@ > 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 > >Index: www/tinyproxy/Makefile >=================================================================== >--- www/tinyproxy/Makefile (revision 421435) >+++ www/tinyproxy/Makefile (working copy) >@@ -21,7 +21,6 @@ > XHEADER_DESC= X-Tinyproxy header > > CONFIGURE_ARGS= --bindir=${PREFIX}/sbin \ >- --disable-silent-rules \ > --program-transform-name="" > GNU_CONFIGURE= yes > USE_RC_SUBR= ${PORTNAME} >Index: www/trafficserver/Makefile >=================================================================== >--- www/trafficserver/Makefile (revision 421435) >+++ www/trafficserver/Makefile (working copy) >@@ -37,7 +37,6 @@ > --with-openssl=${OPENSSLBASE} \ > --with-xml=libxml2 \ > --with-tcl=${TCL_LIBDIR} \ >- --disable-silent-rules \ > --enable-cppapi \ > --localstatedir=/var \ > --with-user=${USERS} \ >Index: www/webkit-gtk3/Makefile >=================================================================== >--- www/webkit-gtk3/Makefile (revision 421435) >+++ www/webkit-gtk3/Makefile (working copy) >@@ -50,7 +50,6 @@ > > BROKEN_sparc64= fails to detect working compiler > >-#CONFIGURE_ARGS+=--disable-silent-rules > CONFIGURE_ARGS+=--disable-egl \ > --disable-gles2 > # --with-acceleration-backend=opengl # clutter broken? >Index: x11/keybinder/Makefile >=================================================================== >--- x11/keybinder/Makefile (revision 421435) >+++ x11/keybinder/Makefile (working copy) >@@ -21,7 +21,7 @@ > 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 > >Index: x11/keybinder-gtk3/Makefile >=================================================================== >--- x11/keybinder-gtk3/Makefile (revision 421435) >+++ x11/keybinder-gtk3/Makefile (working copy) >@@ -22,7 +22,7 @@ > 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 > >Index: x11/lxpanel/Makefile >=================================================================== >--- x11/lxpanel/Makefile (revision 421435) >+++ x11/lxpanel/Makefile (working copy) >@@ -26,7 +26,7 @@ > 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} >Index: x11/sbxkb/Makefile >=================================================================== >--- x11/sbxkb/Makefile (revision 421435) >+++ x11/sbxkb/Makefile (working copy) >@@ -12,7 +12,6 @@ > LICENSE= GPLv3 > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > LIBS+= -L${LOCALBASE}/lib -lX11 > USES= pkgconfig > USE_GNOME= gtk20 >Index: x11/workrave/Makefile >=================================================================== >--- x11/workrave/Makefile (revision 421435) >+++ x11/workrave/Makefile (working copy) >@@ -12,12 +12,11 @@ > > 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 \ >Index: x11/xtermcontrol/Makefile >=================================================================== >--- x11/xtermcontrol/Makefile (revision 421435) >+++ x11/xtermcontrol/Makefile (working copy) >@@ -14,7 +14,6 @@ > > 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 > >Index: x11-fonts/fntsample/Makefile >=================================================================== >--- x11-fonts/fntsample/Makefile (revision 421435) >+++ x11-fonts/fntsample/Makefile (working copy) >@@ -18,8 +18,7 @@ > > 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 >Index: x11-wm/lxsession/Makefile >=================================================================== >--- x11-wm/lxsession/Makefile (revision 421435) >+++ x11-wm/lxsession/Makefile (working copy) >@@ -21,7 +21,6 @@ > USES= gmake iconv localbase pkgconfig > USE_GNOME= gtk20 intlhack libxslt > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > USE_LDCONFIG= yes > > OPTIONS_DEFINE= NLS
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 212075
:
173968
|
174417
|
174427
|
174429
| 174431 |
174443
|
174446