blob: 249bd89e8b6aecdccee6e2694b80a1d852cdddd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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.3 2002/10/20 18:40:37 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="3dimensional weather modeling software"
SRC_URI="mirror://sourceforge/vis5d/${P}.tar.gz"
HOMEPAGE="http://vis5d.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
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
dodoc README NEWS INSTALL ChangeLog COPYING PORTING \
AUTHORS ABOUT-NLS
}
|