blob: f9feb86c1c08077357b015aa1912f53f33b52770 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils git-r3
DESCRIPTION="Qt API for storing passwords securely"
HOMEPAGE="https://github.com/frankosterfeld/qtkeychain"
EGIT_REPO_URI="https://github.com/frankosterfeld/${PN}"
LICENSE="BSD"
SLOT="0/1"
KEYWORDS=""
IUSE="gnome-keyring"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
gnome-keyring? ( gnome-base/libgnome-keyring )
"
DOCS=( ChangeLog ReadMe.txt )
src_configure() {
local mycmakeargs=(
-DBUILD_WITH_QT4=OFF
-DQTKEYCHAIN_STATIC=OFF
-DBUILD_TRANSLATIONS=ON
-DLIBSECRET_SUPPORT=$(usex gnome-keyring)
)
cmake-utils_src_configure
}
|