From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 370601382C5 for ; Tue, 3 Apr 2018 03:52:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F958E0A90; Tue, 3 Apr 2018 03:52:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19262E0A90 for ; Tue, 3 Apr 2018 03:52:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EEB0335CEE for ; Tue, 3 Apr 2018 03:52:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8D01278 for ; Tue, 3 Apr 2018 03:52:45 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1522727543.4f30a828e74b6963fe00891a74465f6d2d6686d2.tamiko@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/ifc/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lang/ifc/ifc-18.0.2.199.ebuild X-VCS-Directories: dev-lang/ifc/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 4f30a828e74b6963fe00891a74465f6d2d6686d2 X-VCS-Branch: master Date: Tue, 3 Apr 2018 03:52:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 219458b0-9537-4236-9a97-8682d3eed59b X-Archives-Hash: 984a6504016cb055b92371f80aa1c773 commit: 4f30a828e74b6963fe00891a74465f6d2d6686d2 Author: Matthias Maier gentoo org> AuthorDate: Tue Apr 3 03:25:49 2018 +0000 Commit: Matthias Maier gentoo org> CommitDate: Tue Apr 3 03:52:23 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4f30a828 dev-lang/ifc: version bump to 18.0.2.199 Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-lang/ifc/ifc-18.0.2.199.ebuild | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-lang/ifc/ifc-18.0.2.199.ebuild b/dev-lang/ifc/ifc-18.0.2.199.ebuild new file mode 100644 index 000000000..eaf1e68cd --- /dev/null +++ b/dev-lang/ifc/ifc-18.0.2.199.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +INTEL_DIST_SKU=3235 +INTEL_DIST_PV=2018_update2_professional_edition + +inherit intel-sdp-r1 + +DESCRIPTION="Intel FORTRAN Compiler" +HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/" + +IUSE="doc l10n_ja" +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="~dev-libs/intel-common-${PV}[compiler]" + +CHECKREQS_DISK_BUILD=400M + +INTEL_DIST_DAT_RPMS=( "ifort-common-18.0.2-199-18.0.2-199.noarch.rpm" ) +INTEL_DIST_X86_RPMS=( "ifort-32bit-18.0.2-199-18.0.2-199.x86_64.rpm" ) +INTEL_DIST_AMD64_RPMS=( "ifort-18.0.2-199-18.0.2-199.x86_64.rpm" ) + +pkg_setup() { + if use doc; then + INTEL_DIST_DAT_RPMS+=( "ifort-doc-18.0-18.0.2-199.noarch.rpm" ) + fi +} + +src_install() { + # already provided in dev-libs/intel-common + rm \ + "${WORKDIR}"/opt/intel/compilers_and_libraries_2018.2.199/linux/compiler/include/omp_lib.f90 \ + "${WORKDIR}"/opt/intel/compilers_and_libraries_2018.2.199/linux/compiler/include/intel64/omp_lib.mod \ + "${WORKDIR}"/opt/intel/compilers_and_libraries_2018.2.199/linux/compiler/include/intel64/omp_lib_kinds.mod \ + || die "rm failed" + + intel-sdp-r1_src_install +}