blob: 7c6a9344b0e0707e58443811b73c9e9ad726f0d5 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild,v 1.5 2007/07/11 06:19:47 mr_bones_ Exp $
inherit distutils
MY_P=PyChart-${PV}
DESCRIPTION="Python library for creating charts"
HOMEPAGE="http://home.gna.org/pychart/"
SRC_URI="http://download.gna.org/pychart/${MY_P}.tar.gz
doc? ( http://download.gna.org/pychart/${PN}-doc.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE="doc examples"
DEPEND="virtual/ghostscript"
S=${WORKDIR}/${MY_P}
src_install() {
distutils_src_install
if use doc ; then
dohtml -r ${WORKDIR}/${PN}/*
fi
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins demos/*
fi
}
|