blob: 875a0ecbd028376467e12e18d3557e8a6e07f813 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
QTMIN=6.8.1
inherit ecm frameworks.kde.org
DESCRIPTION="Interface to KWallet Framework providing desktop-wide storage for passwords"
LICENSE="LGPL-2+"
KEYWORDS=""
IUSE="minimal"
DEPEND="
>=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets]
=kde-frameworks/kconfig-${KDE_CATV}*:6
"
RDEPEND="${DEPEND}"
PDEPEND="!minimal? ( =kde-frameworks/kwallet-runtime-${KDE_CATV}* )"
src_configure() {
local mycmakeargs=(
-DBUILD_KSECRETD=OFF
-DBUILD_KWALLETD=OFF
-DBUILD_KWALLET_QUERY=OFF
)
ecm_src_configure
}
|