blob: 0ceffb27e694086537859890f9c274d3a6e43b30 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Extremely fast, in memory, JSON and interface library for modern C++"
HOMEPAGE="https://github.com/stephenberry/glaze"
SRC_URI="https://github.com/stephenberry/glaze/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/glaze-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc examples fuzzing test"
RESTRICT="!test? ( test )"
DEPEND="
test? (
dev-cpp/ut2-glaze
dev-cpp/asio
>=dev-cpp/eigen-3.4
)
"
RDEPEND="${DEPEND}"
BDEPEND="dev-build/cmake"
# Build patches from Arniiiii: https://github.com/gentoo-mirror/ex_repo
PATCHES=(
"${FILESDIR}/${P}-unbundle-ut2.patch"
"${FILESDIR}/${P}-unbundle-asio.patch"
)
src_configure() {
local mycmakeargs=(
-DCMAKE_SKIP_INSTALL_RULES=OFF
-Dglaze_DEVELOPER_MODE=ON
-Dglaze_ENABLE_FUZZING=$(usex fuzzing ON OFF)
-Dglaze_BUILD_EXAMPLES=$(usex examples ON OFF)
-DBUILD_TESTING=$(usex test ON OFF)
# my default:
-DFETCHCONTENT_QUIET=OFF
--log-level=DEBUG
)
cmake_src_configure
}
src_install() {
if use doc; then
einstalldocs
fi
cmake_src_install
}
|