diff options
author | George Shapovalov <george@gentoo.org> | 2003-03-11 06:29:26 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-03-11 06:29:26 +0000 |
commit | 656efdf2d1d3c2cd758cdc85b63ed73aabe58aff (patch) | |
tree | 0ce980254706b0ca331d5ba375ca40361b5889a0 /app-sci/nco | |
parent | use epatch instead (diff) | |
download | historical-656efdf2d1d3c2cd758cdc85b63ed73aabe58aff.tar.gz historical-656efdf2d1d3c2cd758cdc85b63ed73aabe58aff.tar.bz2 historical-656efdf2d1d3c2cd758cdc85b63ed73aabe58aff.zip |
new version, supports standard configure; make; make install stuff now..
Diffstat (limited to 'app-sci/nco')
-rw-r--r-- | app-sci/nco/ChangeLog | 9 | ||||
-rw-r--r-- | app-sci/nco/files/digest-nco-2.7.1 | 1 | ||||
-rw-r--r-- | app-sci/nco/nco-2.7.1.ebuild | 33 |
3 files changed, 41 insertions, 2 deletions
diff --git a/app-sci/nco/ChangeLog b/app-sci/nco/ChangeLog index bd379120a09e..297db63add42 100644 --- a/app-sci/nco/ChangeLog +++ b/app-sci/nco/ChangeLog @@ -1,8 +1,13 @@ # 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.2 2003/02/12 05:18:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/ChangeLog,v 1.3 2003/03/11 06:29:26 george Exp $ -*nco-2.2.0.ebuild (05 Jan 2003) +*nco-2.7.1 (10 mar 2003) + + 10 Mar 2003; George Shapovalov <george@gentoo.org> nco-2.7.1.ebuild files/digest-nco-2.7.1 : + new version. Now supports standard way of building.. + +*nco-2.2.0 (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 diff --git a/app-sci/nco/files/digest-nco-2.7.1 b/app-sci/nco/files/digest-nco-2.7.1 new file mode 100644 index 000000000000..1919b1394ab5 --- /dev/null +++ b/app-sci/nco/files/digest-nco-2.7.1 @@ -0,0 +1 @@ +MD5 ea150e0d2336c4d459d47b041c944104 nco-2.7.1.tar.gz 675567 diff --git a/app-sci/nco/nco-2.7.1.ebuild b/app-sci/nco/nco-2.7.1.ebuild new file mode 100644 index 000000000000..b8dbc95a4f92 --- /dev/null +++ b/app-sci/nco/nco-2.7.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/nco-2.7.1.ebuild,v 1.1 2003/03/11 06:29:26 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() { + 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* +} |