You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/qtkeychain/qtkeychain-0.7.0.ebuild

36 lines
659 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="Qt API for storing passwords securely"
HOMEPAGE="https://github.com/frankosterfeld/qtkeychain"
SRC_URI="https://github.com/frankosterfeld/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0/1"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
"
DOCS=( ChangeLog ReadMe.txt )
src_configure() {
local mycmakeargs=(
-DBUILD_WITH_QT4=OFF
-DQTKEYCHAIN_STATIC=OFF
-DBUILD_TRANSLATIONS=ON
)
cmake-utils_src_configure
}