summaryrefslogtreecommitdiff
path: root/kde-frameworks/knotifications/knotifications-9999.ebuild
diff options
context:
space:
mode:
authorAlfred Wingate <parona@protonmail.com>2023-12-18 08:33:29 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-12-18 12:11:45 +0100
commit43ecb8e0b46be04c4d2a0274c691ca529c0f6f81 (patch)
tree0620935e523eac688001359e7b843fbe23f6d3c3 /kde-frameworks/knotifications/knotifications-9999.ebuild
parentf5f4fa917d09b5035ce5c5a77b7455282a2cfdd1 (diff)
downloadkde-43ecb8e0b46be04c4d2a0274c691ca529c0f6f81.tar.gz
kde-43ecb8e0b46be04c4d2a0274c691ca529c0f6f81.tar.bz2
kde-43ecb8e0b46be04c4d2a0274c691ca529c0f6f81.zip
kde-frameworks/knotifications: remove qml use flag
* knotifications now has include(ECMQMLModule) which tries to find Qml unconditionally. Leading to a suprisingly unhelpful error when it fails to find it due to -DCMAKE_DISABLE_FIND_PACKAGE_Qt6Qml=ON. Signed-off-by: Alfred Wingate <parona@protonmail.com> Closes: https://github.com/gentoo/kde/pull/957 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/knotifications/knotifications-9999.ebuild')
-rw-r--r--kde-frameworks/knotifications/knotifications-9999.ebuild11
1 files changed, 1 insertions, 10 deletions
diff --git a/kde-frameworks/knotifications/knotifications-9999.ebuild b/kde-frameworks/knotifications/knotifications-9999.ebuild
index 5d26df49759..f23238042de 100644
--- a/kde-frameworks/knotifications/knotifications-9999.ebuild
+++ b/kde-frameworks/knotifications/knotifications-9999.ebuild
@@ -12,21 +12,12 @@ DESCRIPTION="Framework for notifying the user of an event"
LICENSE="LGPL-2.1+"
KEYWORDS=""
-IUSE="qml"
RDEPEND="
>=dev-qt/qtbase-${QTMIN}:6[dbus,gui]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
=kde-frameworks/kconfig-${PVCUT}*:6
media-libs/libcanberra
- qml? ( >=dev-qt/qtdeclarative-${QTMIN}:6 )
"
DEPEND="${RDEPEND}"
BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
-
-src_configure() {
- local mycmakeargs=(
- $(cmake_use_find_package qml Qt6Qml)
- )
-
- ecm_src_configure
-}