diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-05 10:10:18 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-05 10:10:18 +0000 |
commit | 2723e49ed40b4c61bfca09aa11e7a6cd9e382972 (patch) | |
tree | 8467a5b2c0361ae4e2e3ebb661ffd231d4a881f6 /app-sci/nco | |
parent | initial commit (Manifest recommit) (diff) | |
download | gentoo-2-2723e49ed40b4c61bfca09aa11e7a6cd9e382972.tar.gz gentoo-2-2723e49ed40b4c61bfca09aa11e7a6cd9e382972.tar.bz2 gentoo-2-2723e49ed40b4c61bfca09aa11e7a6cd9e382972.zip |
version bump
Diffstat (limited to 'app-sci/nco')
-rw-r--r-- | app-sci/nco/ChangeLog | 9 | ||||
-rw-r--r-- | app-sci/nco/Manifest | 2 | ||||
-rw-r--r-- | app-sci/nco/files/digest-nco-2.9.1 | 1 | ||||
-rw-r--r-- | app-sci/nco/nco-2.9.1.ebuild | 33 |
4 files changed, 43 insertions, 2 deletions
diff --git a/app-sci/nco/ChangeLog b/app-sci/nco/ChangeLog index 297db63add42..46a60869a590 100644 --- a/app-sci/nco/ChangeLog +++ b/app-sci/nco/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-sci/nco -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/ChangeLog,v 1.3 2003/03/11 06:29:26 george Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/ChangeLog,v 1.4 2004/03/05 10:10:18 phosphan Exp $ + +*nco-2.9.1 (05 Mar 2004) + + 05 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> nco-2.9.1.ebuild: + New version, tarball packaged from CVS. *nco-2.7.1 (10 mar 2003) diff --git a/app-sci/nco/Manifest b/app-sci/nco/Manifest index 1c83997194b6..81de342ca82e 100644 --- a/app-sci/nco/Manifest +++ b/app-sci/nco/Manifest @@ -1,6 +1,8 @@ MD5 8a53b1d437a805926cf1acdbf5ba515a nco-2.7.1.ebuild 702 MD5 f8937a452ebdcc6dcaab6bcd47cbdfae nco-2.2.0.ebuild 582 +MD5 91f63c2f7c134879bbb52abe95803702 nco-2.9.1.ebuild 672 MD5 6d6739b2c66c44e50d69d77d20da2ea9 ChangeLog 653 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 8b8fada579ac75153a5e3a3339d294db files/digest-nco-2.2.0 61 MD5 16bb63404b630464bf4ca80d03b822a2 files/digest-nco-2.7.1 61 +MD5 1a80d642c58e5b7b3d56b69b5b1465e6 files/digest-nco-2.9.1 62 diff --git a/app-sci/nco/files/digest-nco-2.9.1 b/app-sci/nco/files/digest-nco-2.9.1 new file mode 100644 index 000000000000..678c5c8ab1f9 --- /dev/null +++ b/app-sci/nco/files/digest-nco-2.9.1 @@ -0,0 +1 @@ +MD5 abaa5ce366c8e1ca38e0a5e984be3851 nco-2.9.1.tar.bz2 650696 diff --git a/app-sci/nco/nco-2.9.1.ebuild b/app-sci/nco/nco-2.9.1.ebuild new file mode 100644 index 000000000000..1caf6ed0addf --- /dev/null +++ b/app-sci/nco/nco-2.9.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/nco-2.9.1.ebuild,v 1.1 2004/03/05 10:10:18 phosphan 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 + 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* +} |