commit: 41951c598b6cc4194609be6bfe1efd5c2f287e43 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de> AuthorDate: Thu Jun 24 09:22:24 2021 +0000 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de> CommitDate: Thu Jun 24 09:25:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41951c59
net-im/nheko: Fix dependencies - Move dev-db/lmdb and dev-libs/spdlog to RDEPEND - Move dev-cpp/nlohmann_json to DEPEND Closes: https://bugs.gentoo.org/798303 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de> net-im/nheko/nheko-0.8.2-r1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/net-im/nheko/nheko-0.8.2-r1.ebuild b/net-im/nheko/nheko-0.8.2-r1.ebuild new file mode 100644 index 000000000..56bf754ca --- /dev/null +++ b/net-im/nheko/nheko-0.8.2-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake xdg + +DESCRIPTION="Desktop client for Matrix using Qt and C++14" +HOMEPAGE="https://github.com/Nheko-Reborn/nheko" +SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + dev-qt/qtmultimedia:5[gstreamer,qml] + dev-qt/qtquickcontrols2:5 + dev-qt/qtgraphicaleffects:5 + dev-qt/qtsvg:5 + dev-qt/qtconcurrent:5 + app-text/cmark + >=dev-libs/mtxclient-0.5.1 + dev-libs/qtkeychain + >=dev-db/lmdb++-1.0.0 + dev-libs/spdlog +" +DEPEND=" + dev-cpp/nlohmann_json + ${RDEPEND} +" +BDEPEND="dev-qt/linguist-tools:5" + +src_prepare() { + cmake_src_prepare + xdg_src_prepare +}
