blob: c38e507a07119e2ae66760e8eb1860973feef2da (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
HOMEPAGE="https://github.com/frankosterfeld/qtkeychain"
DESCRIPTION="Qt API for storing passwords securely"
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/frankosterfeld/qtkeychain/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
else
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}.git"
fi
LICENSE="BSD-2"
SLOT="0/1"
IUSE="gnome-keyring"
BDEPEND="
dev-qt/linguist-tools:5
"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
gnome-keyring? (
app-crypt/libsecret
dev-libs/glib:2
)
"
RDEPEND="${DEPEND}"
DOCS=( ChangeLog ReadMe.md )
src_configure() {
local mycmakeargs=(
-DBUILD_WITH_QT6=OFF
-DQTKEYCHAIN_STATIC=OFF
-DBUILD_TEST_APPLICATION=OFF
-DBUILD_TRANSLATIONS=ON
-DLIBSECRET_SUPPORT=$(usex gnome-keyring)
)
cmake_src_configure
}
|