commit: fa25fb40147b91c3c8d1933da786b2cb6bf96da8 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> AuthorDate: Sat Feb 25 08:42:50 2023 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Sat Feb 25 08:43:05 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fa25fb40
sys-devel/ittapi: add 3.24.0 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org> sys-devel/ittapi/ittapi-3.24.0.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/sys-devel/ittapi/ittapi-3.24.0.ebuild b/sys-devel/ittapi/ittapi-3.24.0.ebuild new file mode 100644 index 000000000..38ae1b432 --- /dev/null +++ b/sys-devel/ittapi/ittapi-3.24.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Intel Instrumentation and Tracing Technology and Just-In-Time API " +HOMEPAGE="https://github.com/intel/ittapi" +SRC_URI="https://github.com/intel/ittapi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( GPL-2 BSD )" +SLOT="0" +KEYWORDS="~amd64" + +src_prepare() { + # Make it a shared library + sed -i -e 's/STATIC/SHARED/g' CMakeLists.txt || die + cmake_src_prepare +} + +src_install() { + dolib.so "${BUILD_DIR}/bin/"*.so + doheader -r "${S}/include/"* + einstalldocs +}
