summaryrefslogtreecommitdiff
path: root/dev-cpp/cpptrace/cpptrace-1.0.4.ebuild
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2025-11-22 22:35:13 +0000
committerJames Le Cuirot <chewi@gentoo.org>2025-11-22 22:35:13 +0000
commit6744fe23bf05df150f5ad8853cb73809c726678f (patch)
tree25a3d2d5c838e0aca75f594aaf092be6b5b8c150 /dev-cpp/cpptrace/cpptrace-1.0.4.ebuild
parentc33c7fd5dc8b741d2956fc7a8309fbdbe827a95a (diff)
downloadgentoo-6744fe23bf05df150f5ad8853cb73809c726678f.tar.gz
gentoo-6744fe23bf05df150f5ad8853cb73809c726678f.tar.bz2
gentoo-6744fe23bf05df150f5ad8853cb73809c726678f.zip
dev-cpp/cpptrace: New package needed by games-engine/odamex
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'dev-cpp/cpptrace/cpptrace-1.0.4.ebuild')
-rw-r--r--dev-cpp/cpptrace/cpptrace-1.0.4.ebuild43
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-cpp/cpptrace/cpptrace-1.0.4.ebuild b/dev-cpp/cpptrace/cpptrace-1.0.4.ebuild
new file mode 100644
index 000000000000..a3395ccf3a1c
--- /dev/null
+++ b/dev-cpp/cpptrace/cpptrace-1.0.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2025 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 ~arm64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ app-arch/zstd:=
+ dev-libs/libdwarf:=
+"
+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
+ )
+ cmake_src_configure
+}