mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
graphics/photoflow: fix build on GCC architectures
Clang doesn't work on GCC architectures. MFH: 2020Q4 (fix build blanket)
This commit is contained in:
parent
292e41777e
commit
fec06bf8fe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=553566
1 changed files with 9 additions and 3 deletions
|
@ -25,7 +25,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 \
|
||||||
libpugixml.so:textproc/pugixml \
|
libpugixml.so:textproc/pugixml \
|
||||||
libvips.so:graphics/vips
|
libvips.so:graphics/vips
|
||||||
|
|
||||||
USES= cmake desktop-file-utils gettext gnome jpeg pkgconfig # compiler:c++11-lang
|
USES= cmake compiler desktop-file-utils gettext gnome jpeg pkgconfig
|
||||||
USE_GITHUB= yes
|
USE_GITHUB= yes
|
||||||
GH_ACCOUNT= aferrero2707
|
GH_ACCOUNT= aferrero2707
|
||||||
GH_PROJECT= PhotoFlow
|
GH_PROJECT= PhotoFlow
|
||||||
|
@ -52,11 +52,17 @@ OCIO_LIB_DEPENDS= libOpenColorIO.so:graphics/opencolorio
|
||||||
OCIO_VARS= GH_TUPLE+=sobotka:filmic-blender:1.1.1:fb/../.build/data/filmic-blender \
|
OCIO_VARS= GH_TUPLE+=sobotka:filmic-blender:1.1.1:fb/../.build/data/filmic-blender \
|
||||||
GH_TUPLE+=imageworks:OpenColorIO-Configs:0bb079c08be410030669cbf5f19ff869b88af953:c/../.build/data/ocio-configs
|
GH_TUPLE+=imageworks:OpenColorIO-Configs:0bb079c08be410030669cbf5f19ff869b88af953:c/../.build/data/ocio-configs
|
||||||
|
|
||||||
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
||||||
|
USE_GCC= yes
|
||||||
|
.else
|
||||||
# clang-10 fails to compile photoflow because it bundles an old version of GMIC that clang-10 doesn't like: https://github.com/aferrero2707/PhotoFlow/issues/220
|
# clang-10 fails to compile photoflow because it bundles an old version of GMIC that clang-10 doesn't like: https://github.com/aferrero2707/PhotoFlow/issues/220
|
||||||
LLVM_VERSION= 90
|
LLVM_VERSION= 90
|
||||||
BUILD_DEPENDS= clang${LLVM_VERSION}:devel/llvm${LLVM_VERSION}
|
BUILD_DEPENDS+= clang${LLVM_VERSION}:devel/llvm${LLVM_VERSION}
|
||||||
CC= clang${LLVM_VERSION}
|
CC= clang${LLVM_VERSION}
|
||||||
CXX= clang++${LLVM_VERSION}
|
CXX= clang++${LLVM_VERSION}
|
||||||
CPP= clang-cpp${LLVM_VERSION}
|
CPP= clang-cpp${LLVM_VERSION}
|
||||||
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.post.mk>
|
||||||
|
|
Loading…
Add table
Reference in a new issue