On Sun Nov 14, 2021 at 04:21:55PM +0100, Christian Weisgerber wrote: > It appears the presence of Wayland causes some bulk build issues. > Most likely, Wayland is picked up during the configure step and > used during the build, but since there is no proper *_DEPENDS, it > is junked in the background. So the choice would be between disabling > Wayland support or adding a proper dependency. >
Disable wayland; Not looking for it. Index: Makefile =================================================================== RCS file: /cvs/ports/x11/remmina/Makefile,v retrieving revision 1.51 diff -u -p -u -p -r1.51 Makefile --- Makefile 3 Sep 2021 11:51:27 -0000 1.51 +++ Makefile 14 Nov 2021 15:54:38 -0000 @@ -5,7 +5,7 @@ COMMENT= GTK+ remote desktop client V= 1.4.13 DISTNAME= remmina-${V} WRKDIST= ${WRKDIR}/Remmina-v${V}-bd1be9d309b420234961b6dd5d2c6364f4a08e49 -REVISION= 0 +REVISION= 1 CATEGORIES= x11 net Index: patches/patch-CMakeLists_txt =================================================================== RCS file: /cvs/ports/x11/remmina/patches/patch-CMakeLists_txt,v retrieving revision 1.8 diff -u -p -u -p -r1.8 patch-CMakeLists_txt --- patches/patch-CMakeLists_txt 30 Mar 2021 20:30:51 -0000 1.8 +++ patches/patch-CMakeLists_txt 14 Nov 2021 15:54:38 -0000 @@ -1,5 +1,7 @@ $OpenBSD: patch-CMakeLists_txt,v 1.8 2021/03/30 20:30:51 sthen Exp $ +- Disable wayland + Index: CMakeLists.txt --- CMakeLists.txt.orig +++ CMakeLists.txt @@ -23,7 +25,7 @@ Index: CMakeLists.txt -if(NOT wayland-client_FOUND) - message(FATAL_ERROR "Wayland library not found") -endif(NOT wayland-client_FOUND) -+pkg_check_modules(wayland-client wayland-client) ++#pkg_check_modules(wayland-client wayland-client) include_directories(${wayland-client_INCLUDE_DIRS})