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 3C5D81388BF for ; Thu, 18 Feb 2016 16:34:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F04C21C0F3; Thu, 18 Feb 2016 16:34:40 +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 2AD9521C0F3 for ; Thu, 18 Feb 2016 16:34:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3BFE8340C7C for ; Thu, 18 Feb 2016 16:34:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DEDB15FB for ; Thu, 18 Feb 2016 16:34:35 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1455813272.c1e0693ecf4a03af39c1b90750131f2fd5867417.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/exodusii/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/exodusii/exodusii-6.02.ebuild X-VCS-Directories: sci-libs/exodusii/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c1e0693ecf4a03af39c1b90750131f2fd5867417 X-VCS-Branch: master Date: Thu, 18 Feb 2016 16:34:35 +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: aac53773-9293-4fee-8858-5cd6c96cd64d X-Archives-Hash: 859dce9f22657fedd3842f6c0b3b3fe4 commit: c1e0693ecf4a03af39c1b90750131f2fd5867417 Author: Justin Lecher gentoo org> AuthorDate: Thu Feb 18 16:34:24 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Feb 18 16:34:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e0693e sci-libs/exodusii: Require a fortran compiler support for tests Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=558392 Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> sci-libs/exodusii/exodusii-6.02.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sci-libs/exodusii/exodusii-6.02.ebuild b/sci-libs/exodusii/exodusii-6.02.ebuild index fd65fa9..6eec329 100644 --- a/sci-libs/exodusii/exodusii-6.02.ebuild +++ b/sci-libs/exodusii/exodusii-6.02.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -inherit cmake-utils multilib +FORTRAN_NEEDED="test" + +inherit cmake-utils fortran-2 multilib MY_PN="${PN%ii}" MY_P="${MY_PN}-${PV}" @@ -18,8 +20,10 @@ SLOT="0" KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux" IUSE="static-libs test" -DEPEND="sci-libs/netcdf[hdf5]" -RDEPEND="${DEPEND}" +RDEPEND="sci-libs/netcdf[hdf5]" +DEPEND="${RDEPEND} + test? ( app-shells/tcsh ) +" S="${WORKDIR}"/${MY_P}/${MY_PN}