summaryrefslogtreecommitdiff
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:16:11 +0100
commit923462e4ef590c5b183d9da578a540d8f826345f (patch)
tree22b59a0762a394574a928fc023e144c1dd65c5fc /kde-frameworks/knotifications
parentapp-office/grisbi: add 3.0.1 (diff)
downloadgentoo-923462e4ef590c5b183d9da578a540d8f826345f.tar.gz
gentoo-923462e4ef590c5b183d9da578a540d8f826345f.tar.bz2
gentoo-923462e4ef590c5b183d9da578a540d8f826345f.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')
-rw-r--r--kde-frameworks/knotifications/knotifications-5.246.0.ebuild11
1 files changed, 1 insertions, 10 deletions
diff --git a/kde-frameworks/knotifications/knotifications-5.246.0.ebuild b/kde-frameworks/knotifications/knotifications-5.246.0.ebuild
index fb880b061542..c869f2c19325 100644
--- a/kde-frameworks/knotifications/knotifications-5.246.0.ebuild
+++ b/kde-frameworks/knotifications/knotifications-5.246.0.ebuild
@@ -12,21 +12,12 @@ DESCRIPTION="Framework for notifying the user of an event"
LICENSE="LGPL-2.1+"
KEYWORDS="~amd64"
-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
-}