# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit distutils DESCRIPTION="Scientific data visualizer" HOMEPAGE="http://mayavi.sourceforge.net" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" IUSE="tcltk" DEPEND=">=dev-lang/python-2.0 >=dev-lang/tcl-8.2.3" RDEPEND="dev-libs/vtk" SRC_URI="http://download.sourceforge.net/mayavi/MayaVi-1.4.tar.gz" src_compile() { if use tcltk; then cd ${WORKDIR}/MayaVi-1.4 distutils_src_compile || die "src compile failed" else eerror "Use flag tcltk not enabled" die "Recompile python with tcltk" fi } src_install() { cd ${WORKDIR}/MayaVi-1.4 distutils_src_install }