Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/vtune/
Date: Tue, 03 Apr 2018 16:45:03
Message-Id: 1522773890.a4c1fcde6604d517b0c08880bb364448cd490f5d.tamiko@gentoo
1 commit: a4c1fcde6604d517b0c08880bb364448cd490f5d
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 3 15:34:20 2018 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 3 16:44:50 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a4c1fcde
7
8 dev-lang/vtune: version bump to 18.0.2.0.551022
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 dev-lang/vtune/vtune-18.0.2.0.551022.ebuild | 49 +++++++++++++++++++++++++++++
13 1 file changed, 49 insertions(+)
14
15 diff --git a/dev-lang/vtune/vtune-18.0.2.0.551022.ebuild b/dev-lang/vtune/vtune-18.0.2.0.551022.ebuild
16 new file mode 100644
17 index 000000000..51a0b08c0
18 --- /dev/null
19 +++ b/dev-lang/vtune/vtune-18.0.2.0.551022.ebuild
20 @@ -0,0 +1,49 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +INTEL_DIST_SKU=3235
27 +INTEL_DIST_PV=2018_update2_professional_edition
28 +INTEL_SUBDIR=vtune_amplifier
29 +
30 +inherit intel-sdp-r1
31 +
32 +DESCRIPTION="Intel VTune Amplifier XE"
33 +HOMEPAGE="http://software.intel.com/en-us/articles/intel-vtune-amplifier-xe/"
34 +
35 +IUSE="doc"
36 +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
37 +
38 +RDEPEND="~dev-libs/intel-common-18.0.2.199[compiler]"
39 +
40 +INTEL_DIST_DAT_RPMS=(
41 + "vtune-amplifier-2018-cli-common-2018.2-551022.noarch.rpm"
42 + "vtune-amplifier-2018-common-2018.2-551022.noarch.rpm"
43 + "vtune-amplifier-2018-common-pset-2018.2-551022.noarch.rpm"
44 + "vtune-amplifier-2018-gui-common-2018.2-551022.noarch.rpm"
45 + "vtune-amplifier-2018-sep-2018.2-551022.noarch.rpm"
46 + "vtune-amplifier-2018-target-2018.2-551022.noarch.rpm")
47 +INTEL_DIST_AMD64_RPMS=(
48 + "vtune-amplifier-2018-cli-2018.2-551022.x86_64.rpm"
49 + "vtune-amplifier-2018-collector-64linux-2018.2-551022.x86_64.rpm"
50 + "vtune-amplifier-2018-gui-2018.2-551022.x86_64.rpm")
51 +INTEL_DIST_X86_RPMS=(
52 + "vtune-amplifier-2018-cli-32bit-2018.2-551022.i486.rpm"
53 + "vtune-amplifier-2018-collector-32linux-2018.2-551022.i486.rpm")
54 +
55 +pkg_setup() {
56 + if use doc; then
57 + INTEL_DIST_DAT_RPMS+=( "vtune-amplifier-2018-doc-2018.2-551022.noarch.rpm" )
58 + fi
59 +}
60 +
61 +src_install() {
62 + intel-sdp-r1_src_install
63 +
64 + local path="PATH="
65 + use abi_x86_64 && path+=":$(isdp_get-sdp-edir)/bin64"
66 + use abi_x86_32 && path+=":$(isdp_get-sdp-edir)/bin32"
67 + echo "${path}" > "${T}"/35vtune || die
68 + doenvd "${T}"/35vtune
69 +}