summaryrefslogtreecommitdiff
path: root/dev-cpp/sentry-native/sentry-native-0.6.3.ebuild
blob: 21989faf92f1d226d028956ea9185028605bb81c (plain) (blame)
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
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="Sentry SDK for C, C++, and Native applications"
HOMEPAGE="https://sentry.io"
SRC_URI="https://github.com/getsentry/sentry-native/archive/refs/tags/${PV}.tar.gz"

inherit cmake

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"

DEPEND="dev-util/breakpad"
RDEPEND="${DEPEND}"
BDEPEND=""

src_configure() {
	local mycmakeargs=(
		"-DSENTRY_BREAKPAD_SYSTEM=On"
	)

	cmake_src_configure
}