[Bug 268317] multimedia/openshot: update to 3.0.0

From: <bugzilla-noreply_at_freebsd.org>
Date: Mon, 12 Dec 2022 12:26:29 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268317

--- Comment #7 from VVD <vvd@unislabs.com> ---
(In reply to Tatsuki Makino from comment #6)
Is plus sign work here?
LICENSE_FILE_LGPL3+ =   ${WRKSRC}/LICENSES/LGPL-3.0-or-later.txt


Old version have different values for USES: "compiler:gcc-c++11-lib" and
"compiler:c++11-lang".
New version have same value "compiler:c++14-lang" for both.
So we can remove else in this if:
===================================
.if !exists(/usr/include/omp.h)
USES+=          compiler:c++14-lang
USE_GCC=        yes
.else
USES+=          compiler:c++14-lang
.endif
-----------------------------------
USES+=          compiler:c++14-lang
.if !exists(/usr/include/omp.h)
USE_GCC=        yes
.endif
===================================

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