summaryrefslogtreecommitdiff
path: root/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild
diff options
context:
space:
mode:
authorPatrick McLean <chutzpah@gentoo.org>2022-08-12 14:16:10 -0700
committerPatrick McLean <chutzpah@gentoo.org>2022-08-12 15:13:28 -0700
commit3fefa4dfecdda2a5366a29203bc41389224887b0 (patch)
tree70b1dea8df8840ccf416a301785539d5e88eb55f /dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild
parentd9a4caf0b02505f64cd2e5c97d2add08527a723b (diff)
downloadgentoo-3fefa4dfecdda2a5366a29203bc41389224887b0.tar.gz
gentoo-3fefa4dfecdda2a5366a29203bc41389224887b0.tar.bz2
gentoo-3fefa4dfecdda2a5366a29203bc41389224887b0.zip
dev-cpp/opentelemetry-cpp: add 1.5.0
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild')
-rw-r--r--dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild50
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild b/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild
new file mode 100644
index 000000000000..2d70f1cdbd83
--- /dev/null
+++ b/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.5.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="The OpenTelemetry C++ Client"
+HOMEPAGE="
+ https://opentelemetry.io/
+ https://github.com/open-telemetry/opentelemetry-cpp
+"
+SRC_URI="https://github.com/open-telemetry/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+jaeger prometheus test"
+
+RDEPEND="
+ net-misc/curl:=
+ dev-libs/thrift:=
+ dev-libs/boost:=
+"
+DEPEND="
+ ${RDEPEND}
+ test? (
+ dev-cpp/gtest
+ dev-cpp/benchmark
+ )
+"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+ # remove tests the need network
+ "${FILESDIR}/opentelemetry-cpp-1.5.0-tests.patch"
+)
+
+src_configure() {
+ local -a mycmakeargs=(
+ -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON
+ -DBUILD_SHARED_LIBS:BOOL=ON
+ -DBUILD_TESTING:BOOL=$(usex test)
+ -DWITH_JAEGER:BOOL=$(usex jaeger)
+ -DWITH_PROMETHEUS:BOOL=$(usex prometheus)
+ )
+
+ cmake_src_configure
+}