blob: a6813c9a4bda64408f50355d93b01884a4b6310e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/mayavi/mayavi-1.5.ebuild,v 1.2 2007/04/27 14:00:05 bicatali Exp $
NEED_PYTHON=2.3
inherit distutils
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"
RESTRICT="test"
S=${WORKDIR}/${MY_P}
pkg_setup() {
python_tkinter_exists
if ! built_with_use sci-libs/vtk tk python; then
eerror "vtk is missing tk or python support."
eerror "Please ensure you have the 'tk' and 'python' USE flags"
eerror "enabled for vtk and then re-emerge vtk."
die "vtk needs tk and python USE flags"
fi
}
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}/examples
doins -r examples/*
fi
}
pkg_postinst() {
if ! built_with_use sci-libs/vtk patented ; then
elog "Mayavi may require vtk to be built with the 'patent' USE flag"
elog "to be fully functional"
fi
}
|