diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-18 14:49:12 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-18 14:49:12 +0000 |
commit | 5f5643757036e2b7d770890c54c31a38ce4ca972 (patch) | |
tree | c947638a3ca1ad311b3f9961b7dcaec054a00c35 /sci-visualization | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-5f5643757036e2b7d770890c54c31a38ce4ca972.tar.gz gentoo-2-5f5643757036e2b7d770890c54c31a38ce4ca972.tar.bz2 gentoo-2-5f5643757036e2b7d770890c54c31a38ce4ca972.zip |
Version bump.
(Portage version: 2.2_rc98/cvs/Linux x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/mayavi/ChangeLog | 8 | ||||
-rw-r--r-- | sci-visualization/mayavi/mayavi-3.4.0.ebuild | 63 |
2 files changed, 70 insertions, 1 deletions
diff --git a/sci-visualization/mayavi/ChangeLog b/sci-visualization/mayavi/ChangeLog index 9ca63e865dbd..5dd5a4ef4206 100644 --- a/sci-visualization/mayavi/ChangeLog +++ b/sci-visualization/mayavi/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-visualization/mayavi # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/mayavi/ChangeLog,v 1.16 2010/05/31 07:23:16 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/mayavi/ChangeLog,v 1.17 2010/10/18 14:49:12 arfrever Exp $ + +*mayavi-3.4.0 (18 Oct 2010) + + 18 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -mayavi-3.3.2.ebuild, +mayavi-3.4.0.ebuild: + Version bump. *mayavi-3.3.2 (31 May 2010) diff --git a/sci-visualization/mayavi/mayavi-3.4.0.ebuild b/sci-visualization/mayavi/mayavi-3.4.0.ebuild new file mode 100644 index 000000000000..cd0c91f215d1 --- /dev/null +++ b/sci-visualization/mayavi/mayavi-3.4.0.ebuild @@ -0,0 +1,63 @@ +# 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-3.4.0.ebuild,v 1.1 2010/10/18 14:49:12 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" + +inherit distutils eutils + +MY_PN="Mayavi" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="VTK based scientific data visualizer" +HOMEPAGE="http://code.enthought.com/projects/mayavi/ http://pypi.python.org/pypi/Mayavi" +SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="2" +KEYWORDS="~amd64 ~x86" +IUSE="doc qt4" + +RDEPEND=">=dev-python/apptools-3.4.0 + dev-python/configobj + >=dev-python/enthoughtbase-3.0.6 + >=dev-python/envisagecore-3.1.3 + >=dev-python/envisageplugins-3.1.3 + dev-python/ipython + dev-python/numpy + >=dev-python/traitsgui-3.5.0[qt4?,wxwidgets] + dev-python/wxpython:2.8[opengl] + >=sci-libs/vtk-5[python] + qt4? ( dev-python/PyQt4[X,opengl] )" +DEPEND="${RDEPEND} + dev-python/setuptools" + +S="${WORKDIR}"/${MY_P} + +PYTHON_MODNAME="enthought" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + distutils_src_prepare + + sed \ + -e "s/self.run_command('build_docs')/pass/" \ + -e "/setupdocs>=1.0/d" \ + -i setup.py || die "sed setup.py failed" +} + +src_install() { + find "${S}" -name "*LICENSE*.txt" -delete + distutils_src_install + dodoc docs/*.txt + if use doc; then + dohtml -A txt,py,inv -r "${WORKDIR}"/html/* + fi + newicon enthought/mayavi/core/ui/images/m2.png mayavi2.png + make_desktop_entry mayavi2 "Mayavi2 2D/3D Scientific Visualization" mayavi2 +} |