blob: 8ae938f86bb863bfcccf355f65a3dc0398817651 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.71.ebuild,v 1.2 2005/02/11 22:05:23 kloeri Exp $
inherit distutils virtualx
DESCRIPTION="matplotlib is a pure python plotting library designed to bring publication quality plotting to python with a syntax familiar to matlab users."
HOMEPAGE="http://matplotlib.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
IUSE="doc gtk"
SLOT="0"
KEYWORDS="~x86"
LICENSE="as-is"
DEPEND="virtual/python
>=dev-python/numeric-22
gtk? ( >=dev-python/pygtk-1.99.16 )"
src_compile() {
export maketype="distutils_src_compile"
virtualmake "$*"
}
src_install() {
export maketype="distutils_src_install"
virtualmake "$*"
distutils_python_version
if use doc ; then
insinto /usr/share/doc/${PF}/examples
doins examples/*.py examples/README
insinfo /usr/share/doc/${PF}/examples/data
doins examples/data/*.dat
fi
}
|