From owner-svn-ports-head@freebsd.org Tue Mar 16 16:35:12 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D3B035B43DF; Tue, 16 Mar 2021 16:35:12 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F0Jmc5d3jz4mJD; Tue, 16 Mar 2021 16:35:12 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B3F3226F8E; Tue, 16 Mar 2021 16:35:12 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12GGZCMK092744; Tue, 16 Mar 2021 16:35:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12GGZCVq092743; Tue, 16 Mar 2021 16:35:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202103161635.12GGZCVq092743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 16 Mar 2021 16:35:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568579 - head/x11-toolkits/gtk30 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/x11-toolkits/gtk30 X-SVN-Commit-Revision: 568579 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Mar 2021 16:35:12 -0000 Author: jbeich Date: Tue Mar 16 16:35:12 2021 New Revision: 568579 URL: https://svnweb.freebsd.org/changeset/ports/568579 Log: x11-toolkits/gtk30: depend on gsettings-desktop-schemas Gtk on Wayland uses gsettings to get cursor theme but without schemes installed it falls back to "default" theme which doesn't exist. $ gsettings get org.gnome.desktop.interface cursor-theme No such schema “org.gnome.desktop.interface” $ MOZ_ENABLE_WAYLAND=1 firefox [...] Gdk-Message: 15:15:20.123: Unable to load hand2 from the cursor theme Gdk-Message: 15:15:20.300: Unable to load hand2 from the cursor theme Gdk-Message: 15:15:20.536: Unable to load hand2 from the cursor theme Gdk-Message: 15:15:52.250: Unable to load hand2 from the cursor theme Gdk-Message: 15:15:52.350: Unable to load hand2 from the cursor theme Gdk-Message: 15:15:52.834: Unable to load hand2 from the cursor theme Gdk-Message: 15:15:52.933: Unable to load hand2 from the cursor theme $ emacs -Q # --with-pgtk Gdk-Message: 15:16:34.736: Unable to load sb_v_double_arrow from the cursor theme Gdk-Message: 15:16:34.736: Unable to load sb_h_double_arrow from the cursor theme Gdk-Message: 15:16:35.272: Unable to load hand2 from the cursor theme Gdk-Message: 15:16:35.272: Unable to load sb_h_double_arrow from the cursor theme Gdk-Message: 15:16:35.272: Unable to load sb_v_double_arrow from the cursor theme $ truss emacs -Q 2>&1 | fgrep /cursor [...] open("/home/foo/.icons/default/cursors/",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) ERR#2 'No such file or directory' open("/usr/share/icons/default/cursors/",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) ERR#2 'No such file or directory' open("/usr/share/pixmaps/default/cursors/",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) ERR#2 'No such file or directory' open("/home/foo/.cursors/default/cursors/",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) ERR#2 'No such file or directory' open("/usr/share/cursors/xorg-x11/default/cursors/",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) ERR#2 'No such file or directory' open("/usr/local/share/icons/default/cursors/",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) ERR#2 'No such file or directory' [...] PR: 253742 Submitted by: Evgeniy Khramtsov <2khramtsov@gmail.com> Modified: head/x11-toolkits/gtk30/Makefile (contents, props changed) Modified: head/x11-toolkits/gtk30/Makefile ============================================================================== --- head/x11-toolkits/gtk30/Makefile Tue Mar 16 16:34:54 2021 (r568578) +++ head/x11-toolkits/gtk30/Makefile Tue Mar 16 16:35:12 2021 (r568579) @@ -5,6 +5,7 @@ PORTNAME= gtk PORTVERSION= 3.24.24 +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= GNOME/sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMESUFFIX= 3 @@ -81,7 +82,8 @@ WAYLAND_CONFIGURE_ENABLE= wayland-backend WAYLAND_BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols WAYLAND_LIB_DEPENDS= libwayland-egl.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon -WAYLAND_RUN_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols +WAYLAND_RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \ + wayland-protocols>=0:graphics/wayland-protocols WAYLAND_USES= gl WAYLAND_USE= GL=egl