2020-06-01 14:21:37 +02:00
|
|
|
# Copyright 2020 Gentoo Authors
|
2020-05-31 21:27:02 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-06-01 14:21:37 +02:00
|
|
|
EAPI=7
|
2020-05-31 21:27:02 +02:00
|
|
|
|
2020-10-23 16:40:04 +02:00
|
|
|
inherit cmake
|
2020-05-31 21:27:02 +02:00
|
|
|
|
2020-12-29 20:42:33 +01:00
|
|
|
DESCRIPTION="A Qt5 library to write cross-platform clients for Matrix"
|
|
|
|
HOMEPAGE="https://matrix.org/docs/projects/sdk/quotient"
|
|
|
|
|
2020-05-31 21:27:02 +02:00
|
|
|
if [[ ${PV} == "9999" ]]; then
|
|
|
|
inherit git-r3
|
2020-09-25 11:37:56 +02:00
|
|
|
EGIT_REPO_URI="https://github.com/quotient-im/"${PN}".git"
|
2020-05-31 21:27:02 +02:00
|
|
|
else
|
2020-09-25 11:37:56 +02:00
|
|
|
SRC_URI="https://github.com/quotient-im/libQuotient/archive/"${PV}".tar.gz -> "${P}".tar.gz"
|
2020-06-01 14:21:37 +02:00
|
|
|
KEYWORDS="~amd64"
|
2020-05-31 21:27:02 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
2020-12-29 20:42:33 +01:00
|
|
|
IUSE="e2e extra"
|
2020-05-31 21:27:02 +02:00
|
|
|
|
2020-12-29 20:42:33 +01:00
|
|
|
RDEPEND="
|
2020-05-31 21:27:02 +02:00
|
|
|
dev-qt/qtcore
|
2020-12-29 20:42:33 +01:00
|
|
|
dev-qt/qtgui
|
2020-05-31 21:27:02 +02:00
|
|
|
dev-qt/qtmultimedia
|
2020-12-29 20:42:33 +01:00
|
|
|
dev-qt/qtnetwork
|
|
|
|
dev-qt/qttest
|
|
|
|
e2e? ( dev-libs/libQtOlm )
|
2020-06-01 14:21:37 +02:00
|
|
|
!!dev-libs/libqmatrixclient
|
|
|
|
"
|
2020-12-29 20:42:33 +01:00
|
|
|
DEPEND="${RDEPEND}"
|
2020-06-01 14:21:37 +02:00
|
|
|
|
2020-09-25 11:37:56 +02:00
|
|
|
S=""${WORKDIR}"/"${PN}"-"${PV}""
|
2020-05-31 21:27:02 +02:00
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local mycmakeargs=(
|
|
|
|
-DBUILD_SHARED_LIBS=ON
|
2020-12-29 20:42:33 +01:00
|
|
|
-DQuotient_ENABLE_E2EE=$(usex e2e)
|
|
|
|
-DUSE_INTREE_LIBQOLM=OFF
|
|
|
|
-DQuotient_INSTALL_TESTS=$(usex extra)
|
2020-05-31 21:27:02 +02:00
|
|
|
)
|
2020-06-10 21:49:03 +02:00
|
|
|
cmake_src_configure
|
2020-05-31 21:27:02 +02:00
|
|
|
}
|