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 642E8158095 for ; Sat, 24 Sep 2022 08:50:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F0A9E0AA3; Sat, 24 Sep 2022 08:50:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68FF1E0AA0 for ; Sat, 24 Sep 2022 08:50:09 +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 37FDF340FDD for ; Sat, 24 Sep 2022 08:50:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 896095E7 for ; Sat, 24 Sep 2022 08:50:06 +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: <1664009295.418879765756a0882e61b53498271674a96e9b9a.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/knotifications/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/knotifications/knotifications-9999.ebuild X-VCS-Directories: kde-frameworks/knotifications/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 418879765756a0882e61b53498271674a96e9b9a X-VCS-Branch: master Date: Sat, 24 Sep 2022 08:50:06 +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: 5e8b6958-3874-469f-ae73-ba687bf47162 X-Archives-Hash: f3d969233b8a52ee12ae67e606d0432b commit: 418879765756a0882e61b53498271674a96e9b9a Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 2 08:28:12 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 24 08:48:15 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=41887976 kde-frameworks/knotifications: Fix build with USE -X Upstream commit 0450e434116acdc640b0c8256228feec8b363e47 Bug: https://bugs.gentoo.org/813450 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/knotifications/knotifications-9999.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/kde-frameworks/knotifications/knotifications-9999.ebuild b/kde-frameworks/knotifications/knotifications-9999.ebuild index 8f5e502a06..168e524bd4 100644 --- a/kde-frameworks/knotifications/knotifications-9999.ebuild +++ b/kde-frameworks/knotifications/knotifications-9999.ebuild @@ -9,6 +9,7 @@ QTMIN=5.15.5 inherit ecm frameworks.kde.org DESCRIPTION="Framework for notifying the user of an event" + LICENSE="LGPL-2.1+" KEYWORDS="" IUSE="dbus nls phonon qml speech X" @@ -19,7 +20,7 @@ RDEPEND=" >=dev-qt/qtwidgets-${QTMIN}:5 =kde-frameworks/kconfig-${PVCUT}*:5 =kde-frameworks/kcoreaddons-${PVCUT}*:5 - =kde-frameworks/kwindowsystem-${PVCUT}*:5[X=] + =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?] dbus? ( dev-libs/libdbusmenu-qt[qt5(+)] ) !phonon? ( media-libs/libcanberra ) phonon? ( >=media-libs/phonon-4.11.0 ) @@ -34,9 +35,7 @@ RDEPEND=" DEPEND="${RDEPEND} X? ( x11-base/xorg-proto ) " -BDEPEND=" - nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) -" +BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )" src_configure() { local mycmakeargs=( @@ -44,7 +43,7 @@ src_configure() { $(cmake_use_find_package !phonon Canberra) $(cmake_use_find_package qml Qt5Qml) $(cmake_use_find_package speech Qt5TextToSpeech) - $(cmake_use_find_package X X11) + -DWITHOUT_X11=$(usex !X) ) ecm_src_configure