diff options
Diffstat (limited to 'app-sci/nco/nco-2.2.0.ebuild')
-rw-r--r-- | app-sci/nco/nco-2.2.0.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app-sci/nco/nco-2.2.0.ebuild b/app-sci/nco/nco-2.2.0.ebuild new file mode 100644 index 000000000000..b6c4a49b3bdc --- /dev/null +++ b/app-sci/nco/nco-2.2.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/nco-2.2.0.ebuild,v 1.1 2003/01/06 04:51:47 george Exp $ + +IUSE="" + +DESCRIPTION="Command line utilities for operating on netCDF files" +SRC_URI="http://telia.dl.sourceforge.net/sourceforge/nco/${P}.tar.gz" +HOMEPAGE="http://nco.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="app-sci/netcdf" + +src_compile() { + mkdir -p obj + cd bld + emake || die +} + +src_install() { + dobin bin/* + dolib lib/* + dodoc doc/* +} |