dev-libs/intel-metrics-discovery: add 1.14.181

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2025-06-29 20:59:41 +02:00
parent 65166d99e8
commit bc4b519a9d
2 changed files with 30 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST metrics-discovery-1.14.180.tar.gz 5638383 BLAKE2B 54b3c141f51862575997b392b1cfff50a6fc0f4d62eb7baea2a8b2fc7e213f43d48fbbf4ae4154468afce1a7c0665153fa6b2595c8cbf3e4bfeac2f79bfaf5d8 SHA512 da744fc052e4df14498b7a97465a1afb20156fa8759918212591e6dc74f3367f48d34344d8db272f0d2412e51d19ccca80036346f7a437cfee765201c6427c75
DIST metrics-discovery-1.14.181.tar.gz 4304783 BLAKE2B d03d804c3f33421b31c81bdc0ac8d1e1d126256b90c62f079a9c6eb8448e171359c3ec1cb657ccdf0756bee73d97f7a1f495b3d132f9219d49cd044d77c69144 SHA512 1ca64bd6f5c3bca7dcb2805c988c14f7128cda5d7b1c48c2c038432dd39aa8f003760f2218ca6d44ea4468a2b4153eac49f5fdc691416cf9fbf7fd081762bbdf

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2025 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.178-revert-definitions.patch" )
src_configure() {
local mycmakeargs=( -DLINUX_DISTRO="Gentoo" )
cmake_src_configure
}