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: Tue, 03 Apr 2018 03:52:50
Message-Id: 1522727543.4f30a828e74b6963fe00891a74465f6d2d6686d2.tamiko@gentoo
1 commit: 4f30a828e74b6963fe00891a74465f6d2d6686d2
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 3 03:25:49 2018 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 3 03:52:23 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4f30a828
7
8 dev-lang/ifc: version bump to 18.0.2.199
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 dev-lang/ifc/ifc-18.0.2.199.ebuild | 40 ++++++++++++++++++++++++++++++++++++++
13 1 file changed, 40 insertions(+)
14
15 diff --git a/dev-lang/ifc/ifc-18.0.2.199.ebuild b/dev-lang/ifc/ifc-18.0.2.199.ebuild
16 new file mode 100644
17 index 000000000..eaf1e68cd
18 --- /dev/null
19 +++ b/dev-lang/ifc/ifc-18.0.2.199.ebuild
20 @@ -0,0 +1,40 @@
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 +
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 l10n_ja"
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-18.0.2-199-18.0.2-199.noarch.rpm" )
42 +INTEL_DIST_X86_RPMS=( "ifort-32bit-18.0.2-199-18.0.2-199.x86_64.rpm" )
43 +INTEL_DIST_AMD64_RPMS=( "ifort-18.0.2-199-18.0.2-199.x86_64.rpm" )
44 +
45 +pkg_setup() {
46 + if use doc; then
47 + INTEL_DIST_DAT_RPMS+=( "ifort-doc-18.0-18.0.2-199.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_2018.2.199/linux/compiler/include/omp_lib.f90 \
55 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2018.2.199/linux/compiler/include/intel64/omp_lib.mod \
56 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2018.2.199/linux/compiler/include/intel64/omp_lib_kinds.mod \
57 + || die "rm failed"
58 +
59 + intel-sdp-r1_src_install
60 +}