diff options
author | Markus Dittrich <markusle@gentoo.org> | 2007-02-21 15:41:09 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2007-02-21 15:41:09 +0000 |
commit | 66f512d79346720a08132131797574701ace9bef (patch) | |
tree | b727cd4681591e407dd68f88d91a8d6e8f74504f /sci-libs | |
parent | Convert to Manifest2 (diff) | |
download | gentoo-2-66f512d79346720a08132131797574701ace9bef.tar.gz gentoo-2-66f512d79346720a08132131797574701ace9bef.tar.bz2 gentoo-2-66f512d79346720a08132131797574701ace9bef.zip |
Version bump.
(Portage version: 2.1.2-r9)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/gsl/ChangeLog | 11 | ||||
-rw-r--r-- | sci-libs/gsl/files/digest-gsl-1.9 | 3 | ||||
-rw-r--r-- | sci-libs/gsl/gsl-1.9.ebuild | 40 |
3 files changed, 51 insertions, 3 deletions
diff --git a/sci-libs/gsl/ChangeLog b/sci-libs/gsl/ChangeLog index e6b7f53fcf86..201ef8c125a2 100644 --- a/sci-libs/gsl/ChangeLog +++ b/sci-libs/gsl/ChangeLog @@ -1,10 +1,15 @@ # ChangeLog for sci-libs/gsl # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gsl/ChangeLog,v 1.19 2007/02/21 15:14:51 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gsl/ChangeLog,v 1.20 2007/02/21 15:41:09 markusle Exp $ + +*gsl-1.9 (21 Feb 2007) + + 21 Feb 2007; Markus Dittrich <markusle@gentoo.org> +gsl-1.9.ebuild: + Version bump. 21 Feb 2007; Markus Dittrich <markusle@gentoo.org> gsl-1.8.ebuild: - Removed filtering of mfpmath=sse since otherwise tests fail - on a mfpmath=sse toolchain. + Removed filtering of -mfpmath=sse since otherwise tests fail + on a -mfpmath=sse built toolchain. 06 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> gsl-1.8.ebuild: Stable on sparc diff --git a/sci-libs/gsl/files/digest-gsl-1.9 b/sci-libs/gsl/files/digest-gsl-1.9 new file mode 100644 index 000000000000..7c9903354b6a --- /dev/null +++ b/sci-libs/gsl/files/digest-gsl-1.9 @@ -0,0 +1,3 @@ +MD5 81dca4362ae8d2aa1547b7d010881e43 gsl-1.9.tar.gz 2574939 +RMD160 faca66d02876135c31c2f3585baa1931488e1593 gsl-1.9.tar.gz 2574939 +SHA256 fcd1c6784997c2312d922d107fcb30462f5be4335ebdfa8e1e0e07568c962250 gsl-1.9.tar.gz 2574939 diff --git a/sci-libs/gsl/gsl-1.9.ebuild b/sci-libs/gsl/gsl-1.9.ebuild new file mode 100644 index 000000000000..1989f86f999b --- /dev/null +++ b/sci-libs/gsl/gsl-1.9.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gsl/gsl-1.9.ebuild,v 1.1 2007/02/21 15:41:09 markusle Exp $ + +inherit eutils flag-o-matic autotools + +DESCRIPTION="The GNU Scientific Library" +HOMEPAGE="http://www.gnu.org/software/gsl/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc-macos ~ppc64 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/gsl-1.6-deps.diff + eautoreconf +} + +src_compile() { + replace-cpu-flags k6 k6-2 k6-3 i586 + filter-flags -ffast-math + + econf --disable-libtool-lock || die + emake || die 'emake failed.' +} + +src_test() { + make check || die 'make check failed.' +} + +src_install() { + einstall || die 'einstall failed.' + dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SUPPORT THANKS TODO +} |