diff options
author | 2023-02-25 09:42:50 +0100 | |
---|---|---|
committer | 2023-02-25 09:43:05 +0100 | |
commit | fa25fb40147b91c3c8d1933da786b2cb6bf96da8 (patch) | |
tree | 3a041ae1bc4c7d827ad4dd13d739b5179378207d /sys-devel | |
parent | sci-chemistry/nmrpipe: add 8.7.20230206, drop 8.7.20200827 (diff) | |
download | sci-fa25fb40147b91c3c8d1933da786b2cb6bf96da8.tar.gz sci-fa25fb40147b91c3c8d1933da786b2cb6bf96da8.tar.bz2 sci-fa25fb40147b91c3c8d1933da786b2cb6bf96da8.zip |
sys-devel/ittapi: add 3.24.0
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/ittapi/Manifest | 1 | ||||
-rw-r--r-- | sys-devel/ittapi/ittapi-3.24.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/sys-devel/ittapi/Manifest b/sys-devel/ittapi/Manifest index 674ca7b92..f8d38ff32 100644 --- a/sys-devel/ittapi/Manifest +++ b/sys-devel/ittapi/Manifest @@ -1 +1,2 @@ DIST ittapi-3.23.0.tar.gz 132481 BLAKE2B c1caf9755e3f0dfa0de2d3e1bca29f3596b68669d8b119822ab23617fdfc33df8d049ed9e8fd66b0865abd311a72b8362e9f26ff45875880cedd1d545f475500 SHA512 2e4aae2e3867588d38734f4425e416fb1ee6fd7df64c72823b481256cf9b7c18a50b6dba22727e16ada9ba0ac10ad0a96fc0d7c6d68edd2b64a899ea047651b5 +DIST ittapi-3.24.0.tar.gz 209498 BLAKE2B f7d13bf8a9633f01719c54cd6e29c2106572dc2bb883d9166af420b6c856cc126a398933cdda73f556b020128292dddb68f67eb97dc1bc597253cea7ade3ca6a SHA512 8d0b8213c0d18514eca581ebb868d7458094bb53760815c68e0648c785d4be0634b09c44bc6565483014425ae422ff390d19e365c19110cc8b5e1a4cced7a51b 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 +} |