diff options
author | Markus Dittrich <markusle@gentoo.org> | 2007-01-03 02:36:46 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2007-01-03 02:36:46 +0000 |
commit | ef681fab756becc910aa84b96938c825e532ce41 (patch) | |
tree | 626c312a640a5dba299ff39fa36f54182525cfa6 /sci-libs/blas-atlas | |
parent | Link with libcurses instead of libncurses (diff) | |
download | gentoo-2-ef681fab756becc910aa84b96938c825e532ce41.tar.gz gentoo-2-ef681fab756becc910aa84b96938c825e532ce41.tar.bz2 gentoo-2-ef681fab756becc910aa84b96938c825e532ce41.zip |
Removed forcing of non-existent -m32 CFLAG for alpha and rely on atlas' autodetection to do the right thing (see bug #159002).
(Portage version: 2.1.2_rc4-r4)
Diffstat (limited to 'sci-libs/blas-atlas')
-rw-r--r-- | sci-libs/blas-atlas/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild | 4 | ||||
-rw-r--r-- | sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild | 6 |
3 files changed, 13 insertions, 6 deletions
diff --git a/sci-libs/blas-atlas/ChangeLog b/sci-libs/blas-atlas/ChangeLog index af4b8fc81cc0..3481d5862e74 100644 --- a/sci-libs/blas-atlas/ChangeLog +++ b/sci-libs/blas-atlas/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/blas-atlas -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/ChangeLog,v 1.52 2006/12/29 12:55:41 gustavoz Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/ChangeLog,v 1.53 2007/01/03 02:36:46 markusle Exp $ + + 03 Jan 2007; Markus Dittrich <markusle@gentoo.org> + blas-atlas-3.7.24.ebuild: + Removed forcing of non-existent -m32 CFLAG for alpha and rely on + atlas' autodetection to do the right thing (see bug #159002). 29 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> blas-atlas-3.7.11.ebuild: diff --git a/sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild b/sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild index 839ff51bbfe8..b091b35730e2 100644 --- a/sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild +++ b/sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild,v 1.16 2006/12/29 12:55:41 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/blas-atlas-3.7.11.ebuild,v 1.17 2007/01/03 02:36:46 markusle Exp $ inherit eutils toolchain-funcs fortran diff --git a/sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild b/sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild index 0000817d0b60..af7d6527eafc 100644 --- a/sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild +++ b/sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild,v 1.1 2006/12/19 23:09:21 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/blas-atlas-3.7.24.ebuild,v 1.2 2007/01/03 02:36:46 markusle Exp $ inherit eutils toolchain-funcs fortran @@ -70,6 +70,8 @@ src_unpack() { local archselect if [[ "${ARCH}" == "amd64" || "${ARCH}" == "ppc64" ]]; then archselect="-b 64" + elif [ "${ARCH}" == "alpha" ]; then + archselect="" else archselect="-b 32" fi |