svn commit: r519077 - head/audio/musescore

Adriaan de Groot adridg at FreeBSD.org
Thu Dec 5 11:54:01 UTC 2019


Author: adridg
Date: Thu Dec  5 11:54:00 2019
New Revision: 519077
URL: https://svnweb.freebsd.org/changeset/ports/519077

Log:
  Enable WEBENGINE in audio/musescore on ppc64 in FreeBSD 13.0
  
  Following the options pattern from pkubaj@, there's an upcoming
  ABI change which will allow musescore to build. See r519036.

Modified:
  head/audio/musescore/Makefile

Modified: head/audio/musescore/Makefile
==============================================================================
--- head/audio/musescore/Makefile	Thu Dec  5 11:42:00 2019	(r519076)
+++ head/audio/musescore/Makefile	Thu Dec  5 11:54:00 2019	(r519077)
@@ -41,12 +41,14 @@ CMAKE_ARGS+=	-DUSE_SYSTEM_FREETYPE="ON" \
 		-DBUILD_PCH=OFF \
 		-DDOWNLOAD_SOUNDFONT=OFF
 
-# WebEngine is only available on i386/amd64; defaults to ON there.
+# WebEngine is only available on i386/amd64, amd ppc64 starting FreeBSD 13.0.
 # If enabled on arches that don't have WebEngine, the build breaks.
 OPTIONS_DEFINE=		ALSA JACK PORTAUDIO PULSEAUDIO WEBENGINE
 OPTIONS_DEFAULT=	PORTAUDIO
 OPTIONS_DEFAULT_amd64=	WEBENGINE
 OPTIONS_DEFAULT_i386=	WEBENGINE
+OPTIONS_DEFAULT_powerpc64=     ${OPTIONS_DEFAULT_powerpc64_${OSREL:R}}
+OPTIONS_DEFAULT_powerpc64_13=  WEBENGINE
 
 WEBENGINE_DESC=		Use WebEngine in the welcome panel
 


More information about the svn-ports-all mailing list