blob: 68b80b355501a29be5f6104f363e4145bc46fbad (
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
38
39
40
41
42
43
44
45
|
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Client API library for Matrix, built on top of libcurl"
HOMEPAGE="https://github.com/Nheko-Reborn/mtxclient"
SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}" # ABI may break even on patch version changes
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-cpp/coeurl-0.3.1:=[ssl]
dev-libs/libfmt:=
dev-libs/olm
dev-libs/openssl:=
dev-libs/re2:0/10
dev-libs/spdlog:=
"
DEPEND="
${RDEPEND}
>=dev-cpp/nlohmann_json-3.11.0
test? ( dev-cpp/gtest )
"
PATCHES=(
"${FILESDIR}"/${PN}-0.6.0-remove-network-tests.patch
)
src_configure() {
local -a mycmakeargs=(
-DBUILD_LIB_TESTS="$(usex test)"
-DBUILD_LIB_EXAMPLES=OFF
-DCMAKE_POSITION_INDEPENDENT_CODE=OFF
)
cmake_src_configure
}
|