From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qa9zP-0003zw-Et for garchives@archives.gentoo.org; Fri, 24 Jun 2011 17:16:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B41791C201; Fri, 24 Jun 2011 17:09:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6D3271C201 for ; Fri, 24 Jun 2011 17:09:13 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AE1AF1B401C for ; Fri, 24 Jun 2011 17:09:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1B2818003E for ; Fri, 24 Jun 2011 17:09:11 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <8f2192a1ae4e22e86718af82cbc619b10e484b43.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/fgsl/ChangeLog sci-libs/fgsl/fgsl-0.9.3.ebuild X-VCS-Directories: sci-libs/fgsl/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8f2192a1ae4e22e86718af82cbc619b10e484b43 Date: Fri, 24 Jun 2011 17:09:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 02848b5c65b2c080a951f321d24ec51a commit: 8f2192a1ae4e22e86718af82cbc619b10e484b43 Author: Justin Lecher gentoo org> AuthorDate: Fri Jun 24 12:21:06 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Jun 24 12:21:06 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D8f2192a1 Streamlined fortran-2 eclass usage (Portage version: 2.2.0_alpha41/git/Linux x86_64, RepoMan options: --forc= e, signed Manifest commit with key 70EB7916) --- sci-libs/fgsl/ChangeLog | 3 +++ sci-libs/fgsl/fgsl-0.9.3.ebuild | 14 ++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/sci-libs/fgsl/ChangeLog b/sci-libs/fgsl/ChangeLog index 6e416cd..563d67b 100644 --- a/sci-libs/fgsl/ChangeLog +++ b/sci-libs/fgsl/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 + 24 Jun 2011; Justin Lecher fgsl-0.9.3.ebuild: + Streamlined fortran-2 eclass usage + 21 Jun 2011; Justin Lecher fgsl-0.9.3.ebuild: Added fortran-2.eclass support =20 diff --git a/sci-libs/fgsl/fgsl-0.9.3.ebuild b/sci-libs/fgsl/fgsl-0.9.3.e= build index f192213..cf842e8 100644 --- a/sci-libs/fgsl/fgsl-0.9.3.ebuild +++ b/sci-libs/fgsl/fgsl-0.9.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ =20 -EAPI=3D2 +EAPI=3D4 =20 inherit eutils fortran-2 multilib toolchain-funcs =20 @@ -15,7 +15,9 @@ SLOT=3D"0" KEYWORDS=3D"~amd64" IUSE=3D"static-libs" =20 -DEPEND=3D">=3Dsci-libs/gsl-1.14" +DEPEND=3D" + >=3Dsci-libs/gsl-1.14 + virtual/fortran" RDEPEND=3D"${DEPEND}" #TODO: make docs =20 @@ -41,13 +43,13 @@ src_configure() { } =20 src_install() { - dodoc NEWS README || die + dodoc NEWS README ln -s lib${PN}.so.0.0.0 lib${PN}.so.0 ln -s lib${PN}.so.0.0.0 lib${PN}.so - dolib.so lib${PN}.so* || die + dolib.so lib${PN}.so* insinto /usr/include - doins ${PN}.mod || die + doins ${PN}.mod if use static-libs ; then - newlib.a lib${PN}_$(tc-getFC).a lib${PN}.a || die + newlib.a lib${PN}_$(tc-getFC).a lib${PN}.a fi }