mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-15 22:50:54 +00:00
29 lines
657 B
Bash
29 lines
657 B
Bash
# 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="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
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
|
|
}
|