diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-12 19:28:56 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-12 19:28:56 +0000 |
commit | 6c7a033daf61d37c074e385443dd6d46e32a83bb (patch) | |
tree | be907cf8d5dc52c5d3241348d0880bbd42323ebd /app-sci | |
parent | repoman: Fix leading whitespace (Manifest recommit) (diff) | |
download | gentoo-2-6c7a033daf61d37c074e385443dd6d46e32a83bb.tar.gz gentoo-2-6c7a033daf61d37c074e385443dd6d46e32a83bb.tar.bz2 gentoo-2-6c7a033daf61d37c074e385443dd6d46e32a83bb.zip |
don't use deprecated ? : syntax
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/lapack-atlas/ChangeLog | 8 | ||||
-rw-r--r-- | app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild | 5 |
2 files changed, 9 insertions, 4 deletions
diff --git a/app-sci/lapack-atlas/ChangeLog b/app-sci/lapack-atlas/ChangeLog index b1cc1e534851..f539912bb479 100644 --- a/app-sci/lapack-atlas/ChangeLog +++ b/app-sci/lapack-atlas/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-sci/lapack-atlas -# Copyright 2004 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-sci/lapack-atlas/ChangeLog,v 1.2 2004/05/12 11:51:57 aliz Exp $ +# Copyright 2004-2004 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-sci/lapack-atlas/ChangeLog,v 1.3 2004/05/12 19:28:56 mr_bones_ Exp $ + + 12 May 2004; Michael Sterrett <mr_bones_@gentoo.org> + lapack-atlas-3.6.0.ebuild: + don't use deprecated ? : syntax *lapack-atlas-3.6.0 (11 May 2004) diff --git a/app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild b/app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild index fad57f9c44c1..c48944923c91 100644 --- a/app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild +++ b/app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild,v 1.1 2004/05/12 03:05:59 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/lapack-atlas/lapack-atlas-3.6.0.ebuild,v 1.2 2004/05/12 19:28:56 mr_bones_ Exp $ inherit eutils @@ -17,7 +17,8 @@ KEYWORDS="~x86" IUSE="ifc doc" DEPEND="virtual/glibc - ifc? ( >=sys-devel/libtool-1.5 ) : ( sys-devel/libtool ) + ifc? ( >=sys-devel/libtool-1.5 ) + !ifc? ( sys-devel/libtool ) =app-sci/blas-atlas-3.6.0 app-sci/lapack-config ifc? ( dev-lang/ifc )" |