commit: 98255f1e305aad409898ebf57a612447ca7e98a1 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Fri Oct 24 16:35:57 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Fri Oct 24 16:39:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98255f1e
net-p2p/ktorrent: Fix unused CMake variable Actual CMake option hidden behind automagic ... Closes: https://bugs.gentoo.org/965063 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> net-p2p/ktorrent/ktorrent-25.08.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-p2p/ktorrent/ktorrent-25.08.2.ebuild b/net-p2p/ktorrent/ktorrent-25.08.2.ebuild index 566d122b4b29..b843cd26e717 100644 --- a/net-p2p/ktorrent/ktorrent-25.08.2.ebuild +++ b/net-p2p/ktorrent/ktorrent-25.08.2.ebuild @@ -75,7 +75,8 @@ src_configure() { -DENABLE_IPFILTER_PLUGIN=$(usex ipfilter) -DENABLE_LOGVIEWER_PLUGIN=$(usex logviewer) -DENABLE_MAGNETGENERATOR_PLUGIN=$(usex magnetgenerator) - -DENABLE_MEDIAPLAYER_PLUGIN=$(usex phonon) + $(cmake_use_find_package phonon Taglib) + $(cmake_use_find_package phonon Phonon4Qt6) $(cmake_use_find_package rss KF6Syndication) -DENABLE_SCANFOLDER_PLUGIN=$(usex scanfolder) -DENABLE_SHUTDOWN_PLUGIN=$(usex shutdown)
