blob: 439ac7606c61d33950c9a3213d2a2bd30ce94234 (
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
|
# Copyright 1999-2006 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.7.ebuild,v 1.6 2006/05/26 21:37:54 kugelfang Exp $
inherit distutils
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 ppc s390 x86"
IUSE=""
DEPEND="virtual/python
sci-visualization/gnuplot
dev-python/numeric"
src_install() {
distutils_src_install
dohtml doc/Gnuplot/*
insinto /usr/share/doc/${PF}
doins demo.py
}
|