From a2338c5465db4f36765fbe29c5bfc8de31ceaae1 Mon Sep 17 00:00:00 2001 From: danoloan10 Date: Mon, 25 Dec 2023 13:48:18 +0100 Subject: [PATCH] wt: add build dependencies Wt's build will silently ignore build options if their respective dependencies are not found, but this does not mean that they should not be used. In fact, the lms package needs wt be built with OpenSSL. Fixes: https://github.com/epoupon/lms/issues/384 --- srcpkgs/wt/template | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/srcpkgs/wt/template b/srcpkgs/wt/template index d825acae888..fb154d61c6a 100644 --- a/srcpkgs/wt/template +++ b/srcpkgs/wt/template @@ -1,9 +1,13 @@ # Template file for 'wt' pkgname=wt version=4.10.0 -revision=2 +revision=3 build_style=cmake -makedepends="boost-devel" +build_helper=qmake +configure_args="-DBUILD_EXAMPLES=OFF -DENABLE_QT4=OFF" +hostmakedepends="qt5-host-tools qt5-qmake" +makedepends="boost-devel openssl-devel Haru-devel pango-devel sqlite-devel postgresql-libs-devel + libmysqlclient-devel unixodbc-devel qt5-devel libfreeglut-devel libunwind-devel" short_desc="Wt, C++ Web Toolkit" maintainer="danoloan10 " license="GPL-2.0-or-later"