svn commit: r385052 - head/audio/mumble

Mark Felder feld at FreeBSD.org
Thu Apr 30 15:34:29 UTC 2015


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
 


More information about the svn-ports-all mailing list