summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2003-01-06 04:51:47 +0000
committerGeorge Shapovalov <george@gentoo.org>2003-01-06 04:51:47 +0000
commite002e66bce0a17071159a39becc709c003323584 (patch)
tree0b4380a45c9fee4a6e71b01a699041f315323bf8 /app-sci/nco
parentnew package - X based viewer for netCDF files (diff)
downloadgentoo-2-e002e66bce0a17071159a39becc709c003323584.tar.gz
gentoo-2-e002e66bce0a17071159a39becc709c003323584.tar.bz2
gentoo-2-e002e66bce0a17071159a39becc709c003323584.zip
new package - a suite of programs that operate on netCDF files.
Diffstat (limited to 'app-sci/nco')
-rw-r--r--app-sci/nco/ChangeLog9
-rw-r--r--app-sci/nco/files/digest-nco-2.2.01
-rw-r--r--app-sci/nco/nco-2.2.0.ebuild27
3 files changed, 37 insertions, 0 deletions
diff --git a/app-sci/nco/ChangeLog b/app-sci/nco/ChangeLog
new file mode 100644
index 000000000000..7c7de083edda
--- /dev/null
+++ b/app-sci/nco/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-sci/nco
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/ChangeLog,v 1.1 2003/01/06 04:51:47 george Exp $
+
+*nco-2.2.0.ebuild (05 Jan 2003)
+ 05 Jan 2003; George Shapovalov <george@gentoo.org> ChangeLog, nco-2.2.0.ebuild, files/digest-nco-2.2.0 :
+ initial release (#12178)
+ Command line utilities for operating on netCDF files
+ ebuild submitted by Jordan Dawe <freedryk@hotmail.com>
diff --git a/app-sci/nco/files/digest-nco-2.2.0 b/app-sci/nco/files/digest-nco-2.2.0
new file mode 100644
index 000000000000..67243d4d5620
--- /dev/null
+++ b/app-sci/nco/files/digest-nco-2.2.0
@@ -0,0 +1 @@
+MD5 2f3874557a757e8a37c37941e0ee4e25 nco-2.2.0.tar.gz 321466
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/*
+}