blob: 89a64470ebc5110377c69907a92ade88b2b28f44 (
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 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Simple, portable, and self-contained stacktrace library for C++11 and newer"
HOMEPAGE="https://github.com/jeremy-rifkin/cpptrace"
SRC_URI="https://github.com/jeremy-rifkin/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="unwind test"
RESTRICT="!test? ( test )"
RDEPEND="
app-arch/zstd:=
dev-libs/libdwarf:=
unwind? ( sys-libs/libunwind:= )
"
DEPEND="
${RDEPEND}
test? ( dev-cpp/gtest )
"
src_prepare() {
default
# Unused CMake files with compatibility issues.
rm -v test/*/CMakeLists.txt || die
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DCPPTRACE_BUILD_TESTING=$(usex test)
-DCPPTRACE_USE_EXTERNAL_GTEST=yes
-DCPPTRACE_USE_EXTERNAL_LIBDWARF=yes
-DCPPTRACE_USE_EXTERNAL_ZSTD=yes
-DCPPTRACE_UNWIND_WITH_LIBUNWIND=$(usex unwind)
)
cmake_src_configure
}
|