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 | |
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')
-rw-r--r-- | app-sci/vis5d+/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/vis5d+/vis5d+-1.2.1.ebuild | 22 |
2 files changed, 10 insertions, 17 deletions
diff --git a/app-sci/vis5d+/ChangeLog b/app-sci/vis5d+/ChangeLog index 28c47083f82c..8bd619359add 100644 --- a/app-sci/vis5d+/ChangeLog +++ b/app-sci/vis5d+/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/vis5d+ # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/vis5d+/ChangeLog,v 1.4 2004/02/06 15:50:15 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/vis5d+/ChangeLog,v 1.5 2004/06/16 04:56:58 mr_bones_ Exp $ + + 15 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> vis5d+-1.2.1.ebuild: + don't assign default to S; IUSE; PROVIDE is for virtuals; tidy *vis5d+-1.2.1 (26 July 2002) 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 } |