summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus D. Hanwell <cryos@gentoo.org>2007-02-13 13:00:46 +0000
committerMarcus D. Hanwell <cryos@gentoo.org>2007-02-13 13:00:46 +0000
commit558b9d99469c8d12b6fcfce90b543ea3871715d5 (patch)
tree56819ea695ab4c26e4197334e09627ad0371192d /sci-visualization/grace
parentAdd ~amd64 wrt bug #166302. (diff)
downloadgentoo-2-558b9d99469c8d12b6fcfce90b543ea3871715d5.tar.gz
gentoo-2-558b9d99469c8d12b6fcfce90b543ea3871715d5.tar.bz2
gentoo-2-558b9d99469c8d12b6fcfce90b543ea3871715d5.zip
Stable on amd64, removed old version.
(Portage version: 2.1.2-r9)
Diffstat (limited to 'sci-visualization/grace')
-rw-r--r--sci-visualization/grace/ChangeLog8
-rw-r--r--sci-visualization/grace/files/digest-grace-5.1.183
-rw-r--r--sci-visualization/grace/grace-5.1.18.ebuild117
-rw-r--r--sci-visualization/grace/grace-5.1.19.ebuild6
4 files changed, 9 insertions, 125 deletions
diff --git a/sci-visualization/grace/ChangeLog b/sci-visualization/grace/ChangeLog
index df1f437c68b1..00dee86ee113 100644
--- a/sci-visualization/grace/ChangeLog
+++ b/sci-visualization/grace/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-visualization/grace
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/grace/ChangeLog,v 1.11 2006/10/01 17:44:35 dberkholz Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/grace/ChangeLog,v 1.12 2007/02/13 13:00:46 cryos Exp $
+
+ 13 Feb 2007; Marcus D. Hanwell <cryos@gentoo.org> -grace-5.1.18.ebuild,
+ grace-5.1.19.ebuild:
+ Stable on amd64, removed old version.
01 Oct 2006; Donnie Berkholz <dberkholz@gentoo.org>; metadata.xml:
Reorder herds so sci is first, since that's who has been maintaining it
diff --git a/sci-visualization/grace/files/digest-grace-5.1.18 b/sci-visualization/grace/files/digest-grace-5.1.18
deleted file mode 100644
index c82f553a32a9..000000000000
--- a/sci-visualization/grace/files/digest-grace-5.1.18
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 9f27cc76563d6fa1746333044a7c2a94 grace-5.1.18.tar.gz 2398365
-RMD160 9887349cebccff576a7f5df7f459774aa29a3566 grace-5.1.18.tar.gz 2398365
-SHA256 14608553b4462ddd626b320825fc1d21d5e4416ada3a14e6282e695f87d3a226 grace-5.1.18.tar.gz 2398365
diff --git a/sci-visualization/grace/grace-5.1.18.ebuild b/sci-visualization/grace/grace-5.1.18.ebuild
deleted file mode 100644
index f8a888af27de..000000000000
--- a/sci-visualization/grace/grace-5.1.18.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/grace/grace-5.1.18.ebuild,v 1.2 2006/02/23 23:20:03 spyderous Exp $
-
-inherit eutils
-
-DESCRIPTION="WYSIWYG 2D plotting tool for the X Window System"
-HOMEPAGE="http://plasma-gate.weizmann.ac.il/Grace/"
-SRC_URI="ftp://plasma-gate.weizmann.ac.il/pub/grace/src/stable/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE="debug png jpeg pdf fftw netcdf"
-
-DEPEND="x11-libs/openmotif
- >=sys-libs/zlib-1.0.3
- >=media-libs/t1lib-1.3.1
- >=media-libs/tiff-3.5
- fftw? ( =sci-libs/fftw-2* )
- netcdf? ( >=sci-libs/netcdf-3.0 )
- png? ( >=media-libs/libpng-0.9.6 )
- jpeg? ( media-libs/jpeg )
- pdf? ( >=media-libs/pdflib-4.0.3 )
- >=sys-apps/sed-4"
-# x11-libs/xmhtml
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- epatch ${FILESDIR}/${PN}-helpviewer-gentoo.diff
-}
-
-src_compile() {
-
- local gracehelpviewer
-
- if has_version 'www-client/dillo' ; then
- gracehelpviewer="dillo"
- elif has_version 'www-client/opera' ; then
- gracehelpviewer="opera"
- elif has_version 'net-www/mozilla-firebird' \
- || has_version 'net-www/mozilla-firebird-bin' \
- || has_version 'net-www/mozilla-firebird-cvs' ; then
- gracehelpviewer="MozillaFirebird"
- elif has_version 'www-client/mozilla' ; then
- gracehelpviewer="mozilla"
- elif has_version 'kde-base/kdebase' ; then
- gracehelpviewer="konqueror"
- elif has_version 'www-client/galeon' ; then
- gracehelpviewer="galeon"
- elif has_version 'www-client/epiphany' ; then
- gracehelpviewer="epiphany"
- else
- gracehelpviewer="netscape"
- fi
-
- sed -i -e "s%doc/%/usr/share/doc/${PF}/html/%g" src/*
- sed -i -e "s%examples/%/usr/share/doc/${PF}/examples/%g" src/xmgrace.c
-
- econf \
- --enable-grace-home=/usr/share/grace \
- --with-helpviewer=${gracehelpviewer} \
- `use_with fftw` \
- `use_enable netcdf` \
- `use_enable debug` \
- `use_enable jpeg jpegdrv` \
- `use_enable png pngdrv` \
- `use_enable pdf pdfdrv` || die
- # --enable-xmhtml
-
- cp doc/Makefile doc/Makefile.orig
- sed -e 's:$(GRACE_HOME)/doc:$(PREFIX)/share/doc/$(PF)/html:g' \
- doc/Makefile.orig >doc/Makefile || die
-
- cp auxiliary/Makefile auxiliary/Makefile.orig
- sed -e 's:$(GRACE_HOME)/bin:$(PREFIX)/bin:g' \
- auxiliary/Makefile.orig >auxiliary/Makefile || die
-
- cp grconvert/Makefile grconvert/Makefile.orig
- sed -e 's:$(GRACE_HOME)/bin:$(PREFIX)/bin:g' \
- grconvert/Makefile.orig >grconvert/Makefile || die
-
- cp src/Makefile src/Makefile.orig
- sed -e 's:$(GRACE_HOME)/bin:$(PREFIX)/bin:g' \
- src/Makefile.orig >src/Makefile || die
-
- cp grace_np/Makefile grace_np/Makefile.orig
- sed -e 's:$(GRACE_HOME)/lib:$(PREFIX)/lib:g' \
- -e 's:$(GRACE_HOME)/include:$(PREFIX)/include:g' \
- grace_np/Makefile.orig >grace_np/Makefile || die
-
- cp examples/Makefile examples/Makefile.orig
- sed -e 's:/examples:/share/doc/$(PF)/examples:g' \
- -e 's:$(GRACE_HOME):$(PREFIX):g' \
- examples/Makefile.orig >examples/Makefile || die
-
- make || die
-}
-
-src_install() {
-
- make \
- GRACE_HOME=${D}/usr/share/grace \
- PREFIX=${D}/usr \
- install || die
-
- dodoc CHANGES COPYRIGHT ChangeLog DEVELOPERS LICENSE README
-
- #dodir /usr/share/man/man1
- #mv ${D}/usr/share/doc/${PF}/html/*.1 ${D}/usr/share/man/man1
- doman ${D}/usr/share/doc/${PF}/html/*.1
- rm -f ${D}/usr/share/doc/${PF}/html/*.1
-
- dosym /usr/share/doc/${PF}/examples /usr/share/grace/examples
-}
diff --git a/sci-visualization/grace/grace-5.1.19.ebuild b/sci-visualization/grace/grace-5.1.19.ebuild
index da0621cdca99..eabed3052352 100644
--- a/sci-visualization/grace/grace-5.1.19.ebuild
+++ b/sci-visualization/grace/grace-5.1.19.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/grace/grace-5.1.19.ebuild,v 1.4 2006/08/12 22:22:12 weeve Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/grace/grace-5.1.19.ebuild,v 1.5 2007/02/13 13:00:46 cryos Exp $
inherit eutils
@@ -10,7 +10,7 @@ SRC_URI="ftp://plasma-gate.weizmann.ac.il/pub/grace/src/stable/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ppc sparc x86"
+KEYWORDS="amd64 ppc sparc x86"
IUSE="debug png jpeg pdf fftw netcdf"
DEPEND="x11-libs/openmotif