diff options
author | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-07-26 20:28:01 +0000 |
---|---|---|
committer | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-07-26 20:28:01 +0000 |
commit | b9241554cf2f2f5ca70a4905d88a4dc5025a381c (patch) | |
tree | e0ab89ef9515bb9981f987a74f1a2a8aed10f81f /app-sci/vis5d+ | |
parent | updated nessus to version 1.2.3 and split package up into separate ebuilds to... (diff) | |
download | gentoo-2-b9241554cf2f2f5ca70a4905d88a4dc5025a381c.tar.gz gentoo-2-b9241554cf2f2f5ca70a4905d88a4dc5025a381c.tar.bz2 gentoo-2-b9241554cf2f2f5ca70a4905d88a4dc5025a381c.zip |
added new ebuild, vis5d+
Diffstat (limited to 'app-sci/vis5d+')
-rw-r--r-- | app-sci/vis5d+/ChangeLog | 9 | ||||
-rw-r--r-- | app-sci/vis5d+/files/digest-vis5d+-1.2.1 | 1 | ||||
-rw-r--r-- | app-sci/vis5d+/vis5d+-1.2.1.ebuild | 41 |
3 files changed, 51 insertions, 0 deletions
diff --git a/app-sci/vis5d+/ChangeLog b/app-sci/vis5d+/ChangeLog new file mode 100644 index 000000000000..1fc2e1b5b831 --- /dev/null +++ b/app-sci/vis5d+/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-sci/vis5d+ +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-sci/vis5d+/ChangeLog,v 1.1 2002/07/26 20:28:01 cybersystem Exp $ + +*vis5d+-1.2.1 (26 July 2002) + + 26 July 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog, vis5d+-1.2.1.ebuild, files/digest-vis5d+-1.2.1 : + + Initial version in Portage now.. diff --git a/app-sci/vis5d+/files/digest-vis5d+-1.2.1 b/app-sci/vis5d+/files/digest-vis5d+-1.2.1 new file mode 100644 index 000000000000..cc3ed554ce8e --- /dev/null +++ b/app-sci/vis5d+/files/digest-vis5d+-1.2.1 @@ -0,0 +1 @@ +MD5 0521694c2210c0aedcf2fde521a2c578 vis5d+-1.2.1.tar.gz 2278840 diff --git a/app-sci/vis5d+/vis5d+-1.2.1.ebuild b/app-sci/vis5d+/vis5d+-1.2.1.ebuild new file mode 100644 index 000000000000..bd4bc722d78a --- /dev/null +++ b/app-sci/vis5d+/vis5d+-1.2.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 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.1 2002/07/26 20:28:01 cybersystem Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="3dimensional weather modeling software" + +SRC_URI="http://unc.dl.sourceforge.net/vis5d/${P}.tar.gz" + +HOMEPAGE="http://vis5d.sourceforge.net" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND=">=app-sci/netcdf-3.5.0" + +RDEPEND="${DEPEND}" +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 + + dodoc README NEWS INSTALL ChangeLog COPYING PORTING \ + AUTHORS ABOUT-NLS + + +} |