FreeBSD Bugzilla – Attachment 175705 Details for
Bug 213446
Configurable verbose build output
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch for ports
ports.diff (text/plain), 21.38 KB, created by
lightside
on 2016-10-13 12:29:24 UTC
(
hide
)
Description:
Proposed patch for ports
Filename:
MIME Type:
Creator:
lightside
Created:
2016-10-13 12:29:24 UTC
Size:
21.38 KB
patch
obsolete
>diff --git audio/lv2core/Makefile audio/lv2core/Makefile >--- audio/lv2core/Makefile >+++ audio/lv2core/Makefile >@@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING > > USES= pkgconfig python:build tar:bzip2 waf > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS+= --verbose > .endif > >diff --git audio/patchage/Makefile audio/patchage/Makefile >--- audio/patchage/Makefile >+++ audio/patchage/Makefile >@@ -30,7 +30,7 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ > > CFLAGS+= -I${LOCALBASE}/include > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= --verbose > .endif > >diff --git audio/raul/Makefile audio/raul/Makefile >--- audio/raul/Makefile >+++ audio/raul/Makefile >@@ -21,7 +21,7 @@ USE_LDCONFIG= yes > > CFLAGS+= -I${LOCALBASE}/include > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= --verbose > .endif > >diff --git audio/slv2/Makefile audio/slv2/Makefile >--- audio/slv2/Makefile >+++ audio/slv2/Makefile >@@ -20,7 +20,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ > USES= pkgconfig tar:bzip2 waf > USE_LDCONFIG= yes > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= --verbose > .endif > >diff --git cad/linuxcnc-devel/Makefile cad/linuxcnc-devel/Makefile >--- cad/linuxcnc-devel/Makefile >+++ cad/linuxcnc-devel/Makefile >@@ -34,7 +34,6 @@ ALL_TARGET= default > > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --with-realtime=uspace --enable-non-distributable=yes CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" CXXFLAGS="-I${LOCALBASE}/include" CXX=c++ CC=cc --with-locale-dir="${PREFIX}/share/locale" >-MAKE_ENV= BUILD_VERBOSE=1 > USES= autoreconf gettext gmake ncurses pkgconfig python readline shebangfix tk > USE_GL= gl glu > USE_GNOME= cairo gdkpixbuf2 pygtksourceview >@@ -45,6 +44,10 @@ GH_ACCOUNT= LinuxCNC > GH_PROJECT= linuxcnc > GH_TAGNAME= fe7b155c03fe77d6eb301bcfdc3d7c1acdea73e4 > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ENV= BUILD_VERBOSE=1 >+.endif >+ > post-patch: > ${FIND} ${PATCH_WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} \ > -e 's|#!.*/bin/bash|#!${LOCALBASE}/bin/bash|' \ >diff --git databases/libgda5/Makefile databases/libgda5/Makefile >--- databases/libgda5/Makefile >+++ databases/libgda5/Makefile >@@ -31,8 +31,7 @@ INSTALL_TARGET= install-strip > CONFIGURE_ARGS= --without-oracle \ > --disable-crypto \ > --disable-default-binary \ >- --enable-introspection \ >- --disable-silent-rules >+ --enable-introspection > > .include <bsd.port.options.mk> > >diff --git devel/cargo/Makefile devel/cargo/Makefile >--- devel/cargo/Makefile >+++ devel/cargo/Makefile >@@ -68,7 +68,7 @@ CONFIGURE_ARGS= --prefix="${PREFIX}" --mandir="${MANPREFIX}/man" > MAKE_ENV= ARGS="${CARGO_ARGS}" > CARGO_ARGS= --jobs ${MAKE_JOBS_NUMBER} > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS+= VERBOSE=1 > .endif > >diff --git devel/compiler-rt/Makefile devel/compiler-rt/Makefile >--- devel/compiler-rt/Makefile >+++ devel/compiler-rt/Makefile >@@ -21,7 +21,10 @@ CMAKE_SOURCE_PATH= ${WRKSRC} > > USES= cmake tar:bzip2 > USE_LDCONFIG= yes >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= VERBOSE=1 >+.endif > > LLVM_SVN= http://llvm.org/svn/llvm-project > >diff --git devel/geany-plugins/files/Makefile.common devel/geany-plugins/files/Makefile.common >--- devel/geany-plugins/files/Makefile.common >+++ devel/geany-plugins/files/Makefile.common >@@ -29,10 +29,6 @@ ${GEANY_PLUGIN}_SWITCH?= --enable-${${GEANY_PLUGIN}_DIR} > > CONFIGURE_ARGS+= ${${GEANY_PLUGIN}_SWITCH} > >-.if defined(VERBOSE_BUILD) || defined(PACKAGE_BUILDING) >-CONFIGURE_ARGS+= --disable-silent-rules >-.endif >- > BUILD_WRKSRC= ${WRKSRC}/${${GEANY_PLUGIN}_DIR} > INSTALL_WRKSRC= ${BUILD_WRKSRC} > >diff --git devel/git/Makefile devel/git/Makefile >--- devel/git/Makefile >+++ devel/git/Makefile >@@ -28,7 +28,11 @@ GNU_CONFIGURE= yes > USES= gmake shebangfix ssl tar:xz > CPPFLAGS+= -isystem${LOCALBASE}/include > LDFLAGS+= -L${LOCALBASE}/lib >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV+= V=1 >+.endif >+ > USE_RC_SUBR= git_daemon > SHEBANG_FILES= *.perl */*.perl */*/*.perl */*.pl */*/*.pl */*/*/*.pl \ > t/*/*/pre t/*/*/post t/Git-SVN/Utils/*.t \ >diff --git devel/icu/Makefile devel/icu/Makefile >--- devel/icu/Makefile >+++ devel/icu/Makefile >@@ -22,7 +22,6 @@ CONFIGURE_ARGS+=--with-data-packaging=archive \ > --disable-samples \ > --enable-static > CPPFLAGS+= -DICU_NO_USER_DATA_OVERRIDE >-MAKE_ARGS= VERBOSE=1 > TEST_TARGET= check > USES= compiler:c++0x gmake pathfix tar:tgz > USE_LDCONFIG= yes >@@ -31,6 +30,10 @@ WRKSRC= ${WRKDIR}/icu/source > ICUMAJOR= ${PORTVERSION:C/\..*//} > PLIST_SUB+= ICUMAJOR=${ICUMAJOR} ICUVER=${PORTVERSION} > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS= VERBOSE=1 >+.endif >+ > .include <bsd.port.options.mk> > > .if ${ARCH} == "mips" || ${ARCH} == "mips64" || ${ARCH} == "sparc64" \ >diff --git devel/linux-kernel/Makefile devel/linux-kernel/Makefile >--- devel/linux-kernel/Makefile >+++ devel/linux-kernel/Makefile >@@ -125,8 +125,11 @@ MAKE_ENV+= PATH="${BUILD_WRKSRC}/freebsd-build-support/bin:${LOCALBASE}/bin:${PA > MAKE_ARGS+= ARCH="x86" \ > KCONFIG_CONFIG="${LINUX_KCONFIG}" \ > INSTALL_PATH="${STAGEDIR}${LINUX_INSTALL_PATH}" \ >- INSTALL_MOD_PATH="${STAGEDIR}${LINUX_MOD_INSTALL_PATH}" \ >- V=1 >+ INSTALL_MOD_PATH="${STAGEDIR}${LINUX_MOD_INSTALL_PATH}" >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= V=1 >+.endif > > post-patch: > # Create empty include files which Linux' build tools require, but >diff --git devel/rlvm/Makefile devel/rlvm/Makefile >--- devel/rlvm/Makefile >+++ devel/rlvm/Makefile >@@ -31,10 +31,13 @@ EXCLUDE= GLEW SDL_image SDL_mixer SDL_ttf gmock gtest guichan \ > EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude vendor/,} > CFLAGS+= -D_GLIBCXX_USE_C99 # XXX ports/193528 > LDFLAGS+= -Wl,--as-needed # avoid overlinking (gtk deps) >-MAKE_ARGS= VERBOSE=1 > INSTALLS_ICONS= yes > PORTDOCS= AUTHORS.TXT NEWS.TXT README.md STATUS.TXT notes > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS= VERBOSE=1 >+.endif >+ > OPTIONS_DEFINE= DEBUG DOCS NLS TEST > OPTIONS_DEFAULT=MONA > OPTIONS_MULTI= JAPANESE_FONT >diff --git devel/tig/Makefile devel/tig/Makefile >--- devel/tig/Makefile >+++ devel/tig/Makefile >@@ -17,7 +17,10 @@ RUN_DEPENDS= git:devel/git > USES= autoreconf iconv gmake ncurses readline:port > GNU_CONFIGURE= yes > CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= V=1 >+.endif > > ALL_TARGET= all strip > INSTALL_TARGET= install >diff --git emulators/dolphin-emu/Makefile emulators/dolphin-emu/Makefile >--- emulators/dolphin-emu/Makefile >+++ emulators/dolphin-emu/Makefile >@@ -61,7 +61,9 @@ PORTAUDIO_DESC= Enable PortAudio (mic) support > PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio > PORTAUDIO_CMAKE_ON= -DDISABLE_PORTAUDIO:BOOL=OFF > PORTAUDIO_CMAKE_OFF= -DDISABLE_PORTAUDIO:BOOL=ON >+.ifndef NO_VERBOSE_BUILD > DEBUG_MAKE_ENV= VERBOSE=yes >+.endif > DEBUG_CMAKE_ON= -DFASTLOG:BOOL=ON > DEBUG_CMAKE_OFF= -DFASTLOG:BOOL=OFF > FRAMEDUMPS_DESC= Encode framedumps in AVI format >diff --git emulators/mame/Makefile emulators/mame/Makefile >--- emulators/mame/Makefile >+++ emulators/mame/Makefile >@@ -39,7 +39,12 @@ MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \ > LD="${CXX}" PYTHON="${PYTHON_CMD}" SDL_LIBVER="sdl2" \ > OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ > TARGET="${MTARGET}" SUBTARGET="${MSUBTARGET}" FULLNAME="mame" SDL_NETWORK="pcap" >-MAKE_ARGS= TARGETOS=freebsd VERBOSE=1 TOOLS=1 >+MAKE_ARGS= TARGETOS=freebsd TOOLS=1 >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= VERBOSE=1 >+.endif >+ > MAKEFILE= makefile > GENIE= ${WRKSRC}/3rdparty/genie > PORTDOCS= * >diff --git emulators/raine/Makefile emulators/raine/Makefile >--- emulators/raine/Makefile >+++ emulators/raine/Makefile >@@ -24,7 +24,11 @@ USE_PERL5= build > USE_SDL= image ttf sdl > USE_GCC= any > MAKEFILE= makefile >-MAKE_ARGS= NEO="" VERBOSE=1 HAS_CONSOLE="" >+MAKE_ARGS= NEO="" HAS_CONSOLE="" >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= VERBOSE=1 >+.endif > > ONLY_FOR_ARCHS= i386 > >diff --git games/iortcw/files/Makefile games/iortcw/files/Makefile >--- games/iortcw/files/Makefile >+++ games/iortcw/files/Makefile >@@ -19,11 +19,14 @@ MAKE_ARGS= BUILD_CLIENT=1 \ > USE_CODEC_OPUS=0 \ > USE_FREETYPE=1 \ > USE_LOCAL_HEADERS=0 \ >- V=1 \ > OPTIMIZEVM="" \ > OPTIMIZE="" \ > COPYDIR="${COPYDIR}" > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= V=1 >+.endif >+ > sp: > ${MAKE} -C SP ${MAKE_ARGS} > >diff --git games/openttd/Makefile games/openttd/Makefile >--- games/openttd/Makefile >+++ games/openttd/Makefile >@@ -27,7 +27,7 @@ HAS_CONFIGURE= yes > CONFIGURE_ENV= STRIP="${STRIP_CMD} ${STRIP}" > CONFIGURE_ARGS= --prefix-dir="${PREFIX}" --data-dir="${DATADIR_REL}" > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= VERBOSE=1 > .endif > >diff --git games/simutrans/Makefile games/simutrans/Makefile >--- games/simutrans/Makefile >+++ games/simutrans/Makefile >@@ -34,8 +34,12 @@ MAKE_ARGS= BACKEND=mixer_sdl \ > COLOUR_DEPTH=16 \ > MULTI_THREAD=0 \ > OSTYPE=freebsd \ >- FLAGS="-DUSE_C -DREVISION=${SIMUTRANS_REVISION}" \ >- VERBOSE=1 >+ FLAGS="-DUSE_C -DREVISION=${SIMUTRANS_REVISION}" >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= VERBOSE=1 >+.endif >+ > NO_WRKSUBDIR= yes > USES= dos2unix gmake zip > DOS2UNIX_FILES= gui/loadsave_frame.h >diff --git games/tome4/Makefile games/tome4/Makefile >--- games/tome4/Makefile >+++ games/tome4/Makefile >@@ -25,7 +25,7 @@ DESKTOP_ENTRIES="ToME 4" "" "${PORTNAME}" \ > > PLIST_SUB= PORTVERSION=${PORTVERSION} > WRKSRC= ${WRKDIR}/t-engine4-src-${PORTVERSION} >-MAKE_ARGS+= config=release verbose=yes ARCH="" CC=${CC} >+MAKE_ARGS+= config=release ARCH="" CC=${CC} > USES= gmake openal:al tar:bzip2 > USE_SDL= image2 sdl2 ttf2 > USE_GL= gl glu >@@ -33,6 +33,10 @@ USE_CSTD= gnu89 > SUB_FILES= tome4 > MAKE_JOBS_UNSAFE=yes > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= verbose=yes >+.endif >+ > pre-build: > @${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/premake4.lua > (cd ${WRKSRC} && premake4 gmake) >diff --git games/zangband/Makefile games/zangband/Makefile >--- games/zangband/Makefile >+++ games/zangband/Makefile >@@ -19,7 +19,11 @@ USE_PERL5= build > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --datadir=${PREFIX}/lib \ > --with-gtk=no >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= VERBOSE=1 >+.endif >+ > MAKEFILE= makefile > ALL_TARGET= default > >diff --git graphics/imv/Makefile graphics/imv/Makefile >--- graphics/imv/Makefile >+++ graphics/imv/Makefile >@@ -22,7 +22,9 @@ GH_ACCOUNT= eXeC64 > > ALL_TARGET= imv > >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS= V=1 >+.endif > > PLIST_FILES= bin/imv \ > man/man1/imv.1.gz \ >diff --git graphics/mupdf/Makefile graphics/mupdf/Makefile >--- graphics/mupdf/Makefile >+++ graphics/mupdf/Makefile >@@ -24,11 +24,15 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ > > CFLAGS+= -I${WRKSRC}/include/mupdf > LIBS+= -L${LOCALBASE}/lib >-MAKE_ARGS= build=release prefix=${PREFIX} mandir=${PREFIX}/man verbose=yes >+MAKE_ARGS= build=release prefix=${PREFIX} mandir=${PREFIX}/man > USES= cpe compiler:c++11-lang gmake jpeg pkgconfig > USE_XORG= x11 xcursor xext xinerama xrandr > USE_GL= gl > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= verbose=yes >+.endif >+ > CPE_VENDOR= artifex > > WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-source >diff --git graphics/sekrit-twc-zimg/Makefile graphics/sekrit-twc-zimg/Makefile >--- graphics/sekrit-twc-zimg/Makefile >+++ graphics/sekrit-twc-zimg/Makefile >@@ -47,7 +47,10 @@ SIMD_CONFIGURE_ENABLE= x86simd > TEST_BUILD_DEPENDS= googletest>=1.6.0:devel/googletest > TEST_USES= localbase > TEST_CONFIGURE_ENABLE= unit-test >-TEST_TEST_TARGET= check VERBOSE=1 >+TEST_TEST_TARGET= check >+.ifndef NO_VERBOSE_BUILD >+TEST_TEST_TARGET+= VERBOSE=1 >+.endif > > post-patch: > @${REINPLACE_CMD} -e 's/x86_64/&|amd64/g' \ >diff --git irc/kvirc/Makefile irc/kvirc/Makefile >--- irc/kvirc/Makefile >+++ irc/kvirc/Makefile >@@ -45,7 +45,10 @@ PYTHON_DESC= Python scripting support > PYTHON_USES= python > PYTHON_CMAKE_OFF= -DWANT_PYTHON=no > >-DEBUG_CMAKE_ON= -DWITH_DEBUG=yes -DVERBOSE=yes >+DEBUG_CMAKE_ON= -DWITH_DEBUG=yes >+.ifndef NO_VERBOSE_BUILD >+DEBUG_CMAKE_ON+= -DVERBOSE=yes >+.endif > > .if defined(PKGNAMESUFFIX) > CONFLICTS_INSTALL= kvirc-4.* >diff --git irc/znc/Makefile irc/znc/Makefile >--- irc/znc/Makefile >+++ irc/znc/Makefile >@@ -17,7 +17,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE > GNU_CONFIGURE= yes > USE_RC_SUBR= znc > USES= compiler:c++11-lib cpe gmake iconv pkgconfig >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif > > PORTDOCS= README.md > >diff --git lang/fpc/Makefile.units lang/fpc/Makefile.units >--- lang/fpc/Makefile.units >+++ lang/fpc/Makefile.units >@@ -28,11 +28,15 @@ MAKE_ARGS+= PP="${LOCALBASE}/bin/fpc" \ > OS_TARGET=${OPSYS:tl} \ > COMPILER_OPTIONS="${OPT}" \ > BSDHIER=1 \ >- VERBOSE=1 \ > INSTALL="${INSTALL_DATA}" \ > INSTALLEXE="${INSTALL_PROGRAM}" \ > INSTALLSCR="${INSTALL_SCRIPT}" \ > INSTALL_PREFIX="${STAGEDIR}${PREFIX}" >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= VERBOSE=1 >+.endif >+ > ALL_TARGET= fpc_baseinfo release > > .if ${PORT_OPTIONS:MEXAMPLES} && defined(HAVE_EXAMPLES) >diff --git lang/micropython/Makefile lang/micropython/Makefile >--- lang/micropython/Makefile >+++ lang/micropython/Makefile >@@ -21,9 +21,12 @@ PLIST_FILES= bin/micropython > WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/unix > > SHEBANG_FILES= ../tools/make-frozen.py >-MAKE_ARGS+= V=1 > MAKE_ENV+= PYTHON=${PYTHON_CMD} CFLAGS_EXTRA="${CPPFLAGS} ${CFLAGS}" > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= V=1 >+.endif >+ > .include <bsd.port.pre.mk> > > .if ${OSVERSION} < 1000024 >diff --git lang/rust/Makefile lang/rust/Makefile >--- lang/rust/Makefile >+++ lang/rust/Makefile >@@ -70,7 +70,9 @@ CONFIGURE_ARGS= --disable-valgrind \ > > PORTDOCS= * > >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS+= VERBOSE=1 >+.endif > > OPTIONS_DEFINE= DOCS GDB LLNEXTGEN PORT_LLVM > GDB_DESC= Install ports gdb (necessary for debugging rust programs) >diff --git math/rapid/Makefile math/rapid/Makefile >--- math/rapid/Makefile >+++ math/rapid/Makefile >@@ -19,7 +19,9 @@ PKGMESSAGE= ${WRKDIR}/pkg-message > ALL_TARGET= > MAKE_JOBS_UNSAFE= yes > >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV+= V=1 >+.endif > > .include <bsd.port.pre.mk> > >diff --git multimedia/mkvalidator/Makefile multimedia/mkvalidator/Makefile >--- multimedia/mkvalidator/Makefile >+++ multimedia/mkvalidator/Makefile >@@ -17,7 +17,11 @@ BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} > > USES= gmake iconv tar:bzip2 > HAS_CONFIGURE= yes >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif >+ > MAKEFILE= GNUmakefile > > CFLAGS+= -I${ICONV_PREFIX}/include >diff --git multimedia/mkvtoolnix/Makefile multimedia/mkvtoolnix/Makefile >--- multimedia/mkvtoolnix/Makefile >+++ multimedia/mkvtoolnix/Makefile >@@ -52,7 +52,7 @@ QT5_USE= QT5=buildtools_build,core,gui,network,quick,widgets > QT5_CONFIGURE_ON= --enable-qt > QT5_CONFIGURE_OFF= --disable-qt > >-.if defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV+= V=1 > .endif > >diff --git multimedia/xine/Makefile multimedia/xine/Makefile >--- multimedia/xine/Makefile >+++ multimedia/xine/Makefile >@@ -22,7 +22,11 @@ GNU_CONFIGURE= yes > CONFIGURE_ARGS= --enable-vdr-keys \ > --disable-nvtvsimple \ > --disable-rpath >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif >+ > INSTALLS_ICONS= yes > > CPPFLAGS+= -I${LOCALBASE}/include >diff --git net-p2p/bitcoin/Makefile net-p2p/bitcoin/Makefile >--- net-p2p/bitcoin/Makefile >+++ net-p2p/bitcoin/Makefile >@@ -85,7 +85,10 @@ CONFIGURE_ARGS?= --without-libs \ > CONFIGURE_ENV= CRYPTO_CFLAGS="-I${OPENSSLINC}" CRYPTO_LIBS="-L${OPENSSLLIB} -lcrypto" \ > SSL_CFLAGS="-I${OPENSSLINC}" SSL_LIBS="-L${OPENSSLLIB} -lssl" \ > OBJCXX="${CXX}" OBJCXXFLAGS="${CXXFLAGS}" >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV+= V=1 >+.endif > > PLIST_FILES?= bin/bitcoin-qt share/applications/bitcoin-qt.desktop \ > share/pixmaps/bitcoin128.png >diff --git net/czmq/Makefile net/czmq/Makefile >--- net/czmq/Makefile >+++ net/czmq/Makefile >@@ -22,7 +22,10 @@ GNU_CONFIGURE= yes > CONFIGURE_ARGS= --with-libzmq=${LOCALBASE} \ > --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig > >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif >+ > INSTALL_TARGET= install-strip > > regression-test: build >diff --git net/dpdk/Makefile net/dpdk/Makefile >--- net/dpdk/Makefile >+++ net/dpdk/Makefile >@@ -18,7 +18,10 @@ ONLY_FOR_ARCHS_REASON= Only works on 64-bit x86 hardware > NO_PACKAGE= ignores cflags > RTE_TARGET= x86_64-native-bsdapp-clang > WRKBUILD= ${WRKSRC}/${RTE_TARGET} >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif > > ALL_TARGET= install T=${RTE_TARGET} > >diff --git net/libzmq3/Makefile net/libzmq3/Makefile >--- net/libzmq3/Makefile >+++ net/libzmq3/Makefile >@@ -28,7 +28,10 @@ PGM_CONFIGURE_ON= --with-system-pgm > PGM_LIB_DEPENDS= libpgm.so:net/openpgm > PGM_USES= pkgconfig > >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif >+ > INSTALL_TARGET= install-strip > > .include <bsd.port.options.mk> >diff --git net/libzmq4/Makefile net/libzmq4/Makefile >--- net/libzmq4/Makefile >+++ net/libzmq4/Makefile >@@ -46,7 +46,10 @@ CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig > > CFLAGS+= -Wno-long-long > CPPFLAGS+= -Wno-error >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif > > INSTALL_TARGET= install-strip > TEST_TARGET= check >diff --git net/mpich2/Makefile net/mpich2/Makefile >--- net/mpich2/Makefile >+++ net/mpich2/Makefile >@@ -81,7 +81,7 @@ BIN2STRIP= check_callstack clog2_join clog2_print clog2_repair > > .include <bsd.port.options.mk> > >-.if ${PORT_OPTIONS:MDEBUG} >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV+= VERBOSE=1 > .endif > >diff --git net/vde2/Makefile net/vde2/Makefile >--- net/vde2/Makefile >+++ net/vde2/Makefile >@@ -20,7 +20,11 @@ INSTALL_TARGET= install-strip > USES= gmake libtool pathfix shebangfix > SHEBANG_FILES= src/lib/python/VdePlug.py > USE_LDCONFIG= yes >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ENV= V=1 >+.endif >+ > MAKE_JOBS_UNSAFE=yes > > OPTIONS_DEFINE= PYTHON >diff --git security/cardpeek/Makefile security/cardpeek/Makefile >--- security/cardpeek/Makefile >+++ security/cardpeek/Makefile >@@ -18,7 +18,6 @@ RUN_DEPENDS= pcscd:devel/pcsc-lite > USES= execinfo iconv localbase lua pkgconfig > USE_GNOME= gtk30 > GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --disable-silent-rules > INSTALLS_ICONS= yes > > PLIST_FILES= bin/cardpeek man/man1/cardpeek.1.gz \ >diff --git security/certificate-transparency/Makefile security/certificate-transparency/Makefile >--- security/certificate-transparency/Makefile >+++ security/certificate-transparency/Makefile >@@ -29,7 +29,11 @@ BROKEN_FreeBSD_9= does not build on FreeBSD < 10.x > USES= autoreconf compiler:c++11-lib gmake pkgconfig > GNU_CONFIGURE= yes > CONFIGURE_ENV+= "CFLAGS+=-I${LOCALBASE}/include CXXFLAGS+=-lgtest CXXFLAGS+=-lgmock" >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_FLAGS+= "V=1" >+.endif >+ > USE_GITHUB= yes > GH_ACCOUNT= google > GH_TAGNAME= 1cdd6b5 >diff --git security/zxid/Makefile security/zxid/Makefile >--- security/zxid/Makefile >+++ security/zxid/Makefile >@@ -22,8 +22,12 @@ USE_CSTD= gnu89 > MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" \ > LD="${CC}" LDFLAGS="${LDFLAGS}" \ > PREFIX="${PREFIX}" OPENSSL_ROOT="${OPENSSLBASE}" \ >- POSTLIBS="${LDFLAGS}" TARGET="${OPSYS:tl}" \ >- V=1 >+ POSTLIBS="${LDFLAGS}" TARGET="${OPSYS:tl}" >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= V=1 >+.endif >+ > ALL_TARGET= default smime libzxid.so.0.0 > USE_LDCONFIG= yes > MAKE_JOBS_UNSAFE= yes >diff --git sysutils/busybox/Makefile sysutils/busybox/Makefile >--- sysutils/busybox/Makefile >+++ sysutils/busybox/Makefile >@@ -25,7 +25,12 @@ PORTSCOUT= skipv:1.25.0 > > CFLAGS+= -fno-builtin-mempcpy # avoid -Wshadow warnings > MAKE_ARGS= CC="${CC}" HOSTCC="${CC}" CXX="${CXX}" HOSTCXX="${CXX}" \ >- SKIP_STRIP=y V=1 >+ SKIP_STRIP=y >+ >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS+= V=1 >+.endif >+ > USES= cpe gmake perl5 tar:bzip2 > USE_PERL5= build > >diff --git sysutils/e2fsprogs/Makefile sysutils/e2fsprogs/Makefile >--- sysutils/e2fsprogs/Makefile >+++ sysutils/e2fsprogs/Makefile >@@ -51,7 +51,7 @@ post-extract: > PKGDEINSTALL= ${PKGINSTALL} > > # get more details into tinderbox logs >-.if defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS+= V=1 > .endif > >diff --git sysutils/fusefs-lkl/Makefile sysutils/fusefs-lkl/Makefile >--- sysutils/fusefs-lkl/Makefile >+++ sysutils/fusefs-lkl/Makefile >@@ -30,7 +30,11 @@ ONLY_FOR_ARCHS_REASON=No one has added other architecture ld formats yet > WRKSRC_SUBDIR= tools/lkl > ALL_TARGET= lklfuse > MAKE_JOBS_UNSAFE=yes >+ >+.ifndef NO_VERBOSE_BUILD > MAKE_ARGS+= V=1 >+.endif >+ > # Need ports versions of 'bc', 'ld' to build! > MAKE_ARGS+= PATH="${LOCALBASE}/bin:${PATH}" > >diff --git www/chromium/Makefile www/chromium/Makefile >--- www/chromium/Makefile >+++ www/chromium/Makefile >@@ -203,7 +203,10 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-fixup-ffmpeg > ALL_TARGET+= ${TEST_TARGETS} > .endif > >+.ifndef NO_VERBOSE_BUILD > DEBUG_MAKE_ENV= V=1 >+.endif >+ > .if ${PORT_OPTIONS:MDEBUG} > BUILDTYPE= Debug > .else >diff --git www/mod_spdy/Makefile www/mod_spdy/Makefile >--- www/mod_spdy/Makefile >+++ www/mod_spdy/Makefile >@@ -65,7 +65,6 @@ GYP_DEFINES+= clang=1 > .endif > > .if ${PORT_OPTIONS:MDEBUG} >-MAKE_ENV+= V=1 > BUILDTYPE= Debug > .else > BUILDTYPE= Release >@@ -83,6 +82,10 @@ CONFIGURE_ENV+= CFLAGS="${CFLAGS}" \ > LDFLAGS="${LDFLAGS}" > MAKE_ENV+= BUILDTYPE=${BUILDTYPE} > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ENV+= V=1 >+.endif >+ > .include <bsd.port.pre.mk> > > .if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 36 >diff --git x11-toolkits/flowcanvas/Makefile x11-toolkits/flowcanvas/Makefile >--- x11-toolkits/flowcanvas/Makefile >+++ x11-toolkits/flowcanvas/Makefile >@@ -25,7 +25,7 @@ CFLAGS+= -I${LOCALBASE}/include > > .include <bsd.port.pre.mk> > >-.if defined(BATCH) || defined(PACKAGE_BUILDING) >+.ifndef NO_VERBOSE_BUILD > WAF_VERBOSE= --verbose > .endif > >diff --git x11-wm/muffin/Makefile x11-wm/muffin/Makefile >--- x11-wm/muffin/Makefile >+++ x11-wm/muffin/Makefile >@@ -34,10 +34,13 @@ LDFLAGS+= -L${LOCALBASE}/lib > PATHFIX_MAKEFILEIN= Makefile.am > CONFIGURE_ENV= LIBS="-lexecinfo" > CONFIGURE_ARGS= --enable-compile-warnings=maximum >-MAKE_ARGS= V=1 > GLIB_SCHEMAS= org.cinnamon.muffin.gschema.xml > INSTALL_TARGET= install-strip > >+.ifndef NO_VERBOSE_BUILD >+MAKE_ARGS= V=1 >+.endif >+ > pre-configure: > @cd ${WRKSRC} && ${SETENV} NOCONFIGURE=yes ${SH} autogen.sh >
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 213446
:
175704
|
175705
|
175718
|
175728
|
175729
|
175768
|
175772
|
175774
|
175775
|
175812
|
178899
|
180096