[Bug 277722] audio/supercollider: Update to 3.13.0

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 12 May 2024 09:47:18 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277722

Robert Clausecker <fuz@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|ports-bugs@FreeBSD.org      |fuz@FreeBSD.org
                 CC|                            |fuz@FreeBSD.org
             Status|New                         |Open

--- Comment #1 from Robert Clausecker <fuz@FreeBSD.org> ---
This patch fails portlint:

FATAL: Makefile: [56]: USE_QT is set after including bsd.port.pre.mk.

You cannot set USE_XXX options after bsd.port.pre.mk is included as that
include already evaluates all USES.  I know you didn't change this and it was
already wrong before, but it should be changed before we proceed:

As an alternative, try something like this (untested):

CMAKE_ARGS_amd64= -DSSE:BOOL=FALSE -DSSE2:BOOL=FALSE
-DSC_USE_QTWEBENGINE:BOOL=FALSE
CMAKE_ARGS_i386= ${CMAKE_ARGS_amd64}
CMAKE_ARGS+= ${CMAKE_ARGS_${ARCH}}
USE_QT+= ${ARCH:Namd64:Ni386:C/.*/webengine/}

If you like, I can apply a fix like this on commit.

-- 
You are receiving this mail because:
You are the assignee for the bug.