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/ifc/
Date: Sat, 25 May 2019 06:36:20
Message-Id: 1558766165.3b54629b2562254c2a1bf380db6c34992216414e.tamiko@gentoo
1 commit: 3b54629b2562254c2a1bf380db6c34992216414e
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 24 21:37:09 2019 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sat May 25 06:36:05 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3b54629b
7
8 dev-lang/ifc: version bump to 19.0.4.243
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 dev-lang/ifc/ifc-19.0.4.243.ebuild | 39 ++++++++++++++++++++++++++++++++++++++
14 1 file changed, 39 insertions(+)
15
16 diff --git a/dev-lang/ifc/ifc-19.0.4.243.ebuild b/dev-lang/ifc/ifc-19.0.4.243.ebuild
17 new file mode 100644
18 index 000000000..a45765a2f
19 --- /dev/null
20 +++ b/dev-lang/ifc/ifc-19.0.4.243.ebuild
21 @@ -0,0 +1,39 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +INTEL_DIST_PV=2019_update4_professional_edition
28 +
29 +inherit intel-sdp-r1
30 +
31 +DESCRIPTION="Intel FORTRAN Compiler"
32 +HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/"
33 +
34 +IUSE="doc"
35 +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
36 +
37 +RDEPEND="~dev-libs/intel-common-${PV}[compiler]"
38 +
39 +CHECKREQS_DISK_BUILD=400M
40 +
41 +INTEL_DIST_DAT_RPMS=( "ifort-common-19.0.4-243-19.0.4-243.noarch.rpm" )
42 +INTEL_DIST_AMD64_RPMS=( "ifort-19.0.4-243-19.0.4-243.x86_64.rpm" )
43 +INTEL_DIST_X86_RPMS=( "ifort-32bit-19.0.4-243-19.0.4-243.x86_64.rpm" )
44 +
45 +pkg_setup() {
46 + if use doc; then
47 + INTEL_DIST_DAT_RPMS+=( "ifort-doc-19.0-19.0.4-243.noarch.rpm" )
48 + fi
49 +}
50 +
51 +src_install() {
52 + # already provided in dev-libs/intel-common
53 + rm \
54 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2019.4.243/linux/compiler/include/omp_lib.f90 \
55 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2019.4.243/linux/compiler/include/intel64/omp_lib.mod \
56 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2019.4.243/linux/compiler/include/intel64/omp_lib_kinds.mod \
57 + || die "rm failed"
58 +
59 + intel-sdp-r1_src_install
60 +}