diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 12:37:33 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 12:37:33 +0000 |
commit | 9099ce9bdeb8536a8b2204886599ab244b0a9da4 (patch) | |
tree | e7d1a42ab48f5b5f8d6a41ed7d36d6678d3c9c19 /dev-libs/fftw | |
parent | removed older ebuild (diff) | |
download | gentoo-2-9099ce9bdeb8536a8b2204886599ab244b0a9da4.tar.gz gentoo-2-9099ce9bdeb8536a8b2204886599ab244b0a9da4.tar.bz2 gentoo-2-9099ce9bdeb8536a8b2204886599ab244b0a9da4.zip |
repoman fixes
Diffstat (limited to 'dev-libs/fftw')
-rw-r--r-- | dev-libs/fftw/fftw-2.1.3.ebuild | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/dev-libs/fftw/fftw-2.1.3.ebuild b/dev-libs/fftw/fftw-2.1.3.ebuild index dac83e193166..404796dc17a6 100644 --- a/dev-libs/fftw/fftw-2.1.3.ebuild +++ b/dev-libs/fftw/fftw-2.1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.3.ebuild,v 1.4 2002/07/11 06:30:20 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.3.ebuild,v 1.5 2002/08/01 12:37:33 seemant Exp $ S="${WORKDIR}/${P}" @@ -9,10 +9,13 @@ DESCRIPTION="C subroutine library for computing the Discrete Fourier Transform ( SRC_URI="http://www.fftw.org/${P}.tar.gz" HOMEPAGE="http://www.fftw.org" -DEPEND="mpi? ( >=lam-6.5.6 )" -#will just leave this as a dependency on mpi for now until I test if lam does not brake anything on uniproc systems. +SLOT="2.1" +LICENSE="GPL-2" +KEYWORDS="x86" + -RDEPEND="${DEPEND}" +DEPEND="mpi? ( >=dev-libs/lam-mpi-6.5.6 )" +#will just leave this as a dependency on mpi for now until I test if lam does not brake anything on uniproc systems. src_unpack() { #doc suggests installing single and double precision versions via separate compilations @@ -26,8 +29,6 @@ src_unpack() { unpack "${P}.tar.gz" cd "${WORKDIR}" mv ${P} ${P}-double - - cd "${S}" } @@ -43,26 +44,25 @@ src_compile() { #it might be needed if it is decided that lam is an optional dependence cd "${S}-single" - ./configure \ - --host=${CHOST} ${myconf} \ - --prefix=/usr \ - --enable-shared --enable-threads \ - --enable-type-prefix --enable-float \ - --enable-i386-hacks --enable-vec-recurse \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" + econf \ + --enable-shared \ + --enable-threads \ + --enable-type-prefix \ + --enable-float \ + --enable-i386-hacks \ + --enable-vec-recurse \ + ${myconf} || die "./configure failed" emake || die #the only difference here is no --enable-float cd "${S}-double" - ./configure \ - --host=${CHOST} ${myconf} \ - --prefix=/usr \ - --enable-shared --enable-threads \ + econf \ + --enable-shared \ + --enable-threads \ --enable-type-prefix \ - --enable-i386-hacks --enable-vec-recurse \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" + --enable-i386-hacks \ + --enable-vec-recurse \ + ${myconf} || die "./configure failed" emake || die } |