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 8A02615ACFB for ; Sat, 22 Apr 2023 12:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6730E0920; Sat, 22 Apr 2023 12:15:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9B538E0920 for ; Sat, 22 Apr 2023 12:15:14 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E448334129D for ; Sat, 22 Apr 2023 12:15:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E1447DE for ; Sat, 22 Apr 2023 12:15:12 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1682165702.5af7e43d0856706bc3448b4e80711c31ebc9931e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/yakuake/files/, kde-apps/yakuake/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/yakuake/files/yakuake-23.04.0-missing-ifdef.patch kde-apps/yakuake/yakuake-23.04.0.ebuild X-VCS-Directories: kde-apps/yakuake/files/ kde-apps/yakuake/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5af7e43d0856706bc3448b4e80711c31ebc9931e X-VCS-Branch: master Date: Sat, 22 Apr 2023 12:15:12 +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: 0d38724f-b233-4064-9b63-f1a3a6158488 X-Archives-Hash: 3e556904ca45f7523c63378962ba70c7 commit: 5af7e43d0856706bc3448b4e80711c31ebc9931e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 22 12:12:49 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Apr 22 12:15:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af7e43d kde-apps/yakuake: Fix build with USE=-absolute-position Closes: https://bugs.gentoo.org/904742 Signed-off-by: Andreas Sturmlechner gentoo.org> .../files/yakuake-23.04.0-missing-ifdef.patch | 32 ++++++++++++++++++++++ kde-apps/yakuake/yakuake-23.04.0.ebuild | 2 ++ 2 files changed, 34 insertions(+) diff --git a/kde-apps/yakuake/files/yakuake-23.04.0-missing-ifdef.patch b/kde-apps/yakuake/files/yakuake-23.04.0-missing-ifdef.patch new file mode 100644 index 000000000000..aae30407060c --- /dev/null +++ b/kde-apps/yakuake/files/yakuake-23.04.0-missing-ifdef.patch @@ -0,0 +1,32 @@ +From 0901b2f27fdfb9092f7d56da2a9129fa4b5e1183 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sat, 22 Apr 2023 14:10:34 +0200 +Subject: [PATCH] Add missing HAVE_KWAYLAND ifdef + +Follow-up to 91a90aa6f30e95d2927d9d089eb5c4f429677080 + +Signed-off-by: Andreas Sturmlechner +--- + app/mainwindow.cpp | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/app/mainwindow.cpp b/app/mainwindow.cpp +index 9f6dca0..6f21a21 100644 +--- a/app/mainwindow.cpp ++++ b/app/mainwindow.cpp +@@ -933,10 +933,12 @@ void MainWindow::applyWindowProperties() + KWindowSystem::setState(winId(), NET::KeepAbove | NET::SkipTaskbar | NET::SkipPager); + } + ++#if HAVE_KWAYLAND + if (m_isWayland && m_plasmaShellSurface) { + m_plasmaShellSurface->setSkipTaskbar(true); + m_plasmaShellSurface->setSkipSwitcher(true); + } ++#endif + + KX11Extras::setOnAllDesktops(winId(), Settings::showOnAllDesktops()); + KWindowEffects::enableBlurBehind(windowHandle(), m_sessionStack->wantsBlur()); +-- +2.40.0 + diff --git a/kde-apps/yakuake/yakuake-23.04.0.ebuild b/kde-apps/yakuake/yakuake-23.04.0.ebuild index 6ae55f80d4b7..ebae5522753a 100644 --- a/kde-apps/yakuake/yakuake-23.04.0.ebuild +++ b/kde-apps/yakuake/yakuake-23.04.0.ebuild @@ -47,6 +47,8 @@ DEPEND=" " RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${P}-missing-ifdef.patch" ) # bug 904742 + src_configure() { local mycmakeargs=( $(cmake_use_find_package absolute-position KF5Wayland)