diff options
author | 2004-06-03 16:11:31 +0000 | |
---|---|---|
committer | 2004-06-03 16:11:31 +0000 | |
commit | 394c166cc9cc28ed4213a9222bf71807efb8991c (patch) | |
tree | c9f211a6a467a84d19fa1d775f555572e7f9ce79 /dev-libs/fftw | |
parent | Added to ~ppc (diff) | |
download | gentoo-2-394c166cc9cc28ed4213a9222bf71807efb8991c.tar.gz gentoo-2-394c166cc9cc28ed4213a9222bf71807efb8991c.tar.bz2 gentoo-2-394c166cc9cc28ed4213a9222bf71807efb8991c.zip |
Fix use invocation
Diffstat (limited to 'dev-libs/fftw')
-rw-r--r-- | dev-libs/fftw/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/fftw/fftw-2.1.3-r1.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/fftw/fftw-2.1.5.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/fftw/fftw-3.0.1-r1.ebuild | 8 | ||||
-rw-r--r-- | dev-libs/fftw/fftw-3.0.1.ebuild | 8 |
5 files changed, 17 insertions, 13 deletions
diff --git a/dev-libs/fftw/ChangeLog b/dev-libs/fftw/ChangeLog index 18adad08677f..85fdab11f992 100644 --- a/dev-libs/fftw/ChangeLog +++ b/dev-libs/fftw/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/fftw # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/ChangeLog,v 1.20 2004/04/19 14:16:07 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/ChangeLog,v 1.21 2004/06/03 16:07:44 agriffis Exp $ + + 03 Jun 2004; Aron Griffis <agriffis@gentoo.org> fftw-3.0.1-r1.ebuild, + fftw-3.0.1.ebuild: + Fix use invocation *fftw-3.0.1-r1 (19 Apr 2004) diff --git a/dev-libs/fftw/fftw-2.1.3-r1.ebuild b/dev-libs/fftw/fftw-2.1.3-r1.ebuild index 0f653f650fa9..1b48c6fe8431 100644 --- a/dev-libs/fftw/fftw-2.1.3-r1.ebuild +++ b/dev-libs/fftw/fftw-2.1.3-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.3-r1.ebuild,v 1.5 2003/09/11 01:10:01 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.3-r1.ebuild,v 1.6 2004/06/03 16:07:44 agriffis Exp $ IUSE="mpi" diff --git a/dev-libs/fftw/fftw-2.1.5.ebuild b/dev-libs/fftw/fftw-2.1.5.ebuild index a44cec894014..a25277e3e250 100644 --- a/dev-libs/fftw/fftw-2.1.5.ebuild +++ b/dev-libs/fftw/fftw-2.1.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.5.ebuild,v 1.5 2003/07/22 12:56:02 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.5.ebuild,v 1.6 2004/06/03 16:07:44 agriffis Exp $ inherit flag-o-matic diff --git a/dev-libs/fftw/fftw-3.0.1-r1.ebuild b/dev-libs/fftw/fftw-3.0.1-r1.ebuild index f4e4159e3570..82ce57f008be 100644 --- a/dev-libs/fftw/fftw-3.0.1-r1.ebuild +++ b/dev-libs/fftw/fftw-3.0.1-r1.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/dev-libs/fftw/fftw-3.0.1-r1.ebuild,v 1.1 2004/04/19 14:16:08 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-3.0.1-r1.ebuild,v 1.2 2004/06/03 16:07:44 agriffis Exp $ IUSE="3dnow sse mpi" @@ -26,7 +26,7 @@ filter-mfpmath # according to the docs, -O0 can cause trouble too! So pending further # testing, ... -if [ `use sse` ]; then +if use sse; then filter-flags -O3 -O1 -O -Os append-flags -O2 fi @@ -51,10 +51,10 @@ src_compile() { #mpi is not a valid flag yet. In this revision it is used merely to block --enable-mpi option #it might be needed if it is decided that lam is an optional dependence - if [ `use sse` ]; then + if use sse; then myconfsingle="$myconfsingle --enable-sse" myconfdouble="$myconfdouble --enable-sse2" - elif [ `use 3dnow` ]; then + elif use 3dnow; then myconfsingle="$myconfsingle --enable-k7" fi diff --git a/dev-libs/fftw/fftw-3.0.1.ebuild b/dev-libs/fftw/fftw-3.0.1.ebuild index 22aa611509f0..2f2e513e31df 100644 --- a/dev-libs/fftw/fftw-3.0.1.ebuild +++ b/dev-libs/fftw/fftw-3.0.1.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/dev-libs/fftw/fftw-3.0.1.ebuild,v 1.5 2004/03/23 03:44:40 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-3.0.1.ebuild,v 1.6 2004/06/03 16:07:44 agriffis Exp $ IUSE="3dnow sse mpi" @@ -26,7 +26,7 @@ filter-mfpmath # according to the docs, -O0 can cause trouble too! So pending further # testing, ... -if [ `use sse` ]; then +if use sse; then filter-flags -O3 -O1 -O -Os append-flags -O2 fi @@ -51,10 +51,10 @@ src_compile() { #mpi is not a valid flag yet. In this revision it is used merely to block --enable-mpi option #it might be needed if it is decided that lam is an optional dependence - if [ `use sse` ]; then + if use sse; then myconfsingle="$myconfsingle --enable-sse" myconfdouble="$myconfdouble --enable-sse2" - elif [ `use 3dnow` ]; then + elif use 3dnow; then myconfsingle="$myconfsingle --enable-3dnow" fi |