diff options
author | Markus Dittrich <markusle@gentoo.org> | 2007-01-03 02:51:48 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2007-01-03 02:51:48 +0000 |
commit | 53696c4ca28ce5b73f078590540de5dc7c0f1829 (patch) | |
tree | a212c44e2b887fbbd0bfcbb0c0f898b653a3090e /sci-libs/lapack-atlas | |
parent | Marking ALSA 1.0.13 stable as per bug #150540 (diff) | |
download | gentoo-2-53696c4ca28ce5b73f078590540de5dc7c0f1829.tar.gz gentoo-2-53696c4ca28ce5b73f078590540de5dc7c0f1829.tar.bz2 gentoo-2-53696c4ca28ce5b73f078590540de5dc7c0f1829.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/lapack-atlas')
-rw-r--r-- | sci-libs/lapack-atlas/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/lapack-atlas/lapack-atlas-3.7.11.ebuild | 4 | ||||
-rw-r--r-- | sci-libs/lapack-atlas/lapack-atlas-3.7.24.ebuild | 6 |
3 files changed, 13 insertions, 6 deletions
diff --git a/sci-libs/lapack-atlas/ChangeLog b/sci-libs/lapack-atlas/ChangeLog index abedcce0decc..af77a8899862 100644 --- a/sci-libs/lapack-atlas/ChangeLog +++ b/sci-libs/lapack-atlas/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/lapack-atlas -# Copyright 2004-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/lapack-atlas/ChangeLog,v 1.35 2006/12/29 12:56:59 gustavoz Exp $ +# Copyright 2004-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/lapack-atlas/ChangeLog,v 1.36 2007/01/03 02:51:48 markusle Exp $ + + 03 Jan 2007; Markus Dittrich <markusle@gentoo.org> + lapack-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> lapack-atlas-3.7.11.ebuild: diff --git a/sci-libs/lapack-atlas/lapack-atlas-3.7.11.ebuild b/sci-libs/lapack-atlas/lapack-atlas-3.7.11.ebuild index a6cb6ce69ff7..9a49fbfabc89 100644 --- a/sci-libs/lapack-atlas/lapack-atlas-3.7.11.ebuild +++ b/sci-libs/lapack-atlas/lapack-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/lapack-atlas/lapack-atlas-3.7.11.ebuild,v 1.11 2006/12/29 12:56:59 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/lapack-atlas/lapack-atlas-3.7.11.ebuild,v 1.12 2007/01/03 02:51:48 markusle Exp $ inherit eutils flag-o-matic toolchain-funcs fortran diff --git a/sci-libs/lapack-atlas/lapack-atlas-3.7.24.ebuild b/sci-libs/lapack-atlas/lapack-atlas-3.7.24.ebuild index 7eb511f07a7f..545adbb93c25 100644 --- a/sci-libs/lapack-atlas/lapack-atlas-3.7.24.ebuild +++ b/sci-libs/lapack-atlas/lapack-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/lapack-atlas/lapack-atlas-3.7.24.ebuild,v 1.1 2006/12/19 23:11:56 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/lapack-atlas/lapack-atlas-3.7.24.ebuild,v 1.2 2007/01/03 02:51:48 markusle Exp $ inherit eutils flag-o-matic toolchain-funcs fortran @@ -69,6 +69,8 @@ src_unpack() { local archselect if [[ "${ARCH}" == "amd64" || "${ARCH}" == "ppc64" ]]; then archselect="-b 64" + elif [ "${ARCH}" == "alpha" ]; then + archselect="" else archselect="-b 32" fi |