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 | 4ffa40048911128cb83c7faf189558fc52527be1 (patch) | |
tree | 5b2c9d55800075dee03af8ea36f54b3135f191b9 /app-sci | |
parent | initial commit (diff) | |
download | historical-4ffa40048911128cb83c7faf189558fc52527be1.tar.gz historical-4ffa40048911128cb83c7faf189558fc52527be1.tar.bz2 historical-4ffa40048911128cb83c7faf189558fc52527be1.zip |
version bump
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/nco/ChangeLog | 9 | ||||
-rw-r--r-- | app-sci/nco/Manifest | 4 | ||||
-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, 44 insertions, 3 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..b866b53c99b0 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 6d6739b2c66c44e50d69d77d20da2ea9 ChangeLog 653 +MD5 f0a019f57eb38c8a96220ed19992224e nco-2.9.1.ebuild 676 +MD5 b6b1264f916367531dd677dd9d4a0ffb ChangeLog 795 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* +} |