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
commit4e6fbcdf6887ff62500ee31e55efcd712750bd8e (patch)
tree22ab0a6d03f2770e05427911b1d00e9df0c99194 /app-sci/nco
parentnew package - X based viewer for netCDF files (diff)
downloadhistorical-4e6fbcdf6887ff62500ee31e55efcd712750bd8e.tar.gz
historical-4e6fbcdf6887ff62500ee31e55efcd712750bd8e.tar.bz2
historical-4e6fbcdf6887ff62500ee31e55efcd712750bd8e.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/*
+}