Date: Thu, 30 Apr 2015 15:34:29 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385052 - head/audio/mumble Message-ID: <201504301534.t3UFYTD2088446@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Thu Apr 30 15:34:28 2015 New Revision: 385052 URL: https://svnweb.freebsd.org/changeset/ports/385052 Log: "But be aware that some variables will not work as expected after the inclusion of bsd.port.pre.mk, typically some USE_* flags." relocate to ensure port options don't end up broken pointyhat -> me Modified: head/audio/mumble/Makefile Modified: head/audio/mumble/Makefile ============================================================================== --- head/audio/mumble/Makefile Thu Apr 30 15:17:20 2015 (r385051) +++ head/audio/mumble/Makefile Thu Apr 30 15:34:28 2015 (r385052) @@ -34,13 +34,6 @@ MAKE_JOBS_UNSAFE=yes CONFIG= no-server no-alsa no-speechd no-bundled-speex no-bundled-opus no-update \ bundled-celt no-g15 no-portaudio no-pulseaudio no-xevie no-embed-qt-translations -.include <bsd.port.pre.mk> - -# PCH is broken on GCC -.if ${COMPILER_TYPE} == gcc -CONFIG+= no-pch -.endif - QMAKE_ARGS= "CONFIG+=${CONFIG}" OPTIONS_DEFINE= DBUS BONJOUR @@ -61,6 +54,13 @@ CONFIG+= no-bonjour LIB_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/mDNSResponder .endif +.include <bsd.port.pre.mk> + +# PCH is broken on GCC +.if ${COMPILER_TYPE} == gcc +CONFIG+= no-pch +.endif + post-patch: @${REINPLACE_CMD} -e 's|-ldl||' ${WRKSRC}/overlay_gl/overlay_gl.pro
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504301534.t3UFYTD2088446>