From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 30CF1138AD7 for ; Sat, 21 Feb 2015 20:05:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EFF7E095E; Sat, 21 Feb 2015 20:05:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A1A5E095E for ; Sat, 21 Feb 2015 20:05:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50514340AA3 for ; Sat, 21 Feb 2015 20:05:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5113A12423 for ; Sat, 21 Feb 2015 20:05:50 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1424549141.53c824ffd1b1c23145a024a19b039238ed3146e1.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/openmpi/ChangeLog sys-cluster/openmpi/openmpi-1.8.4-r3.ebuild X-VCS-Directories: sys-cluster/openmpi/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 53c824ffd1b1c23145a024a19b039238ed3146e1 X-VCS-Branch: master Date: Sat, 21 Feb 2015 20:05:50 +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: 0a418597-b6b3-4bba-9590-f584efeeff3a X-Archives-Hash: e53d55a03b93d1d3bec1fddd19a8ee07 commit: 53c824ffd1b1c23145a024a19b039238ed3146e1 Author: Christoph Junghans gentoo org> AuthorDate: Sat Feb 21 20:04:47 2015 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Sat Feb 21 20:05:41 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=53c824ff fixed USE=-fortran install Package-Manager: portage-2.2.14 --- sys-cluster/openmpi/ChangeLog | 3 +++ sys-cluster/openmpi/openmpi-1.8.4-r3.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sys-cluster/openmpi/ChangeLog b/sys-cluster/openmpi/ChangeLog index 3b947c3..9e19094 100644 --- a/sys-cluster/openmpi/ChangeLog +++ b/sys-cluster/openmpi/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 21 Feb 2015; Christoph Junghans openmpi-1.8.4-r3.ebuild: + fixed USE=-fortran install + 20 Feb 2015; Christoph Junghans openmpi-1.8.4-r3.ebuild: enabled multilib cuda diff --git a/sys-cluster/openmpi/openmpi-1.8.4-r3.ebuild b/sys-cluster/openmpi/openmpi-1.8.4-r3.ebuild index f599615..f851e95 100644 --- a/sys-cluster/openmpi/openmpi-1.8.4-r3.ebuild +++ b/sys-cluster/openmpi/openmpi-1.8.4-r3.ebuild @@ -164,6 +164,9 @@ multilib_src_install() { if multilib_is_native_abi && use fortran; then mkdir "${T}"/fortran || die mv "${ED}"/usr/include/mpif* "${T}"/fortran || die + else + #some fortran files get installed unconditionally + rm "${ED}"/usr/include/mpif* "${ED}"/usr/bin/mpif* || die fi }