diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-01-18 08:27:30 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-01-18 08:27:30 +0000 |
commit | f7b1418747130129d6f046e8dc60e60c98011e5f (patch) | |
tree | 9633e336911b31ae2757d07423fb218bca7c0a14 /sci-misc | |
parent | First new release in ages -- conversion to gtk+-2 and autotools. (diff) | |
download | gentoo-2-f7b1418747130129d6f046e8dc60e60c98011e5f.tar.gz gentoo-2-f7b1418747130129d6f046e8dc60e60c98011e5f.tar.bz2 gentoo-2-f7b1418747130129d6f046e8dc60e60c98011e5f.zip |
Fixes some coredumps.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/ncview/ChangeLog | 9 | ||||
-rw-r--r-- | sci-misc/ncview/files/digest-ncview-1.92e | 1 | ||||
-rw-r--r-- | sci-misc/ncview/ncview-1.92e.ebuild | 35 |
3 files changed, 43 insertions, 2 deletions
diff --git a/sci-misc/ncview/ChangeLog b/sci-misc/ncview/ChangeLog index 32f6470e89ca..59566fe3da7c 100644 --- a/sci-misc/ncview/ChangeLog +++ b/sci-misc/ncview/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-misc/ncview -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/ncview/ChangeLog,v 1.3 2005/05/06 21:32:50 dholm Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/ncview/ChangeLog,v 1.4 2006/01/18 08:27:30 spyderous Exp $ + +*ncview-1.92e (18 Jan 2006) + + 18 Jan 2006; Donnie Berkholz <spyderous@gentoo.org>; +ncview-1.92e.ebuild: + Fixes some coredumps. 06 May 2005; David Holm <dholm@gentoo.org> ncview-1.92d.ebuild: Added to ~ppc. diff --git a/sci-misc/ncview/files/digest-ncview-1.92e b/sci-misc/ncview/files/digest-ncview-1.92e new file mode 100644 index 000000000000..2bc30761af60 --- /dev/null +++ b/sci-misc/ncview/files/digest-ncview-1.92e @@ -0,0 +1 @@ +MD5 37b9566e6ece132c9e578e69db0cdf7d ncview-1.92e.tar.gz 879600 diff --git a/sci-misc/ncview/ncview-1.92e.ebuild b/sci-misc/ncview/ncview-1.92e.ebuild new file mode 100644 index 000000000000..ba778ff84dec --- /dev/null +++ b/sci-misc/ncview/ncview-1.92e.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/ncview/ncview-1.92e.ebuild,v 1.1 2006/01/18 08:27:30 spyderous Exp $ + +DESCRIPTION="X-based viewer for netCDF files" +SRC_URI="ftp://cirrus.ucsd.edu/pub/ncview/${P}.tar.gz" +HOMEPAGE="http://meteora.ucsd.edu/~pierce/ncview_home_page.html" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~x86 ~amd64 ~ppc" + +DEPEND="sci-libs/netcdf + || ( x11-libs/libXaw virtual/x11 )" + +src_compile() { + econf || die "./configure failed" + emake || die +} + +src_install() { +# dodir /lib/ncview + dobin ncview + doman ncview.1 + insinto /usr/lib/ncview + doins 3gauss.ncmap 3saw.ncmap default.ncmap \ + detail.ncmap hotres.ncmap \ + nc_overlay.earth.lat-lon.p8deg \ + nc_overlay.lat-lon-grid.20x60 \ + nc_overlay.lat-lon-grid.10x30 + insinto /usr/lib/X11/app-defaults + newins Ncview-appdefaults Ncview + dodoc README +} |