blob: 23b965c8532c5abba36f00766a37f15f27683bab (
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
38
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-1.17-r1.ebuild,v 1.6 2004/02/26 19:27:33 bazik Exp $
#goofy tarball versioning
vmaj=${PV%%.*}
vmin=${PV##*.}
inherit distutils
S=${WORKDIR}/${PN}
DESCRIPTION="Tools for generating printable PDF documents from any data source."
SRC_URI="http://www.reportlab.com/ftp/ReportLab_${vmaj}_${vmin}.tgz"
HOMEPAGE="http://www.reportlab.com/"
DEPEND="virtual/python
>=sys-libs/zlib-0.95
dev-python/Imaging
>=sys-apps/sed-4"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ~ppc sparc ~alpha"
src_install() {
distutils_python_version
distutils_src_install
# crube hack to fix data files in the right dir
cd ${D}/usr/lib/python${PYVER}
tar -cv reportlab | tar -C ${D}/usr/lib/python${PYVER}/site-packages -x
rm -rf ${D}/usr/lib/python${PYVER}/reportlab
# docs
cd ${S}
dodoc README license.txt
insinto /usr/share/doc/${PF}
doins docs/*
}
|