diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2024-04-17 14:14:19 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-04-17 16:11:29 +0200 |
commit | fc12e89593a0b22609cb726c92cdfa85a72806c4 (patch) | |
tree | ebc5991306c3756fd2eabc8a8a68a27f0bb31cd2 /dev-libs/intel-metrics-discovery | |
parent | dev-lua/penlight: add 1.14.0 (diff) | |
download | gentoo-fc12e89593a0b22609cb726c92cdfa85a72806c4.tar.gz gentoo-fc12e89593a0b22609cb726c92cdfa85a72806c4.tar.bz2 gentoo-fc12e89593a0b22609cb726c92cdfa85a72806c4.zip |
dev-libs/intel-metrics-discovery: add 1.12.171
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-libs/intel-metrics-discovery')
-rw-r--r-- | dev-libs/intel-metrics-discovery/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.171.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/intel-metrics-discovery/Manifest b/dev-libs/intel-metrics-discovery/Manifest index f47b97d72594..7adc5c3b7fe9 100644 --- a/dev-libs/intel-metrics-discovery/Manifest +++ b/dev-libs/intel-metrics-discovery/Manifest @@ -1 +1,2 @@ DIST metrics-discovery-1.12.170.tar.gz 4932048 BLAKE2B c4cf382ff29de4319f44863e0e45a0bb424c3f8af93c198723941c35f579e4d25252c99e6726d724483eae74e50a6315933106aa3e3bba8dad1af9a7ed8284fe SHA512 b4bb4465a059c7222b830ae3541eb1d6171d91f03ec131c1f8a079f6e8b2aed7c9f00899ae23744b986e070897eb135eaa4eff882d1cb173c80d6d2ce1ba3955 +DIST metrics-discovery-1.12.171.tar.gz 5219784 BLAKE2B 3927ad270060543d3dbca9e32abfa83661597313a54bec591098c7f0b48443326d4bc3c13f600b8b53ba4ca2850c15c2c2bee7dc117ca38de9bad3c5b4f8d8b5 SHA512 7c08841e86af29465c2d09788d7230bd9401eb02c35eb0e582db68a389c6e867cbb2f9eb38876cd00ffa519633a16c804454d43efd8c32fb61e39bada202708f diff --git a/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.171.ebuild b/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.171.ebuild new file mode 100644 index 000000000000..1aa1fe8dda1b --- /dev/null +++ b/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.171.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CMAKE_BUILD_TYPE="Release" +MY_PN="${PN/intel-/}" +MY_P="${MY_PN}-${PV}" + +inherit cmake + +DESCRIPTION="A user mode library that provides access to GPU performance data" +HOMEPAGE="https://github.com/intel/metrics-discovery" +SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${MY_P}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" + +DEPEND="x11-libs/libdrm" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-1.12.170-revert-definitions.patch" ) + +src_configure() { + local mycmakeargs=( -DLINUX_DISTRO="Gentoo" ) + cmake_src_configure +} |