summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-02-01 01:56:18 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-02-01 01:56:18 +0000
commitd94314e61e591366f851abf157cc3cb4176443f8 (patch)
treea831fe931d1c446eedd67b8725d7d6717383ddb2 /sci-visualization
parentUpdate EAPI. Fix dependencies. Use DISTUTILS_SRC_TEST. Update HOMEPAGE. (diff)
downloadgentoo-2-d94314e61e591366f851abf157cc3cb4176443f8.tar.gz
gentoo-2-d94314e61e591366f851abf157cc3cb4176443f8.tar.bz2
gentoo-2-d94314e61e591366f851abf157cc3cb4176443f8.zip
Delete older ebuild.
(Portage version: 2.2.0_alpha19_p52/cvs/Linux x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/mayavi/ChangeLog6
-rw-r--r--sci-visualization/mayavi/files/mayavi-1.5-tkinter_objects.patch15
-rw-r--r--sci-visualization/mayavi/mayavi-1.5-r1.ebuild57
3 files changed, 5 insertions, 73 deletions
diff --git a/sci-visualization/mayavi/ChangeLog b/sci-visualization/mayavi/ChangeLog
index 9659c6efd8b3..1c25875e6d5c 100644
--- a/sci-visualization/mayavi/ChangeLog
+++ b/sci-visualization/mayavi/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-visualization/mayavi
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/mayavi/ChangeLog,v 1.18 2011/01/30 23:11:22 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/mayavi/ChangeLog,v 1.19 2011/02/01 01:56:18 arfrever Exp $
+
+ 01 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -mayavi-1.5-r1.ebuild, -files/mayavi-1.5-tkinter_objects.patch:
+ Delete.
*mayavi-3.4.1 (30 Jan 2011)
diff --git a/sci-visualization/mayavi/files/mayavi-1.5-tkinter_objects.patch b/sci-visualization/mayavi/files/mayavi-1.5-tkinter_objects.patch
deleted file mode 100644
index f49a3fa03326..000000000000
--- a/sci-visualization/mayavi/files/mayavi-1.5-tkinter_objects.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urN MayaVi-1.5-orig/mayavi MayaVi-1.5/mayavi
---- MayaVi-1.5-orig/mayavi 2009-01-15 15:11:43.000000000 -0800
-+++ MayaVi-1.5/mayavi 2009-01-15 15:13:05.000000000 -0800
-@@ -283,6 +283,11 @@
-
-
- import Tkinter
-+# fix for python>=2.3, see:
-+# http://article.gmane.org/gmane.comp.graphics.mayavi.user/336
-+# http://www.python.org/doc/2.3/whatsnew/node18.html
-+Tkinter.wantobjects = 0
-+
-
- # Import this here to avoid hard-to-debug errors when importing VTK
- # fails from within mayavi.Main.
diff --git a/sci-visualization/mayavi/mayavi-1.5-r1.ebuild b/sci-visualization/mayavi/mayavi-1.5-r1.ebuild
deleted file mode 100644
index 1dee8598b3dc..000000000000
--- a/sci-visualization/mayavi/mayavi-1.5-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/mayavi/mayavi-1.5-r1.ebuild,v 1.5 2010/05/31 07:23:16 jlec Exp $
-
-EAPI="2"
-
-PYTHON_DEPEND="2"
-PYTHON_USE_WITH="tk"
-
-inherit distutils eutils
-
-PYTHON_MODNAME=enthought
-
-MY_P=MayaVi-${PV}
-DESCRIPTION="VTK based scientific data visualizer"
-HOMEPAGE="http://mayavi.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="1"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-DEPEND="
- =sci-libs/vtk-5.4*[tk,python]"
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/mayavi-1.5-tkinter_objects.patch
- distutils_src_prepare
-}
-
-src_install() {
- distutils_src_install
- dodoc doc/{README,CREDITS,NEWS,TODO}.txt
- use doc && dohtml -r doc/guide/*
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples || die
- fi
- make_desktop_entry mayavi "Mayavi1 2D/3D Scientific Visualization"
-}
-
-pkg_postinst() {
- if ! has_version sci-libs/vtk[patented]; then
- elog "Mayavi may require vtk to be built with the 'patent' USE flag"
- elog "to be fully functional"
- fi
-}