summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-30 23:40:28 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-30 23:40:28 +0000
commitd9468aab2e60b0579d00561510743296a0159db0 (patch)
treec3bbb968a06c70ed96c22cbbea12376f5ea1face /app-sci
parentChanged unpack||die to unpack (diff)
downloadhistorical-d9468aab2e60b0579d00561510743296a0159db0.tar.gz
historical-d9468aab2e60b0579d00561510743296a0159db0.tar.bz2
historical-d9468aab2e60b0579d00561510743296a0159db0.zip
Changed econf||die to econf
Diffstat (limited to 'app-sci')
-rw-r--r--app-sci/netcdf/netcdf-3.5.0-r1.ebuild12
1 files changed, 5 insertions, 7 deletions
diff --git a/app-sci/netcdf/netcdf-3.5.0-r1.ebuild b/app-sci/netcdf/netcdf-3.5.0-r1.ebuild
index ab0c966affe8..8f802c919780 100644
--- a/app-sci/netcdf/netcdf-3.5.0-r1.ebuild
+++ b/app-sci/netcdf/netcdf-3.5.0-r1.ebuild
@@ -1,8 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/netcdf/netcdf-3.5.0-r1.ebuild,v 1.6 2002/10/04 05:00:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/netcdf/netcdf-3.5.0-r1.ebuild,v 1.7 2002/11/30 23:40:28 vapier Exp $
-S=${WORKDIR}/${P}/src
DESCRIPTION="Interface for array oriented data access"
SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.Z"
HOMEPAGE="http://www.unidaa.ucar.edu/packages/netcdf/"
@@ -11,19 +10,18 @@ LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
+S=${WORKDIR}/${P}/src
+
src_compile() {
export CPPFLAGS=-Df2cFortran
- econf || die
+ econf
make || die
make test || die
}
src_install() {
dodir /usr/{lib,share}
-
- einstall \
- MANDIR=${D}/usr/share/man || die
-
+ einstall MANDIR=${D}/usr/share/man
dodoc COMPATIBILITY COPYRIGHT MANIFEST README RELEASE_NOTES VERSION
dohtml -r .
}