diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-16 04:56:58 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-16 04:56:58 +0000 |
commit | e6a7edbc835b5385a39fe442d9119ed4ba02627a (patch) | |
tree | f6282c4bf45c352c399de2236a80f5fd1092282a /app-sci/vis5d+/vis5d+-1.2.1.ebuild | |
parent | PROVIDE is for virtuals (Manifest recommit) (diff) | |
download | gentoo-2-e6a7edbc835b5385a39fe442d9119ed4ba02627a.tar.gz gentoo-2-e6a7edbc835b5385a39fe442d9119ed4ba02627a.tar.bz2 gentoo-2-e6a7edbc835b5385a39fe442d9119ed4ba02627a.zip |
don't assign default to S; IUSE; PROVIDE is for virtuals; tidy
Diffstat (limited to 'app-sci/vis5d+/vis5d+-1.2.1.ebuild')
-rw-r--r-- | app-sci/vis5d+/vis5d+-1.2.1.ebuild | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/app-sci/vis5d+/vis5d+-1.2.1.ebuild b/app-sci/vis5d+/vis5d+-1.2.1.ebuild index d9771cf033dc..08435097cf1c 100644 --- a/app-sci/vis5d+/vis5d+-1.2.1.ebuild +++ b/app-sci/vis5d+/vis5d+-1.2.1.ebuild @@ -1,40 +1,30 @@ -# 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/app-sci/vis5d+/vis5d+-1.2.1.ebuild,v 1.6 2004/02/06 15:47:21 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/vis5d+/vis5d+-1.2.1.ebuild,v 1.7 2004/06/16 04:56:58 mr_bones_ Exp $ -S=${WORKDIR}/${P} DESCRIPTION="3dimensional weather modeling software" - -SRC_URI="mirror://sourceforge/vis5d/${P}.tar.gz" - HOMEPAGE="http://vis5d.sourceforge.net" +SRC_URI="mirror://sourceforge/vis5d/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~amd64" +IUSE="" DEPEND=">=app-sci/netcdf-3.5.0" -PROVIDE="app-sci/vis5d+" - src_compile() { - ./configure \ --host=${CHOST} \ --prefix=/usr \ --without-mixkit \ --enable-threads || die "./configure failed" - emake || die "emake failed" } src_install () { + make DESTDIR="${D}" install || die "make install failed" - make DESTDIR=${D} install || die - - dodoc README NEWS INSTALL ChangeLog COPYING PORTING \ - AUTHORS ABOUT-NLS - - + dodoc README NEWS INSTALL ChangeLog PORTING AUTHORS ABOUT-NLS } |