blob: 99b51bbf9f0b5a1a4543954df0538cd9a9795551 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/pychart-1.33.ebuild,v 1.3 2003/12/09 18:06:29 lanius Exp $
inherit distutils
MY_P=${P/pychart/PyChart}
DESCRIPTION="Python library for creating charts"
HOMEPAGE="http://www.hpl.hp.com/personal/Yasushi_Saito/pychart/"
SRC_URI="http://www.hpl.hp.com/personal/Yasushi_Saito/pychart/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lang/python
>=sys-apps/sed-4
virtual/ghostscript"
S=${WORKDIR}/${MY_P}
DOCS="README.txt"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s/unevenbars.py//" demos/Makefile || die "sed failed on Makefile"
}
src_install() {
distutils_src_install
dohtml doc/pychart/*
insinto /usr/share/doc/${PF}/demos
doins demos/*
}
|