View | Details | Raw Unified | Return to bug 212075 | Differences between
and this patch

Collapse All | Expand All

(-)CHANGES (+7 lines)
Lines 10-15 Link Here
10
10
11
All ports committers are allowed to commit to this file.
11
All ports committers are allowed to commit to this file.
12
12
13
20160906:
14
AUTHOR: amdmi3@FreeBSD.org
15
16
  Verbose build logs are now preferred and enabled by default for cmake,
17
  ninja and GNU configure.  Ports which still produce quiet build logs
18
  (hiding actual commands) are strongly advised to switch to verbose logs.
19
13
20160824:
20
20160824:
14
AUTHOR: mat@FreeBSD.org
21
AUTHOR: mat@FreeBSD.org
15
22
(-)Mk/Uses/cmake.mk (-7 / +2 lines)
Lines 12-19 Link Here
12
# Additional variables that affect cmake behaviour:
12
# Additional variables that affect cmake behaviour:
13
#
13
#
14
# User defined variables:
14
# User defined variables:
15
# CMAKE_VERBOSE		- Enable verbose build output
16
#			Default: not set, unless BATCH or PACKAGE_BUILDING is defined
17
# CMAKE_NOCOLOR		- Disable colour build output
15
# CMAKE_NOCOLOR		- Disable colour build output
18
#			Default: not set, unless BATCH or PACKAGE_BUILDING is defined
16
#			Default: not set, unless BATCH or PACKAGE_BUILDING is defined
19
# CMAKE_NINJA		- Use ninja instead of make(1)
17
# CMAKE_NINJA		- Use ninja instead of make(1)
Lines 80-97 Link Here
80
			-DCMAKE_INSTALL_PREFIX:PATH="${CMAKE_INSTALL_PREFIX}" \
78
			-DCMAKE_INSTALL_PREFIX:PATH="${CMAKE_INSTALL_PREFIX}" \
81
			-DCMAKE_BUILD_TYPE:STRING="${CMAKE_BUILD_TYPE}" \
79
			-DCMAKE_BUILD_TYPE:STRING="${CMAKE_BUILD_TYPE}" \
82
			-DTHREADS_HAVE_PTHREAD_ARG:BOOL=YES \
80
			-DTHREADS_HAVE_PTHREAD_ARG:BOOL=YES \
83
			-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=YES
81
			-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=YES \
82
			-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
84
83
85
CMAKE_INSTALL_PREFIX?=	${PREFIX}
84
CMAKE_INSTALL_PREFIX?=	${PREFIX}
86
85
87
.if defined(BATCH) || defined(PACKAGE_BUILDING)
86
.if defined(BATCH) || defined(PACKAGE_BUILDING)
88
CMAKE_VERBOSE=		yes
89
CMAKE_NOCOLOR=		yes
87
CMAKE_NOCOLOR=		yes
90
.endif
88
.endif
91
89
92
.if defined(CMAKE_VERBOSE)
93
CMAKE_ARGS+=		-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
94
.endif
95
.if defined(CMAKE_NOCOLOR)
90
.if defined(CMAKE_NOCOLOR)
96
CMAKE_ARGS+=		-DCMAKE_COLOR_MAKEFILE:BOOL=OFF
91
CMAKE_ARGS+=		-DCMAKE_COLOR_MAKEFILE:BOOL=OFF
97
.endif
92
.endif
(-)Mk/Uses/ninja.mk (-5 lines)
Lines 5-13 Link Here
5
# Feature:		ninja
5
# Feature:		ninja
6
# Usage:		USES=ninja
6
# Usage:		USES=ninja
7
#
7
#
8
# User defined variables:
9
# NINJA_VERBOSE		- Enable verbose output.
10
#
11
# MAINTAINER: portmgr@FreeBSD.org
8
# MAINTAINER: portmgr@FreeBSD.org
12
9
13
.if !defined(_INCLUDE_USES_NINJA_MK)
10
.if !defined(_INCLUDE_USES_NINJA_MK)
Lines 17-25 Link Here
17
IGNORE=	Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments
14
IGNORE=	Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments
18
.endif
15
.endif
19
16
20
.if defined(NINJA_VERBOSE)
21
MAKE_ARGS+=	-v
17
MAKE_ARGS+=	-v
22
.endif
23
18
24
BUILD_DEPENDS+=	ninja:devel/ninja
19
BUILD_DEPENDS+=	ninja:devel/ninja
25
20
(-)Mk/bsd.port.mk (+3 lines)
Lines 2503-2508 Link Here
2503
	if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--mandir'`" ]; then \
2503
	if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--mandir'`" ]; then \
2504
	    _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --mandir=${GNU_CONFIGURE_MANPREFIX}/man" ; \
2504
	    _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --mandir=${GNU_CONFIGURE_MANPREFIX}/man" ; \
2505
	fi ; \
2505
	fi ; \
2506
	if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--disable-silent-rules'`" ]; then \
2507
	    _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --disable-silent-rules" ; \
2508
	fi ; \
2506
	if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--infodir'`" ]; then \
2509
	if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--infodir'`" ]; then \
2507
	    _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --infodir=${GNU_CONFIGURE_PREFIX}/${INFO_PATH}/${INFO_SUBDIR}" ; \
2510
	    _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --infodir=${GNU_CONFIGURE_PREFIX}/${INFO_PATH}/${INFO_SUBDIR}" ; \
2508
	fi ; \
2511
	fi ; \
(-)archivers/gcpio/Makefile (-1 lines)
Lines 17-23 Link Here
17
17
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
CONFIGURE_ARGS=	--program-prefix=g \
19
CONFIGURE_ARGS=	--program-prefix=g \
20
		--disable-silent-rules \
21
		--with-rmt=/etc/rmt
20
		--with-rmt=/etc/rmt
22
TEST_TARGET=	check
21
TEST_TARGET=	check
23
22
(-)archivers/gtar/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
USES=		charsetfix cpe iconv:${STATIC_ARGS} localbase makeinfo tar:xz
18
USES=		charsetfix cpe iconv:${STATIC_ARGS} localbase makeinfo tar:xz
19
CPE_VENDOR=	gnu
19
CPE_VENDOR=	gnu
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--program-prefix=g \
21
CONFIGURE_ARGS=	--program-prefix=g
22
		--disable-silent-rules
23
CONFIGURE_ENV=	DEFAULT_ARCHIVE=/dev/sa0 \
22
CONFIGURE_ENV=	DEFAULT_ARCHIVE=/dev/sa0 \
24
		DEFAULT_RMT_COMMAND=/etc/rmt
23
		DEFAULT_RMT_COMMAND=/etc/rmt
25
# supply result to skip a test that will abort configure if run as root
24
# supply result to skip a test that will abort configure if run as root
(-)archivers/lhasa/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
PATHFIX_MAKEFILEIN=	Makefile.am
17
PATHFIX_MAKEFILEIN=	Makefile.am
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
20
CONFIGURE_ARGS=	--disable-silent-rules \
20
CONFIGURE_ARGS=	--program-suffix=sa
21
		--program-suffix=sa
22
INSTALL_TARGET=	install-strip
21
INSTALL_TARGET=	install-strip
23
22
24
PORTDOCS=	ChangeLog README AUTHORS TODO NEWS
23
PORTDOCS=	ChangeLog README AUTHORS TODO NEWS
(-)audio/beast/Makefile (-2 / +1 lines)
Lines 25-32 Link Here
25
USE_GCC=	4.8
25
USE_GCC=	4.8
26
USE_GNOME=	intltool libgnomecanvas
26
USE_GNOME=	intltool libgnomecanvas
27
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
28
CONFIGURE_ARGS=	--disable-silent-rules \
28
CONFIGURE_ARGS=	--enable-osspcm=/dev/dsp \
29
		--enable-osspcm=/dev/dsp \
30
		--enable-ossmidi=/dev/midi
29
		--enable-ossmidi=/dev/midi
31
USE_LDCONFIG=	yes
30
USE_LDCONFIG=	yes
32
INSTALL_TARGET=	install-strip
31
INSTALL_TARGET=	install-strip
(-)audio/flac/Makefile (-1 lines)
Lines 25-31 Link Here
25
		--enable-sse \
25
		--enable-sse \
26
		--with-ogg="${LOCALBASE}" \
26
		--with-ogg="${LOCALBASE}" \
27
		--disable-doxygen-docs \
27
		--disable-doxygen-docs \
28
		--disable-silent-rules \
29
		--disable-thorough-tests \
28
		--disable-thorough-tests \
30
		--disable-xmms-plugin
29
		--disable-xmms-plugin
31
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
(-)audio/libgpod/Makefile (-1 / +1 lines)
Lines 18-24 Link Here
18
18
19
USES=		gettext gmake libtool localbase pathfix pkgconfig sqlite:3 tar:bzip2
19
USES=		gettext gmake libtool localbase pathfix pkgconfig sqlite:3 tar:bzip2
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--disable-silent-rules --disable-udev --without-hal \
21
CONFIGURE_ARGS=	--disable-udev --without-hal \
22
		--with-html-dir="${DOCSDIR:H}"
22
		--with-html-dir="${DOCSDIR:H}"
23
USE_CSTD=	gnu89
23
USE_CSTD=	gnu89
24
USE_GNOME=	gdkpixbuf2 gtk20 intltool
24
USE_GNOME=	gdkpixbuf2 gtk20 intltool
(-)audio/soundtouch/Makefile (-1 lines)
Lines 14-20 Link Here
14
WRKSRC=		${WRKDIR}/${PORTNAME}
14
WRKSRC=		${WRKDIR}/${PORTNAME}
15
15
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS=	--disable-silent-rules
18
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
19
18
20
USES=			autoreconf libtool pathfix
19
USES=			autoreconf libtool pathfix
(-)audio/speex/files/patch-configure (+10 lines)
Line 0 Link Here
1
--- configure.orig	2014-12-06 19:58:24 UTC
2
+++ configure
3
@@ -2486,6 +2486,7 @@ case $enable_silent_rules in # (((
4
    no) AM_DEFAULT_VERBOSITY=1;;
5
     *) AM_DEFAULT_VERBOSITY=0;;
6
 esac
7
+unset enableval
8
 am_make=${MAKE-make}
9
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
10
 $as_echo_n "checking whether $am_make supports nested variables... " >&6; }
(-)audio/xmms-flac/Makefile (-1 lines)
Lines 15-21 Link Here
15
15
16
USES=		iconv libtool tar:xz
16
USES=		iconv libtool tar:xz
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-silent-rules
19
CPPFLAGS+=	-I${LOCALBASE}/include
18
CPPFLAGS+=	-I${LOCALBASE}/include
20
LDFLAGS+=	-L${LOCALBASE}/lib
19
LDFLAGS+=	-L${LOCALBASE}/lib
21
20
(-)biology/ncbi-blast+/files/patch-src_build-system_configure (-1 / +1 lines)
Lines 5-11 Link Here
5
       | --x-includes=* | --x-libraries=* | --with-3psw=* \
5
       | --x-includes=* | --x-libraries=* | --with-3psw=* \
6
       | --target=* | --with-runpath=* | --with-relative-runpath=* \
6
       | --target=* | --with-runpath=* | --with-relative-runpath=* \
7
-      | --help | --no-create | --no-recursion)
7
-      | --help | --no-create | --no-recursion)
8
+      | --help | --no-create | --no-recursion | --localstatedir=* | --disable-silent-rules )
8
+      | --help | --no-create | --no-recursion | --localstatedir=* )
9
       ;;
9
       ;;
10
 
10
 
11
       * )
11
       * )
(-)cad/adms/Makefile (-1 lines)
Lines 15-21 Link Here
15
USES=		bison libtool
15
USES=		bison libtool
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ENV=	ax_cv_c_compiler_vendor=gnu
17
CONFIGURE_ENV=	ax_cv_c_compiler_vendor=gnu
18
CONFIGURE_ARGS=	--disable-silent-rules
19
INSTALL_TARGET=	install-strip
18
INSTALL_TARGET=	install-strip
20
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
21
20
(-)comms/dfu-util/Makefile (-1 lines)
Lines 14-20 Link Here
14
GNU_CONFIGURE=	yes
14
GNU_CONFIGURE=	yes
15
CONFIGURE_ENV=	USE_LIBS="-lusb" \
15
CONFIGURE_ENV=	USE_LIBS="-lusb" \
16
		ac_cv_lib_usbpath_usb_path2devnum=no
16
		ac_cv_lib_usbpath_usb_path2devnum=no
17
CONFIGURE_ARGS=	--disable-silent-rules
18
17
19
PLIST_FILES=	bin/dfu-prefix bin/dfu-suffix bin/dfu-util man/man1/${PORTNAME}.1.gz
18
PLIST_FILES=	bin/dfu-prefix bin/dfu-suffix bin/dfu-util man/man1/${PORTNAME}.1.gz
20
19
(-)databases/rrdtool/Makefile (-1 / +1 lines)
Lines 15-21 Link Here
15
15
16
CONFLICTS=	rrdtool12-*
16
CONFLICTS=	rrdtool12-*
17
17
18
CONFIGURE_ARGS=	--disable-tcl --disable-silent-rules
18
CONFIGURE_ARGS=	--disable-tcl
19
CPPFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2
19
CPPFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2
20
USE_RC_SUBR=	rrdcached
20
USE_RC_SUBR=	rrdcached
21
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
(-)deskutils/gnotime/Makefile (-1 lines)
Lines 21-27 Link Here
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ENV=	GUILE_CFLAGS="$$(guile-config compile)" \
22
CONFIGURE_ENV=	GUILE_CFLAGS="$$(guile-config compile)" \
23
		GUILE_LIBS="$$(guile-config link)"
23
		GUILE_LIBS="$$(guile-config link)"
24
CONFIGURE_ARGS=	--disable-silent-rules
25
INSTALL_TARGET=	install-strip
24
INSTALL_TARGET=	install-strip
26
USE_LDCONFIG=	yes
25
USE_LDCONFIG=	yes
27
INSTALLS_OMF=	yes
26
INSTALLS_OMF=	yes
(-)devel/eris/Makefile (-1 lines)
Lines 16-22 Link Here
16
		libsigc-2.0.so:devel/libsigc++20 \
16
		libsigc-2.0.so:devel/libsigc++20 \
17
		libmercator-0.3.so:devel/mercator
17
		libmercator-0.3.so:devel/mercator
18
18
19
CONFIGURE_ARGS= --disable-silent-rules
20
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
21
USE_LDCONFIG=	yes
20
USE_LDCONFIG=	yes
22
USES=		libtool pathfix pkgconfig compiler:c++11-lib
21
USES=		libtool pathfix pkgconfig compiler:c++11-lib
(-)devel/gitg/Makefile (-2 / +1 lines)
Lines 27-34 Link Here
27
27
28
USES=		compiler:c11 desktop-file-utils gmake libtool pathfix pkgconfig tar:xz
28
USES=		compiler:c11 desktop-file-utils gmake libtool pathfix pkgconfig tar:xz
29
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
30
CONFIGURE_ARGS=	--disable-silent-rules \
30
CONFIGURE_ARGS=	--disable-maintainer-mode \
31
		--disable-maintainer-mode \
32
		--enable-compile-warnings=no
31
		--enable-compile-warnings=no
33
USE_GNOME=	glib20 gtk30 gtksourceview3 intlhack introspection
32
USE_GNOME=	glib20 gtk30 gtksourceview3 intlhack introspection
34
INSTALL_TARGET=	install-strip
33
INSTALL_TARGET=	install-strip
(-)devel/glib20/Makefile (-2 / +1 lines)
Lines 97-104 Link Here
97
.endif
97
.endif
98
98
99
.if ${PORT_OPTIONS:MDEBUG}
99
.if ${PORT_OPTIONS:MDEBUG}
100
CONFIGURE_ARGS+=	--enable-debug=yes \
100
CONFIGURE_ARGS+=	--enable-debug=yes
101
			--disable-silent-rules
102
.endif
101
.endif
103
102
104
post-patch:
103
post-patch:
(-)devel/libclc/Makefile (-2 / +2 lines)
Lines 15-21 Link Here
15
GH_ACCOUNT=	llvm-mirror
15
GH_ACCOUNT=	llvm-mirror
16
GH_TAGNAME=	6d78407
16
GH_TAGNAME=	6d78407
17
17
18
GNU_CONFIGURE=	yes
19
USES=		gmake python:2,build ninja
18
USES=		gmake python:2,build ninja
20
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
21
MAKE_ENV=	MAKE=${GMAKE} DESTDIR=${STAGEDIR}
20
MAKE_ENV=	MAKE=${GMAKE} DESTDIR=${STAGEDIR}
Lines 35-40 Link Here
35
do-configure:
34
do-configure:
36
	@cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} -g ninja \
35
	@cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} -g ninja \
37
		--with-llvm-config=${LOCALBASE}/bin/llvm-config${LLVMVER} \
36
		--with-llvm-config=${LOCALBASE}/bin/llvm-config${LLVMVER} \
38
		--pkgconfigdir=${PREFIX}/libdata/pkgconfig
37
		--pkgconfigdir=${PREFIX}/libdata/pkgconfig \
38
		--prefix=${PREFIX}
39
39
40
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)devel/libqb/Makefile (-1 / +1 lines)
Lines 20-26 Link Here
20
USE_LDCONFIG=	yes
20
USE_LDCONFIG=	yes
21
USES=		gmake libtool pathfix pkgconfig tar:xz
21
USES=		gmake libtool pathfix pkgconfig tar:xz
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--disable-silent-rules --with-socket-dir=${QB_SOCKET_DIR}
23
CONFIGURE_ARGS=	--with-socket-dir=${QB_SOCKET_DIR}
24
INSTALL_TARGET=	install-strip
24
INSTALL_TARGET=	install-strip
25
25
26
OPTIONS_DEFINE=	DOXYGEN
26
OPTIONS_DEFINE=	DOXYGEN
(-)devel/lua-alien/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
USES=		libtool lua shebangfix zip
22
USES=		libtool lua shebangfix zip
23
SHEBANG_FILES=	src/constants
23
SHEBANG_FILES=	src/constants
24
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
25
CONFIGURE_ARGS=	--disable-silent-rules \
25
CONFIGURE_ARGS=	--libdir=${LUA_MODLIBDIR} \
26
		--libdir=${LUA_MODLIBDIR} \
27
		--datadir=${LUA_MODSHAREDIR} \
26
		--datadir=${LUA_MODSHAREDIR} \
28
		--with-lua-suffix="${LUA_VER_STR}"
27
		--with-lua-suffix="${LUA_VER_STR}"
29
INSTALL_TARGET=	install-strip
28
INSTALL_TARGET=	install-strip
(-)devel/lua-posix/Makefile (-1 lines)
Lines 17-23 Link Here
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ENV=	LUA_INCLUDE="-I${LUA_INCDIR}" \
18
CONFIGURE_ENV=	LUA_INCLUDE="-I${LUA_INCDIR}" \
19
		LUA="${LOCALBASE}/bin/lua${LUA_VER_STR}"
19
		LUA="${LOCALBASE}/bin/lua${LUA_VER_STR}"
20
CONFIGURE_ARGS=	--disable-silent-rules
21
MAKE_ARGS=	POSIX_EXTRA_CFLAGS="" POSIX_EXTRA_LDFLAGS=""
20
MAKE_ARGS=	POSIX_EXTRA_CFLAGS="" POSIX_EXTRA_LDFLAGS=""
22
INSTALL_TARGET=	install-strip
21
INSTALL_TARGET=	install-strip
23
PORTDOCS=	*
22
PORTDOCS=	*
(-)devel/mercator/Makefile (-1 lines)
Lines 12-18 Link Here
12
12
13
LIB_DEPENDS=	libwfmath-1.0.so:math/wfmath
13
LIB_DEPENDS=	libwfmath-1.0.so:math/wfmath
14
14
15
CONFIGURE_ARGS=	--disable-silent-rules
16
USES=		libtool pathfix pkgconfig compiler:c++11-lib
15
USES=		libtool pathfix pkgconfig compiler:c++11-lib
17
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
18
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
(-)devel/patch/Makefile (-1 / +1 lines)
Lines 13-19 Link Here
13
13
14
USES=		cpe charsetfix gmake tar:xz
14
USES=		cpe charsetfix gmake tar:xz
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
CONFIGURE_ARGS=	--program-prefix=g --disable-silent-rules
16
CONFIGURE_ARGS=	--program-prefix=g
17
CPE_VENDOR=	gnu
17
CPE_VENDOR=	gnu
18
18
19
PLIST_FILES=	bin/gpatch man/man1/gpatch.1.gz
19
PLIST_FILES=	bin/gpatch man/man1/gpatch.1.gz
(-)devel/wandio/Makefile (-1 lines)
Lines 12-18 Link Here
12
LICENSE=	GPLv2
12
LICENSE=	GPLv2
13
13
14
USES=		libtool
14
USES=		libtool
15
CONFIGURE_ARGS=	--disable-silent-rules
16
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
17
USE_LDCONFIG=	yes
16
USE_LDCONFIG=	yes
18
17
(-)dns/hesiod/Makefile (-1 lines)
Lines 18-24 Link Here
18
18
19
USES=		libtool pathfix
19
USES=		libtool pathfix
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--disable-silent-rules
22
INSTALL_TARGET=	install-strip
21
INSTALL_TARGET=	install-strip
23
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
24
23
(-)dns/knot1/Makefile (-4 lines)
Lines 27-36 Link Here
27
USE_OPENSSL=	yes
27
USE_OPENSSL=	yes
28
WITH_OPENSSL_PORT=	yes
28
WITH_OPENSSL_PORT=	yes
29
29
30
.if defined(BATCH) || defined(PACKAGE_BUILDING)
31
CONFIGURE_ARGS+=	--disable-silent-rules
32
.endif
33
34
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
35
31
36
USE_RC_SUBR=	${PORTNAME}
32
USE_RC_SUBR=	${PORTNAME}
(-)dns/knot2/Makefile (-4 lines)
Lines 30-39 Link Here
30
		--with-storage=/var/db/knot \
30
		--with-storage=/var/db/knot \
31
		--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
31
		--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
32
32
33
.if defined(BATCH) || defined(PACKAGE_BUILDING)
34
CONFIGURE_ARGS+=	--disable-silent-rules
35
.endif
36
37
INSTALL_TARGET=	install-strip
33
INSTALL_TARGET=	install-strip
38
34
39
USE_RC_SUBR=	${PORTNAME}
35
USE_RC_SUBR=	${PORTNAME}
(-)games/7kaa/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
LIB_DEPENDS=	libenet.so:net/enet
15
LIB_DEPENDS=	libenet.so:net/enet
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-silent-rules \
18
CONFIGURE_ARGS=	--disable-nls # no translations ATM
19
		--disable-nls # no translations ATM
20
USES=		gmake openal:al tar:xz
19
USES=		gmake openal:al tar:xz
21
USE_SDL=	sdl2
20
USE_SDL=	sdl2
22
21
(-)games/burrtools/Makefile (-1 lines)
Lines 22-28 Link Here
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ENV=	ac_cv_lib_ICE_IceConnectionNumber="no" \
23
CONFIGURE_ENV=	ac_cv_lib_ICE_IceConnectionNumber="no" \
24
		ac_cv_search_glutInit="none required"
24
		ac_cv_search_glutInit="none required"
25
CONFIGURE_ARGS=	--disable-silent-rules
26
MAKE_ARGS=	am_lua_liblua_a_OBJECTS='lua/luaclass.$$(OBJEXT)'
25
MAKE_ARGS=	am_lua_liblua_a_OBJECTS='lua/luaclass.$$(OBJEXT)'
27
26
28
LDFLAGS+=	-Wl,--as-needed # fltk deps
27
LDFLAGS+=	-Wl,--as-needed # fltk deps
(-)games/euchre/Makefile (-1 lines)
Lines 19-25 Link Here
19
USES=		pkgconfig
19
USES=		pkgconfig
20
USE_GNOME=	gtk20
20
USE_GNOME=	gtk20
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--disable-silent-rules
23
22
24
PLIST_FILES=	bin/${PORTNAME} \
23
PLIST_FILES=	bin/${PORTNAME} \
25
		share/pixmaps/${PORTNAME}.png
24
		share/pixmaps/${PORTNAME}.png
(-)games/lander/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
USE_GL=		gl glu
22
USE_GL=		gl glu
23
23
24
CONFIGURE_ARGS=	--with-boost="${LOCALBASE}" \
24
CONFIGURE_ARGS=	--with-boost="${LOCALBASE}" \
25
		--with-boost-filesystem=boost_filesystem \
25
		--with-boost-filesystem=boost_filesystem
26
		--disable-silent-rules
27
LDFLAGS=	-L${LOCALBASE}/lib
26
LDFLAGS=	-L${LOCALBASE}/lib
28
27
29
PORTDOCS=	*
28
PORTDOCS=	*
(-)graphics/entangle/Makefile (-6 lines)
Lines 30-41 Link Here
30
USE_LDCONFIG=	yes
30
USE_LDCONFIG=	yes
31
INSTALL_TARGET=	install-strip
31
INSTALL_TARGET=	install-strip
32
32
33
# XXX: it would be nice if one day this option would be passed automatically
34
# to configure scripts that support it :)
35
.if defined(BATCH) || defined(PACKAGE_BUILDING)
36
CONFIGURE_ARGS=	--disable-silent-rules
37
.endif
38
39
CPPFLAGS+=	-I${LOCALBASE}/include
33
CPPFLAGS+=	-I${LOCALBASE}/include
40
LDFLAGS+=	-L${LOCALBASE}/lib
34
LDFLAGS+=	-L${LOCALBASE}/lib
41
35
(-)graphics/gnash/Makefile (-2 / +1 lines)
Lines 36-43 Link Here
36
		--with-plugins-install=prefix \
36
		--with-plugins-install=prefix \
37
		--sysconfdir="${SYSCONFIGDIR}" \
37
		--sysconfdir="${SYSCONFIGDIR}" \
38
		--disable-kparts3 \
38
		--disable-kparts3 \
39
		--disable-jemalloc \
39
		--disable-jemalloc
40
		--disable-silent-rules
41
40
42
GNASHVER=	${PORTVERSION}
41
GNASHVER=	${PORTVERSION}
43
CONFIG_FILES=	gnashpluginrc gnashrc
42
CONFIG_FILES=	gnashpluginrc gnashrc
(-)graphics/graphviz/Makefile (-2 / +1 lines)
Lines 162-169 Link Here
162
		--with-fontconfigincludedir=${LOCALBASE}/include \
162
		--with-fontconfigincludedir=${LOCALBASE}/include \
163
		--with-fontconfiglibdir=${LOCALBASE}/lib \
163
		--with-fontconfiglibdir=${LOCALBASE}/lib \
164
		--disable-io --disable-ocaml --disable-java \
164
		--disable-io --disable-ocaml --disable-java \
165
		--disable-sharp \
165
		--disable-sharp
166
		--disable-silent-rules
167
166
168
.if ${PORT_OPTIONS:MMING}
167
.if ${PORT_OPTIONS:MMING}
169
BROKEN=	Ming incomplete, uses removed libgraph
168
BROKEN=	Ming incomplete, uses removed libgraph
(-)graphics/gthumb/Makefile (-2 / +1 lines)
Lines 24-31 Link Here
24
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
25
CONFIGURE_ENV=	ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \
25
CONFIGURE_ENV=	ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \
26
		ac_cv_lib_tiff_TIFFWriteScanline=yes
26
		ac_cv_lib_tiff_TIFFWriteScanline=yes
27
CONFIGURE_ARGS=	--disable-silent-rules \
27
CONFIGURE_ARGS=	--disable-libchamplain \
28
		--disable-libchamplain \
29
		--enable-compile-warnings=minimum \
28
		--enable-compile-warnings=minimum \
30
		--enable-librsvg
29
		--enable-librsvg
31
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
(-)graphics/ocrfeeder/Makefile (-1 lines)
Lines 29-35 Link Here
29
		python tar:xz
29
		python tar:xz
30
USE_GNOME=	gnomedocutils gtk30 intltool librsvg2 pygobject3
30
USE_GNOME=	gnomedocutils gtk30 intltool librsvg2 pygobject3
31
GNU_CONFIGURE=	yes
31
GNU_CONFIGURE=	yes
32
CONFIGURE_ARGS=	--disable-silent-rules
33
32
34
CPPFLAGS+=	-I${LOCALBASE}/include
33
CPPFLAGS+=	-I${LOCALBASE}/include
35
LDFLAGS+=	-L${LOCALBASE}/lib
34
LDFLAGS+=	-L${LOCALBASE}/lib
(-)graphics/sekrit-twc-zimg/Makefile (-1 lines)
Lines 23-29 Link Here
23
EXTRACT_AFTER_ARGS=	--exclude test/extra
23
EXTRACT_AFTER_ARGS=	--exclude test/extra
24
PATHFIX_MAKEFILEIN=	Makefile.am
24
PATHFIX_MAKEFILEIN=	Makefile.am
25
GNU_CONFIGURE=	yes
25
GNU_CONFIGURE=	yes
26
CONFIGURE_ARGS=	--disable-silent-rules
27
CPPFLAGS+=	-D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \
26
CPPFLAGS+=	-D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \
28
		-D_DECLARE_C99_LDBL_MATH # XXX ports/193528
27
		-D_DECLARE_C99_LDBL_MATH # XXX ports/193528
29
CPPFLAGS+=	${CPPFLAGS_${CHOSEN_COMPILER_TYPE}_${COMPILER_VERSION}}
28
CPPFLAGS+=	${CPPFLAGS_${CHOSEN_COMPILER_TYPE}_${COMPILER_VERSION}}
(-)graphics/ufraw/Makefile (-1 / +1 lines)
Lines 17-23 Link Here
17
		liblcms2.so:graphics/lcms2
17
		liblcms2.so:graphics/lcms2
18
18
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--disable-silent-rules --enable-extras
20
CONFIGURE_ARGS=	--enable-extras
21
USES=		desktop-file-utils gettext gmake jpeg pkgconfig
21
USES=		desktop-file-utils gettext gmake jpeg pkgconfig
22
22
23
CPPFLAGS+=	-I${LOCALBASE}/include
23
CPPFLAGS+=	-I${LOCALBASE}/include
(-)irc/hexchat/Makefile (-2 / +2 lines)
Lines 21-29 Link Here
21
USE_GNOME=	cairo gtk20 intltool libxml2
21
USE_GNOME=	cairo gtk20 intltool libxml2
22
USE_XORG=	x11
22
USE_XORG=	x11
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS+=--enable-openssl --enable-gtkfe --disable-sysinfo \
24
CONFIGURE_ARGS=	--enable-openssl --enable-gtkfe --disable-sysinfo \
25
		--with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig \
25
		--with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig \
26
		--disable-silent-rules LUA=lua-${LUA_VER}
26
		LUA=lua-${LUA_VER}
27
INSTALLS_ICONS=	yes
27
INSTALLS_ICONS=	yes
28
INSTALL_TARGET=	install-strip
28
INSTALL_TARGET=	install-strip
29
29
(-)irc/ngircd/Makefile (-1 lines)
Lines 17-23 Link Here
17
17
18
USES=		cpe tar:xz
18
USES=		cpe tar:xz
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--disable-silent-rules # --docdir=${WRKDIR}/tmproot
21
USE_RC_SUBR=	ngircd
20
USE_RC_SUBR=	ngircd
22
21
23
CPE_VENDOR=	barton
22
CPE_VENDOR=	barton
(-)mail/mpop/Makefile (-1 / +1 lines)
Lines 14-20 Link Here
14
USES=		cpe gmake makeinfo pkgconfig tar:xz
14
USES=		cpe gmake makeinfo pkgconfig tar:xz
15
CPE_VENDOR=	martin_lambers
15
CPE_VENDOR=	martin_lambers
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS=	--disable-silent-rules --with-tls=no
17
CONFIGURE_ARGS=	--with-tls=no
18
18
19
INFO=		mpop
19
INFO=		mpop
20
20
(-)mail/mu/Makefile (-1 / +1 lines)
Lines 21-27 Link Here
21
USES=		autoreconf gmake libtool makeinfo pkgconfig
21
USES=		autoreconf gmake libtool makeinfo pkgconfig
22
USE_GNOME=	glib20
22
USE_GNOME=	glib20
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-silent-rules --disable-gtk --disable-mu4e
24
CONFIGURE_ARGS=	--disable-gtk --disable-mu4e
25
INSTALL_TARGET=	install-strip
25
INSTALL_TARGET=	install-strip
26
26
27
OPTIONS_DEFINE=		DOCS GUILE
27
OPTIONS_DEFINE=		DOCS GUILE
(-)mail/mu4e/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
GH_ACCOUNT=	djcb
18
GH_ACCOUNT=	djcb
19
USE_EMACS=	yes
19
USE_EMACS=	yes
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--disable-silent-rules \
21
CONFIGURE_ARGS=	--disable-gtk \
22
		--disable-gtk \
23
		--disable-webkit \
22
		--disable-webkit \
24
		--disable-guile \
23
		--disable-guile \
25
		--docdir="${DOCSDIR}" \
24
		--docdir="${DOCSDIR}" \
(-)multimedia/ffms2/Makefile (-1 / +1 lines)
Lines 21-27 Link Here
21
EXCLUDE=	VSHelper.h VSScript.h VapourSynth.h
21
EXCLUDE=	VSHelper.h VSScript.h VapourSynth.h
22
EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,}
22
EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,}
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-silent-rules --enable-static
24
CONFIGURE_ARGS=	--enable-static
25
CPPFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
25
CPPFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
26
CPPFLAGS+=	`pkg-config vapoursynth --cflags`
26
CPPFLAGS+=	`pkg-config vapoursynth --cflags`
27
INSTALL_TARGET=	install-strip
27
INSTALL_TARGET=	install-strip
(-)multimedia/gmtk/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
USE_GNOME=	glib20 intltool
17
USE_GNOME=	glib20 intltool
18
USE_PERL5=	build
18
USE_PERL5=	build
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--disable-silent-rules \
20
CONFIGURE_ARGS=	--disable-gconf
21
		--disable-gconf
22
INSTALL_TARGET=	install-strip
21
INSTALL_TARGET=	install-strip
23
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
24
23
(-)multimedia/gnome-mplayer/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
USE_XORG=	x11 xscrnsaver
19
USE_XORG=	x11 xscrnsaver
20
USE_GNOME=	glib20
20
USE_GNOME=	glib20
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--disable-silent-rules \
22
CONFIGURE_ARGS=	--disable-nautilus \
23
		--disable-nautilus \
24
		--disable-nemo \
23
		--disable-nemo \
25
		--disable-schemas-install \
24
		--disable-schemas-install \
26
		--without-libgda
25
		--without-libgda
(-)multimedia/gstreamer1-vaapi/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
LIB_DEPENDS=	libva.so:multimedia/libva
15
LIB_DEPENDS=	libva.so:multimedia/libva
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-wayland \
18
CONFIGURE_ARGS=	--disable-wayland
19
		--disable-silent-rules
20
INSTALL_TARGET=	install-strip
19
INSTALL_TARGET=	install-strip
21
USES=		compiler:c11 gmake libtool pkgconfig tar:xz
20
USES=		compiler:c11 gmake libtool pkgconfig tar:xz
22
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
(-)multimedia/vapoursynth/Makefile (-1 lines)
Lines 14-20 Link Here
14
USES=		autoreconf gmake libtool localbase pathfix pkgconfig
14
USES=		autoreconf gmake libtool localbase pathfix pkgconfig
15
PATHFIX_MAKEFILEIN=	Makefile.am
15
PATHFIX_MAKEFILEIN=	Makefile.am
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS=	--disable-silent-rules
18
CPPFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
17
CPPFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
19
INSTALL_TARGET=	install-strip
18
INSTALL_TARGET=	install-strip
20
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
(-)multimedia/vlc/Makefile (-1 / +1 lines)
Lines 41-47 Link Here
41
		--disable-dv1394 --disable-egl --disable-fdkaac \
41
		--disable-dv1394 --disable-egl --disable-fdkaac \
42
		--disable-gles1 --disable-gles2 --disable-kai --disable-kva \
42
		--disable-gles1 --disable-gles2 --disable-kai --disable-kva \
43
		--disable-libvnc --disable-opencv --disable-projectm \
43
		--disable-libvnc --disable-opencv --disable-projectm \
44
		--disable-quicksync --disable-silent-rules --disable-telx \
44
		--disable-quicksync --disable-telx \
45
		--disable-tiger --disable-tremor --disable-udev \
45
		--disable-tiger --disable-tremor --disable-udev \
46
		--disable-update-check --disable-vcdx --disable-vsxu \
46
		--disable-update-check --disable-vcdx --disable-vsxu \
47
		--disable-wasapi --disable-x26410b \
47
		--disable-wasapi --disable-x26410b \
(-)net/belle-sip/Makefile (-1 / +1 lines)
Lines 21-27 Link Here
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CPPFLAGS+=	-I${LOCALBASE}/include
22
CPPFLAGS+=	-I${LOCALBASE}/include
23
LIBS+=		-L${LOCALBASE}/lib
23
LIBS+=		-L${LOCALBASE}/lib
24
CONFIGURE_ARGS=	--disable-silent-rules --disable-strict --disable-tests \
24
CONFIGURE_ARGS=	--disable-strict --disable-tests \
25
		--with-antlr=${LOCALBASE}
25
		--with-antlr=${LOCALBASE}
26
INSTALL_TARGET=	install-strip
26
INSTALL_TARGET=	install-strip
27
USES=		compiler:c11 gmake libtool pathfix
27
USES=		compiler:c11 gmake libtool pathfix
(-)net/kea/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
USE_OPENSSL=	yes
19
USE_OPENSSL=	yes
20
USE_RC_SUBR=	${PORTNAME}
20
USE_RC_SUBR=	${PORTNAME}
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--disable-silent-rules \
22
CONFIGURE_ARGS=	--with-openssl=${OPENSSLBASE} \
23
		--with-openssl=${OPENSSLBASE} \
24
		--with-log4cplus=${LOCALBASE} \
23
		--with-log4cplus=${LOCALBASE} \
25
		--with-boost-include=${LOCALBASE}/include \
24
		--with-boost-include=${LOCALBASE}/include \
26
		--with-boost-lib-dir=${LOCALBASE}/lib \
25
		--with-boost-lib-dir=${LOCALBASE}/lib \
(-)net/linphone/Makefile (-1 / +1 lines)
Lines 19-25 Link Here
19
19
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--disable-deplibs-link --disable-documentation \
21
CONFIGURE_ARGS=	--disable-deplibs-link --disable-documentation \
22
		--disable-silent-rules --disable-speex --disable-strict \
22
		--disable-speex --disable-strict \
23
		--disable-tutorials \
23
		--disable-tutorials \
24
		--enable-external-mediastreamer --enable-external-ortp \
24
		--enable-external-mediastreamer --enable-external-ortp \
25
		--enable-lime --with-polarssl=${LOCALBASE} \
25
		--enable-lime --with-polarssl=${LOCALBASE} \
(-)net/mediastreamer/Makefile (-1 / +1 lines)
Lines 21-27 Link Here
21
21
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--disable-alsa --disable-documentation --disable-matroska \
23
CONFIGURE_ARGS=	--disable-alsa --disable-documentation --disable-matroska \
24
		--disable-pulseaudio --disable-silent-rules --disable-strict \
24
		--disable-pulseaudio --disable-strict \
25
		--with-gsm=${LOCALBASE} --with-srtp=${LOCALBASE} \
25
		--with-gsm=${LOCALBASE} --with-srtp=${LOCALBASE} \
26
		--with-polarssl=${LOCALBASE} xxd_found=yes
26
		--with-polarssl=${LOCALBASE} xxd_found=yes
27
CPPFLAGS+=	-I${LOCALBASE}/include -DHAVE_ARC4RANDOM
27
CPPFLAGS+=	-I${LOCALBASE}/include -DHAVE_ARC4RANDOM
(-)net/netembryo/Makefile (-1 lines)
Lines 27-33 Link Here
27
USE_GNOME=	glib20
27
USE_GNOME=	glib20
28
USE_LDCONFIG=	yes
28
USE_LDCONFIG=	yes
29
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
30
CONFIGURE_ARGS=	--disable-silent-rules
31
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
32
31
33
.include <bsd.port.options.mk>
32
.include <bsd.port.options.mk>
(-)net/ntp/Makefile (-1 lines)
Lines 21-27 Link Here
21
USES=		cpe pathfix shebangfix libedit libtool pkgconfig ssl
21
USES=		cpe pathfix shebangfix libedit libtool pkgconfig ssl
22
22
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-silent-rules
25
24
26
TEST_TARGET=	check
25
TEST_TARGET=	check
27
26
(-)net/ntp-devel/Makefile (-1 lines)
Lines 22-28 Link Here
22
		gettext-runtime
22
		gettext-runtime
23
23
24
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
25
CONFIGURE_ARGS=	--disable-silent-rules
26
25
27
TEST_TARGET=	check
26
TEST_TARGET=	check
28
27
(-)net/openntpd/Makefile (-1 lines)
Lines 18-24 Link Here
18
USE_RC_SUBR=	openntpd
18
USE_RC_SUBR=	openntpd
19
19
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--disable-silent-rules
22
21
23
OPTIONS_DEFINE=		RESSL
22
OPTIONS_DEFINE=		RESSL
24
RESSL_DESC=		SSL/TLS support via LibreSSL
23
RESSL_DESC=		SSL/TLS support via LibreSSL
(-)net/ortp/Makefile (-1 / +1 lines)
Lines 15-21 Link Here
15
CONFLICTS_INSTALL=	linphone-base-[0-9]*
15
CONFLICTS_INSTALL=	linphone-base-[0-9]*
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-silent-rules --disable-strict
18
CONFIGURE_ARGS=	--disable-strict
19
INSTALL_TARGET=	install-strip
19
INSTALL_TARGET=	install-strip
20
USES=		libtool pathfix pkgconfig
20
USES=		libtool pathfix pkgconfig
21
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
(-)net-mgmt/adcli/Makefile (-1 / +1 lines)
Lines 26-32 Link Here
26
26
27
CONFIGURE_ENV+=	ac_cv_path_KRB5_CONFIG=${KRB5CONFIG}	\
27
CONFIGURE_ENV+=	ac_cv_path_KRB5_CONFIG=${KRB5CONFIG}	\
28
		ac_cv_path_XMLTO=${TRUE}
28
		ac_cv_path_XMLTO=${TRUE}
29
CONFIGURE_ARGS+=--disable-silent-rules --sysconfdir=/etc
29
CONFIGURE_ARGS=	--sysconfdir=/etc
30
30
31
# Kerberos may or may not be there, but LDAP always is:
31
# Kerberos may or may not be there, but LDAP always is:
32
CFLAGS+=	-I${LOCALBASE}/include -DLDAP_DEPRECATED=0
32
CFLAGS+=	-I${LOCALBASE}/include -DLDAP_DEPRECATED=0
(-)net-mgmt/netxms/Makefile (-1 lines)
Lines 46-52 Link Here
46
USE_OPENSSL=	yes
46
USE_OPENSSL=	yes
47
USES=		gmake iconv libtool perl5
47
USES=		gmake iconv libtool perl5
48
GNU_CONFIGURE=	yes
48
GNU_CONFIGURE=	yes
49
CONFIGURE_ARGS=	--disable-silent-rules
50
USE_LDCONFIG=	yes
49
USE_LDCONFIG=	yes
51
INSTALL_TARGET=	install-strip
50
INSTALL_TARGET=	install-strip
52
51
(-)net-p2p/gnunet/Makefile (-2 / +1 lines)
Lines 30-37 Link Here
30
USE_GNOME=	glib20
30
USE_GNOME=	glib20
31
USE_GSTREAMER1=	yes
31
USE_GSTREAMER1=	yes
32
GNU_CONFIGURE=	yes
32
GNU_CONFIGURE=	yes
33
CONFIGURE_ARGS=	--disable-silent-rules \
33
CONFIGURE_ARGS=	--with-extractor=${LOCALBASE} \
34
		--with-extractor=${LOCALBASE} \
35
		--with-gnutls=${LOCALBASE} \
34
		--with-gnutls=${LOCALBASE} \
36
		--with-libgcrypt-prefix=${LOCALBASE} \
35
		--with-libgcrypt-prefix=${LOCALBASE} \
37
		--with-libunistring-prefix=${LOCALBASE} \
36
		--with-libunistring-prefix=${LOCALBASE} \
(-)net-p2p/mldonkey/Makefile (-2 / +1 lines)
Lines 24-31 Link Here
24
MAKE_ENV+=	OCAMLRUNPARAM="l=256M"
24
MAKE_ENV+=	OCAMLRUNPARAM="l=256M"
25
MAKE_JOBS_UNSAFE=	yes
25
MAKE_JOBS_UNSAFE=	yes
26
26
27
CONFIGURE_ARGS+=${ICONV_CONFIGURE_ARG} \
27
CONFIGURE_ARGS+=${ICONV_CONFIGURE_ARG}
28
		--disable-option-checking
29
CONFIGURE_ENV+=	NEWCXX="${CXX}" \
28
CONFIGURE_ENV+=	NEWCXX="${CXX}" \
30
		PTHREAD_LIBS="-lpthread"
29
		PTHREAD_LIBS="-lpthread"
31
CPPFLAGS+=	-I${LOCALBASE}/include
30
CPPFLAGS+=	-I${LOCALBASE}/include
(-)print/cups-filters/Makefile (-1 / +1 lines)
Lines 30-36 Link Here
30
USE_GNOME=	glib20
30
USE_GNOME=	glib20
31
USE_RC_SUBR=	cups_browsed
31
USE_RC_SUBR=	cups_browsed
32
GNU_CONFIGURE=	yes
32
GNU_CONFIGURE=	yes
33
CONFIGURE_ARGS=	--disable-silent-rules --with-shell=/bin/sh \
33
CONFIGURE_ARGS=	--with-shell=/bin/sh \
34
		ZLIB_CFLAGS=" " ZLIB_LIBS="-lz"
34
		ZLIB_CFLAGS=" " ZLIB_LIBS="-lz"
35
INSTALL_TARGET=	install-strip
35
INSTALL_TARGET=	install-strip
36
36
(-)science/gwyddion/Makefile (-1 / +1 lines)
Lines 24-30 Link Here
24
USE_GL=		glu
24
USE_GL=		glu
25
USE_XORG=	xmu
25
USE_XORG=	xmu
26
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
27
CONFIGURE_ARGS=	--disable-silent-rules --disable-gtk-doc \
27
CONFIGURE_ARGS=	--disable-gtk-doc \
28
		--without-kde4-thumbnailer
28
		--without-kde4-thumbnailer
29
INSTALL_TARGET=	install-strip
29
INSTALL_TARGET=	install-strip
30
INSTALLS_ICONS=	yes
30
INSTALLS_ICONS=	yes
(-)security/gnutls/Makefile (-1 lines)
Lines 22-28 Link Here
22
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-guile \
24
CONFIGURE_ARGS=	--disable-guile \
25
		--disable-silent-rules \
26
		--enable-local-libopts \
25
		--enable-local-libopts \
27
		ac_cv_type_max_align_t=yes
26
		ac_cv_type_max_align_t=yes
28
CPPFLAGS+=	-I${LOCALBASE}/include
27
CPPFLAGS+=	-I${LOCALBASE}/include
(-)security/libbzrtp/Makefile (-1 / +1 lines)
Lines 15-21 Link Here
15
LIB_DEPENDS=	libmbedtls.so.9:security/polarssl13
15
LIB_DEPENDS=	libmbedtls.so.9:security/polarssl13
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-silent-rules --disable-strict \
18
CONFIGURE_ARGS=	--disable-strict \
19
		--with-polarssl=${LOCALBASE}
19
		--with-polarssl=${LOCALBASE}
20
INSTALL_TARGET=	install-strip
20
INSTALL_TARGET=	install-strip
21
USES=		libtool pathfix pkgconfig
21
USES=		libtool pathfix pkgconfig
(-)security/suricata/Makefile (-1 lines)
Lines 104-110 Link Here
104
SUB_FILES=	pkg-message
104
SUB_FILES=	pkg-message
105
105
106
CONFIGURE_ARGS+=--enable-gccprotect \
106
CONFIGURE_ARGS+=--enable-gccprotect \
107
		--disable-silent-rules \
108
		--with-libpcre-includes=${LOCALBASE}/include \
107
		--with-libpcre-includes=${LOCALBASE}/include \
109
		--with-libpcre-libraries=${LOCALBASE}/lib \
108
		--with-libpcre-libraries=${LOCALBASE}/lib \
110
		--with-libyaml-includes=${LOCALBASE}/include \
109
		--with-libyaml-includes=${LOCALBASE}/include \
(-)sysutils/fusefs-simple-mtpfs/Makefile (-1 lines)
Lines 18-24 Link Here
18
18
19
USES=		autoreconf compiler:c++11-lib fuse localbase pkgconfig
19
USES=		autoreconf compiler:c++11-lib fuse localbase pkgconfig
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--disable-silent-rules
22
MAKEFILE=	makefile
21
MAKEFILE=	makefile
23
INSTALL_TARGET=	install-strip
22
INSTALL_TARGET=	install-strip
24
PLIST_FILES=	bin/${PORTNAME} \
23
PLIST_FILES=	bin/${PORTNAME} \
(-)sysutils/fusefs-squashfuse/Makefile (-1 lines)
Lines 16-22 Link Here
16
16
17
USES=		autoreconf fuse libtool pkgconfig
17
USES=		autoreconf fuse libtool pkgconfig
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
CONFIGURE_ARGS=	--disable-silent-rules
20
19
21
PLIST_FILES=	bin/squashfuse bin/squashfuse_ll man/man1/squashfuse.1.gz
20
PLIST_FILES=	bin/squashfuse bin/squashfuse_ll man/man1/squashfuse.1.gz
22
21
(-)sysutils/libcpuid/Makefile (-1 lines)
Lines 15-21 Link Here
15
15
16
USES=		libtool pathfix
16
USES=		libtool pathfix
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-silent-rules
19
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
20
INSTALL_TARGET=	install-strip
19
INSTALL_TARGET=	install-strip
21
20
(-)sysutils/unieject/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
USES=		tar:bzip2 pathfix pkgconfig gettext iconv libtool
20
USES=		tar:bzip2 pathfix pkgconfig gettext iconv libtool
21
USE_GNOME=	glib20
21
USE_GNOME=	glib20
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--disable-silent-rules \
23
CONFIGURE_ARGS=	--disable-doc
24
		--disable-doc
25
USE_LDCONFIG=	yes
24
USE_LDCONFIG=	yes
26
INSTALL_TARGET=	install-strip
25
INSTALL_TARGET=	install-strip
27
26
(-)sysutils/watchman/Makefile (-4 lines)
Lines 20-29 Link Here
20
CONFIGURE_ARGS=	--without-python --without-ruby # in separate ports
20
CONFIGURE_ARGS=	--without-python --without-ruby # in separate ports
21
TEST_TARGET=	check
21
TEST_TARGET=	check
22
22
23
.if defined(BATCH) || defined(PACKAGE_BUILDING)
24
CONFIGURE_ARGS+=	--disable-silent-rules
25
.endif
26
27
PLIST_FILES=	bin/${PORTNAME} \
23
PLIST_FILES=	bin/${PORTNAME} \
28
		"@dir(,,2777) /var/run/${PORTNAME}"
24
		"@dir(,,2777) /var/run/${PORTNAME}"
29
PORTDOCS=	README.markdown
25
PORTDOCS=	README.markdown
(-)textproc/google-ctemplate/Makefile (-1 lines)
Lines 17-23 Link Here
17
17
18
USES=		libtool pathfix pkgconfig python shebangfix
18
USES=		libtool pathfix pkgconfig python shebangfix
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--disable-silent-rules
21
SHEBANG_FILES=	src/template-converter src/htmlparser/generate_fsm.py src/htmlparser/fsm_config.py
20
SHEBANG_FILES=	src/template-converter src/htmlparser/generate_fsm.py src/htmlparser/fsm_config.py
22
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
23
USE_GITHUB=	yes
22
USE_GITHUB=	yes
(-)textproc/groonga/Makefile (-1 lines)
Lines 16-22 Link Here
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS=	--disable-benchmark \
17
CONFIGURE_ARGS=	--disable-benchmark \
18
		--disable-document \
18
		--disable-document \
19
		--disable-silent-rules \
20
		--localstatedir=/var \
19
		--localstatedir=/var \
21
		--without-cutter \
20
		--without-cutter \
22
		--without-inkscape \
21
		--without-inkscape \
(-)textproc/libucl/Makefile (-1 lines)
Lines 41-47 Link Here
41
USE_LDCONFIG=	yes
41
USE_LDCONFIG=	yes
42
42
43
GNU_CONFIGURE=	yes
43
GNU_CONFIGURE=	yes
44
CONFIGURE_ARGS+=	--disable-silent-rules
45
44
46
GH_ACCOUNT=	vstakhov
45
GH_ACCOUNT=	vstakhov
47
46
(-)textproc/uncrustify/Makefile (-1 lines)
Lines 14-20 Link Here
14
14
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
USES=		gmake
16
USES=		gmake
17
CONFIGURE_ARGS=	--disable-silent-rules
18
TEST_TARGET=	check
17
TEST_TARGET=	check
19
18
20
PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
19
PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
(-)textproc/xmlwrapp/Makefile (-1 lines)
Lines 27-33 Link Here
27
USES=		pathfix pkgconfig libtool
27
USES=		pathfix pkgconfig libtool
28
USE_GNOME=	libxml2
28
USE_GNOME=	libxml2
29
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
30
CONFIGURE_ARGS=	--disable-silent-rules
31
USE_LDCONFIG=	yes
30
USE_LDCONFIG=	yes
32
INSTALL_TARGET=	install-strip
31
INSTALL_TARGET=	install-strip
33
32
(-)www/cherokee/Makefile (-2 / +1 lines)
Lines 27-34 Link Here
27
USE_RC_SUBR=	cherokee
27
USE_RC_SUBR=	cherokee
28
USE_OPENSSL=	yes
28
USE_OPENSSL=	yes
29
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
30
CONFIGURE_ARGS=	--disable-silent-rules \
30
CONFIGURE_ARGS=	--disable-static \
31
		--disable-static \
32
		--localstatedir=${CHEROKEE_VARDIR} \
31
		--localstatedir=${CHEROKEE_VARDIR} \
33
		--without-php \
32
		--without-php \
34
		--with-python=${PYTHON_CMD} \
33
		--with-python=${PYTHON_CMD} \
(-)www/gecko-mediaplayer/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
USE_GNOME=	glib20
21
USE_GNOME=	glib20
22
USE_CXXSTD=	c++11
22
USE_CXXSTD=	c++11
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-silent-rules \
24
CONFIGURE_ARGS=	--disable-schemas-install \
25
		--disable-schemas-install \
26
		--with-plugin_dir="${WEBPLUGIN_DIR}"
25
		--with-plugin_dir="${WEBPLUGIN_DIR}"
27
26
28
CPPFLAGS+=	-I${LOCALBASE}/include
27
CPPFLAGS+=	-I${LOCALBASE}/include
(-)www/gnome-web-photo/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
USE_GNOME=	gconf2 gnomeprefix intltool
19
USE_GNOME=	gconf2 gnomeprefix intltool
20
USES=		gettext gmake pathfix pkgconfig tar:xz
20
USES=		gettext gmake pathfix pkgconfig tar:xz
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--disable-silent-rules \
22
CONFIGURE_ARGS=	--with-gtk=2.0
23
		--with-gtk=2.0
24
23
25
GCONF_SCHEMAS=	thumbnailer.schemas
24
GCONF_SCHEMAS=	thumbnailer.schemas
26
25
(-)www/tinyproxy/Makefile (-1 lines)
Lines 21-27 Link Here
21
XHEADER_DESC=		X-Tinyproxy header
21
XHEADER_DESC=		X-Tinyproxy header
22
22
23
CONFIGURE_ARGS=	--bindir=${PREFIX}/sbin \
23
CONFIGURE_ARGS=	--bindir=${PREFIX}/sbin \
24
		--disable-silent-rules \
25
		--program-transform-name=""
24
		--program-transform-name=""
26
GNU_CONFIGURE=	yes
25
GNU_CONFIGURE=	yes
27
USE_RC_SUBR=	${PORTNAME}
26
USE_RC_SUBR=	${PORTNAME}
(-)www/trafficserver/Makefile (-1 lines)
Lines 37-43 Link Here
37
		--with-openssl=${OPENSSLBASE} \
37
		--with-openssl=${OPENSSLBASE} \
38
		--with-xml=libxml2 \
38
		--with-xml=libxml2 \
39
		--with-tcl=${TCL_LIBDIR} \
39
		--with-tcl=${TCL_LIBDIR} \
40
		--disable-silent-rules \
41
		--enable-cppapi \
40
		--enable-cppapi \
42
		--localstatedir=/var \
41
		--localstatedir=/var \
43
		--with-user=${USERS} \
42
		--with-user=${USERS} \
(-)www/webkit-gtk3/Makefile (-1 lines)
Lines 50-56 Link Here
50
50
51
BROKEN_sparc64=	fails to detect working compiler
51
BROKEN_sparc64=	fails to detect working compiler
52
52
53
#CONFIGURE_ARGS+=--disable-silent-rules
54
CONFIGURE_ARGS+=--disable-egl \
53
CONFIGURE_ARGS+=--disable-egl \
55
		--disable-gles2
54
		--disable-gles2
56
#		--with-acceleration-backend=opengl # clutter broken?
55
#		--with-acceleration-backend=opengl # clutter broken?
(-)x11/keybinder/Makefile (-1 / +1 lines)
Lines 21-27 Link Here
21
USE_GNOME=	gtk20 introspection:build
21
USE_GNOME=	gtk20 introspection:build
22
USE_XORG=	x11 xext xrender
22
USE_XORG=	x11 xext xrender
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-silent-rules --disable-gtk-doc
24
CONFIGURE_ARGS=	--disable-gtk-doc
25
INSTALL_TARGET=	install-strip
25
INSTALL_TARGET=	install-strip
26
USE_LDCONFIG=	yes
26
USE_LDCONFIG=	yes
27
27
(-)x11/keybinder-gtk3/Makefile (-1 / +1 lines)
Lines 22-28 Link Here
22
USE_GNOME=	gtk30 introspection:build
22
USE_GNOME=	gtk30 introspection:build
23
USE_XORG=	x11 xext xrender
23
USE_XORG=	x11 xext xrender
24
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
25
CONFIGURE_ARGS=	--disable-silent-rules --disable-gtk-doc
25
CONFIGURE_ARGS=	--disable-gtk-doc
26
INSTALL_TARGET=	install-strip
26
INSTALL_TARGET=	install-strip
27
USE_LDCONFIG=	yes
27
USE_LDCONFIG=	yes
28
28
(-)x11/lxpanel/Makefile (-1 / +1 lines)
Lines 26-32 Link Here
26
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
27
CONFIGURE_ARGS=	--prefix="${PREFIX}" \
27
CONFIGURE_ARGS=	--prefix="${PREFIX}" \
28
		--with-plugins=netstatus,volume,volumealsa,deskno,batt,kbled,xkb,thermal,cpu,cpufreq,monitors,wnckpager \
28
		--with-plugins=netstatus,volume,volumealsa,deskno,batt,kbled,xkb,thermal,cpu,cpufreq,monitors,wnckpager \
29
		--with-x --disable-silent-rules \
29
		--with-x \
30
		CPPFLAGS="-I${LOCALBASE}/include" \
30
		CPPFLAGS="-I${LOCALBASE}/include" \
31
		LDFLAGS="-L${LOCALBASE}/lib"
31
		LDFLAGS="-L${LOCALBASE}/lib"
32
CFLAGS+=	-I${WRKSRC}
32
CFLAGS+=	-I${WRKSRC}
(-)x11/sbxkb/Makefile (-1 lines)
Lines 12-18 Link Here
12
LICENSE=	GPLv3
12
LICENSE=	GPLv3
13
13
14
GNU_CONFIGURE=	yes
14
GNU_CONFIGURE=	yes
15
CONFIGURE_ARGS=	--disable-silent-rules
16
LIBS+=		-L${LOCALBASE}/lib -lX11
15
LIBS+=		-L${LOCALBASE}/lib -lX11
17
USES=		pkgconfig
16
USES=		pkgconfig
18
USE_GNOME=	gtk20
17
USE_GNOME=	gtk20
(-)x11/workrave/Makefile (-3 / +2 lines)
Lines 12-23 Link Here
12
12
13
LIB_DEPENDS=	libgdome.so:textproc/gdome2
13
LIB_DEPENDS=	libgdome.so:textproc/gdome2
14
14
15
USES=	autoreconf:build gettext gmake libtool pathfix pkgconfig
15
USES=		autoreconf:build gettext gmake libtool pathfix pkgconfig
16
USE_XORG=	ice recordproto sm x11 xext xmu xscrnsaver xtst
16
USE_XORG=	ice recordproto sm x11 xext xmu xscrnsaver xtst
17
USE_GNOME=	intltool intlhack introspection gtkmm30
17
USE_GNOME=	intltool intlhack introspection gtkmm30
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
CONFIGURE_ARGS=	--disable-silent-rules \
19
CONFIGURE_ARGS=	--disable-gsettings \
20
		--disable-gsettings \
21
		--disable-pulse \
20
		--disable-pulse \
22
		--disable-gconf \
21
		--disable-gconf \
23
		--disable-mate \
22
		--disable-mate \
(-)x11/xtermcontrol/Makefile (-1 lines)
Lines 14-20 Link Here
14
14
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
CONFIGURE_ENV=	ac_cv_header_libintl_h=no
16
CONFIGURE_ENV=	ac_cv_header_libintl_h=no
17
CONFIGURE_ARGS=	--disable-silent-rules
18
17
19
PLIST_FILES=	bin/xtermcontrol man/man1/xtermcontrol.1.gz
18
PLIST_FILES=	bin/xtermcontrol man/man1/xtermcontrol.1.gz
20
19
(-)x11-fonts/fntsample/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
RUN_DEPENDS=	pdfoutline:textproc/pdfoutline
19
RUN_DEPENDS=	pdfoutline:textproc/pdfoutline
20
20
21
CONFIGURE_ARGS=	--disable-silent-rules \
21
CONFIGURE_ARGS=	--with-unicode-blocks=${WRKSRC}/Blocks.txt
22
		--with-unicode-blocks=${WRKSRC}/Blocks.txt
23
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
24
USE_GNOME=	pango
23
USE_GNOME=	pango
25
USE_PERL5=	run
24
USE_PERL5=	run
(-)x11-wm/lxsession/Makefile (-1 lines)
Lines 21-27 Link Here
21
USES=		gmake iconv localbase pkgconfig
21
USES=		gmake iconv localbase pkgconfig
22
USE_GNOME=	gtk20 intlhack libxslt
22
USE_GNOME=	gtk20 intlhack libxslt
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--disable-silent-rules
25
USE_LDCONFIG=	yes
24
USE_LDCONFIG=	yes
26
25
27
OPTIONS_DEFINE=	NLS
26
OPTIONS_DEFINE=	NLS

Return to bug 212075