diff options
author | Jean-Sébastien Pédron <dumbbell@FreeBSD.org> | 2023-10-05 08:39:09 +0000 |
---|---|---|
committer | Jean-Sébastien Pédron <dumbbell@FreeBSD.org> | 2023-10-05 08:48:38 +0000 |
commit | 1112795aca0f94f1179d110ee46ca069fa784b22 (patch) | |
tree | 97336c4ad64a41ac4f45483ac87490630ca0eb96 | |
parent | 594eebaf9671815cd42b96a19b61b35992a234c4 (diff) | |
download | ports-1112795aca0f94f1179d110ee46ca069fa784b22.tar.gz ports-1112795aca0f94f1179d110ee46ca069fa784b22.zip |
graphics/darktable: Enable ISOBMFF support (CR3, AVIF, HEIF)
This relies on the BMFF support in graphics/exiv2 which is enabled
already.
This was requested from the following forum thread:
https://forums.freebsd.org/threads/cr3-not-opening-in-darktable-with-libraw-and-exiv2.87817/
-rw-r--r-- | graphics/darktable/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/darktable/Makefile b/graphics/darktable/Makefile index 1ee7fa64627a..a449866128fa 100644 --- a/graphics/darktable/Makefile +++ b/graphics/darktable/Makefile @@ -1,6 +1,6 @@ PORTNAME= darktable PORTVERSION= 4.4.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= https://github.com/darktable-org/${PORTNAME}/releases/download/release-${PORTVERSION:C/\.rc/rc/}/ @@ -56,8 +56,8 @@ SHEBANG_FILES= tools/*.sh CMAKE_ARGS+= -DBINARY_PACKAGE_BUILD=1 -DUSE_PORTMIDI:BOOL=OFF CMAKE_BOOL+= BUILD_CMSTEST USE_AVIF USE_CAMERA_SUPPORT USE_HEIF \ - USE_KWALLET USE_LUA USE_MAP USE_OPENEXR USE_OPENJPEG \ - USE_WEBP RAWSPEED_ENABLE_LTO + USE_ISOBMFF USE_KWALLET USE_LUA USE_MAP USE_OPENEXR \ + USE_OPENJPEG USE_WEBP RAWSPEED_ENABLE_LTO CFLAGS+= -fopenmp -I${LOCALBASE}/include/Imath LDFLAGS+= -L${LOCALBASE}/lib |