blob: 4c6ec3117e35edd88f0d299bfbf560ba7ab92538 (
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-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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 x86"
else
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}.git"
fi
LICENSE="BSD"
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.txt )
src_configure() {
local mycmakeargs=(
-DBUILD_WITH_QT4=OFF
-DQTKEYCHAIN_STATIC=OFF
-DBUILD_TEST_APPLICATION=OFF
-DBUILD_TRANSLATIONS=ON
-DLIBSECRET_SUPPORT=$(usex gnome-keyring)
)
cmake_src_configure
}
|