summaryrefslogtreecommitdiff
path: root/dev-util
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/qtkeychain/Manifest1
-rw-r--r--dev-util/qtkeychain/qtkeychain-0.10.0.ebuild35
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-util/qtkeychain/Manifest b/dev-util/qtkeychain/Manifest
new file mode 100644
index 0000000..f4e8f59
--- /dev/null
+++ b/dev-util/qtkeychain/Manifest
@@ -0,0 +1 @@
+DIST v0.10.0.tar.gz 38488 BLAKE2B 229270158f08a17e391a68bb6eaf6a1924fd1e5caa9ba026e15619dd159d1514894000a74301a2f2dda706f0629b5bc06afeb38191700e834d412c9cff505263 SHA512 de35d1a39c717db5c8c3b8a59571e96ed8925836a7043dd9f236c284bf92de4875c4b53686ba73244bbc84b55a88d44316a16da3012e50cbc7594fbf0b1140b6
diff --git a/dev-util/qtkeychain/qtkeychain-0.10.0.ebuild b/dev-util/qtkeychain/qtkeychain-0.10.0.ebuild
new file mode 100644
index 0000000..82a4590
--- /dev/null
+++ b/dev-util/qtkeychain/qtkeychain-0.10.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+RESTRICT="mirror"
+
+DESCRIPTION="qtkeychain - Platform-independent Qt API for storing passwords securely"
+HOMEPAGE="https://github.com/frankosterfeld/qtkeychain"
+SRC_URI="https://github.com/frankosterfeld/qtkeychain/archive/v${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+qt5"
+REQUIRE_USE="qt5 ( xcb )"
+
+RDEPEND="
+ dev-qt/qtcore:5"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/qtkeychain-${PV}"
+
+src_configure() {
+ local mycmakeargs=()
+
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+}