From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D134158020 for ; Sun, 23 Oct 2022 16:17:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25C94E0901; Sun, 23 Oct 2022 16:17:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CD787E0901 for ; Sun, 23 Oct 2022 16:17:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD16B34117C for ; Sun, 23 Oct 2022 16:17:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E656E629 for ; Sun, 23 Oct 2022 16:17:28 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1666541202.ded2a49da27e723258319ee28098a519273d5a88.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/QGnomePlatform/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/QGnomePlatform/QGnomePlatform-0.9.0.ebuild X-VCS-Directories: x11-themes/QGnomePlatform/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: ded2a49da27e723258319ee28098a519273d5a88 X-VCS-Branch: master Date: Sun, 23 Oct 2022 16:17:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: be399600-d51f-4dec-bd0f-d2b62444030b X-Archives-Hash: ca4c6794ea546bea96b5974987ab3f4a commit: ded2a49da27e723258319ee28098a519273d5a88 Author: Daniel Brandt spahan ch> AuthorDate: Mon Oct 3 06:21:53 2022 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 23 16:06:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ded2a49d x11-themes/QGnomePlatform: make wayland optional Signed-off-by: Daniel Brandt spahan.ch> Closes: https://github.com/gentoo/gentoo/pull/27591 Signed-off-by: Pacho Ramos gentoo.org> x11-themes/QGnomePlatform/QGnomePlatform-0.9.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/x11-themes/QGnomePlatform/QGnomePlatform-0.9.0.ebuild b/x11-themes/QGnomePlatform/QGnomePlatform-0.9.0.ebuild index 935a1bad9776..956410044093 100644 --- a/x11-themes/QGnomePlatform/QGnomePlatform-0.9.0.ebuild +++ b/x11-themes/QGnomePlatform/QGnomePlatform-0.9.0.ebuild @@ -11,12 +11,12 @@ SRC_URI="https://github.com/FedoraQt/QGnomePlatform/archive/${PV}.tar.gz -> ${P} KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" LICENSE="LGPL-2.1" SLOT="0" -IUSE="" +IUSE="wayland" RDEPEND=" dev-qt/qtdbus:5= >=dev-qt/qtwidgets-5.15.2:5= - dev-qt/qtwayland:5= + wayland? ( dev-qt/qtwayland:5= ) dev-qt/qtx11extras:5= gnome-base/gsettings-desktop-schemas sys-apps/xdg-desktop-portal @@ -29,6 +29,7 @@ BDEPEND="${RDEPEND}" src_configure() { local mycmakeargs=( -DUSE_QT6=false + -DDISABLE_DECORATION_SUPPORT="$(usex wayland false true)" ) cmake_src_configure }