blob: d041dbb0c4866e40b87a271dc30eaff02e2badce (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/pychart-1.37.ebuild,v 1.1 2005/04/18 16:51:02 pythonhead Exp $
inherit distutils
MY_P=${P/pychart/PyChart}
DESCRIPTION="Python library for creating charts"
HOMEPAGE="http://home.gna.org/pychart/"
SRC_URI="http://download.gna.org/pychart/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=">=dev-lang/python-2.2.2
>=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/*
}
|