summaryrefslogtreecommitdiff
path: root/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.171.ebuild
blob: 1aa1fe8dda1b484f500dfad55208ff39084582a6 (plain)
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
27
28
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
}