From 0f1e3c69a6b71220a3fb736912423d8bec6f8d76 Mon Sep 17 00:00:00 2001 From: deathchimera <77942602+deathchimera@users.noreply.github.com> Date: Tue, 19 Dec 2023 14:39:26 -0600 Subject: [PATCH] opentoonz: update to 1.7.1. - Added -DWITH_TRANSLATION=OFF build argument to prevent breaks with Qt 5.15.9 and above. - May need vtk-devel in the future if opencv breaks builds looking for it. - See here: https://github.com/opentoonz/opentoonz/issues/4840 --- srcpkgs/opentoonz/template | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/srcpkgs/opentoonz/template b/srcpkgs/opentoonz/template index ee9f7603f55fd..83040ba3d5711 100644 --- a/srcpkgs/opentoonz/template +++ b/srcpkgs/opentoonz/template @@ -1,7 +1,7 @@ # Template file for 'opentoonz' pkgname=opentoonz -version=1.6.0 -revision=2 +version=1.7.1 +revision=1 build_wrksrc="toonz/sources" build_style=cmake make_cmd=make @@ -15,7 +15,7 @@ maintainer="Orphaned " license="BSD-3-Clause" homepage="https://opentoonz.github.io/e/" distfiles="https://github.com/opentoonz/opentoonz/archive/v${version}.tar.gz" -checksum=9a6c28cb3933756dbebb45e849bdafc9e6d93d0328c4fd4d7bc8ec3ae481f684 +checksum=d0daf60d06510efe15d0db3f9eed0162499ed58061504dca27892c2b9ea5f22d export CMAKE_GENERATOR="Unix Makefiles" @@ -23,8 +23,11 @@ pre_configure() { # Upstream uses their own modified version of tiff if [ "$CROSS_BUILD" ]; then configure_args="-DTIFF_LIBRARY=${wrksrc}/thirdparty/tiff-4.0.3/libtiff/.libs/libtiff.a - -DTIFF_INCLUDE_DIR=${wrksrc}/thirdparty/tiff-4.0.3/libtiff" + -DTIFF_INCLUDE_DIR=${wrksrc}/thirdparty/tiff-4.0.3/libtiff + -DWITH_TRANSLATION=OFF" _args="--host=${XBPS_TRIPLET}" + else + configure_args="-DWITH_TRANSLATION=OFF" fi cd ${wrksrc}/thirdparty/tiff-4.0.3