dev-cpp/cpptrace - 1.0.4 (gentoo)

Search

Install

Install this version:

emerge -a =dev-cpp/cpptrace-1.0.4

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-cpp/cpptrace-1.0.4

Or alternatively:

emerge --autounmask-write -a =dev-cpp/cpptrace-1.0.4

Package Information

Description:
Simple, portable, and self-contained stacktrace library for C++11 and newer
Homepage:
https://github.com/jeremy-rifkin/cpptrace
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
1.0.4 8 ~amd64 ~arm ~arm64 ~ppc64 ~x86 0
View Raw Ebuild
# 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
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-cpp/cpptrace | euse -E <flag> -p dev-cpp/cpptrace | euse -D <flag> -p dev-cpp/cpptrace

Global/Standard Flags

Inherited Eclasses

Dependencies

DEPEND

	
	app-arch/zstd:=
	dev-libs/libdwarf:=
	unwind? ( sys-libs/libunwind:= )

	test? ( dev-cpp/gtest )

RDEPEND

	app-arch/zstd:=
	dev-libs/libdwarf:=
	unwind? ( sys-libs/libunwind:= )

Manifest for 1.0.4

Type File Size Source URLs
DIST cpptrace-1.0.4.tar.gz 494169 bytes https://github.com/jeremy-rifkin/cpptrace/archive/refs/tags/v1.0.4.tar.gz