blob: 87ca4e8464afa2895884214a7482ff621d42957a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gnuplot-py/gnuplot-py-1.8.ebuild,v 1.7 2009/03/02 16:40:03 ranger Exp $
EAPI=2
inherit distutils eutils
DESCRIPTION="A python wrapper for Gnuplot"
HOMEPAGE="http://gnuplot-py.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ppc64 s390 sparc x86 ~x86-fbsd"
IUSE="doc"
DEPEND="dev-python/numpy"
RDEPEND="${DEPEND}
sci-visualization/gnuplot"
PYTHON_MODNAME="Gnuplot"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.7-mousesupport.patch
}
src_install() {
distutils_src_install
dodoc ANNOUNCE.txt CREDITS.txt NEWS.txt TODO.txt FAQ.txt
dodir /usr/share/doc/${PF}/examples
mv "${D}"/usr/$(get_libdir)/python*/site-packages/Gnuplot/{test,demo}.py \
"${D}"/usr/share/doc/${PF}/examples || die
if use doc; then
insinto /usr/share/doc/${PF}/html
doins -r doc/Gnuplot/* || die "doc install failed"
fi
}
|