From f1da786437de113a982a8c7cf8b89d89f723dccc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 5 Dec 2019 11:54:00 +0000 Subject: [PATCH] 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. --- audio/musescore/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/audio/musescore/Makefile b/audio/musescore/Makefile index c62a49bcaf91..13a19ee01c51 100644 --- a/audio/musescore/Makefile +++ b/audio/musescore/Makefile @@ -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