blob: 1795089cda54a04c085faca48aa36229d21c91e7 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-1.20.ebuild,v 1.4 2005/08/26 03:44:47 agriffis Exp $
#goofy tarball versioning
vmaj=${PV%%.*}
vmin=${PV##*.}
inherit python distutils
S=${WORKDIR}/${PN}
DESCRIPTION="Tools for generating printable PDF documents from any data source."
SRC_URI="http://www.reportlab.org/ftp/ReportLab_${vmaj}_${vmin}.tgz"
HOMEPAGE="http://www.reportlab.org/"
DEPEND=">=sys-libs/zlib-0.95
dev-python/imaging
>=sys-apps/sed-4
app-arch/tar"
IUSE=""
SLOT="0"
LICENSE="as-is"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ppc64 ~sparc ~x86"
src_unpack() {
unpack ${A} || die
cd ${WORKDIR}
mv ${PN}_${vmaj}_${vmin}/${PN} . || die
cd ${S}
}
src_install() {
python_version
distutils_src_install
# crude 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/*
}
pkg_postinst() {
ewarn "There's a known bug with Verdana fonts inclusion."
ewarn " Don't use them: this will be fixed in the next version."
ewarn ""
}
|