Date: Thu, 5 Dec 2019 11:54:01 +0000 (UTC) From: Adriaan de Groot <adridg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519077 - head/audio/musescore Message-ID: <201912051154.xB5Bs1gf026555@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912051154.xB5Bs1gf026555>