summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2004-12-27 21:20:23 +0000
committerOlivier Fisette <ribosome@gentoo.org>2004-12-27 21:20:23 +0000
commit82414379c59609425c1f38bc483ebd48fe41541c (patch)
treefa6715324ba7c25c0288609ca15f3f8fa00ea1c5 /sci-misc/nco/nco-2.9.1.ebuild
parentMoving to sci-misc/nco (diff)
downloadgentoo-2-82414379c59609425c1f38bc483ebd48fe41541c.tar.gz
gentoo-2-82414379c59609425c1f38bc483ebd48fe41541c.tar.bz2
gentoo-2-82414379c59609425c1f38bc483ebd48fe41541c.zip
Moved from app-sci/nco to sci-misc/nco.
Diffstat (limited to 'sci-misc/nco/nco-2.9.1.ebuild')
-rw-r--r--sci-misc/nco/nco-2.9.1.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/sci-misc/nco/nco-2.9.1.ebuild b/sci-misc/nco/nco-2.9.1.ebuild
new file mode 100644
index 000000000000..a107624a2fb7
--- /dev/null
+++ b/sci-misc/nco/nco-2.9.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-2.9.1.ebuild,v 1.1 2004/12/27 21:20:23 ribosome Exp $
+
+IUSE=""
+
+DESCRIPTION="Command line utilities for operating on netCDF files"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+HOMEPAGE="http://nco.sourceforge.net/"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="app-sci/netcdf"
+
+src_compile() {
+ econf || die "econf failed"
+ emake
+
+ #need to make info
+ cd doc
+ make
+}
+
+src_install() {
+ DESTDIR=${D} make install
+
+ cd doc
+ dodoc ANNOUNCE ChangeLog LICENSE MANIFEST NEWS README TAG TODO VERSION *.txt
+ dohtml *.shtml
+ doinfo *.info*
+}