diff options
author | Mike Gilbert <floppym@gentoo.org> | 2013-01-22 20:28:47 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2013-01-22 20:28:47 +0000 |
commit | 9dc25715a52adf3279618076d77fdb1fec51a8bb (patch) | |
tree | e1e07fc7651912be358adcee81af791e0d211650 /dev-python/reportlab/reportlab-2.5-r1.ebuild | |
parent | Migrate to distutils-r1. (diff) | |
download | gentoo-2-9dc25715a52adf3279618076d77fdb1fec51a8bb.tar.gz gentoo-2-9dc25715a52adf3279618076d77fdb1fec51a8bb.tar.bz2 gentoo-2-9dc25715a52adf3279618076d77fdb1fec51a8bb.zip |
Version bump. Convert to distutils-r1. Resolve bug 318233.
(Portage version: 2.2.0_alpha155/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/reportlab/reportlab-2.5-r1.ebuild')
-rw-r--r-- | dev-python/reportlab/reportlab-2.5-r1.ebuild | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/dev-python/reportlab/reportlab-2.5-r1.ebuild b/dev-python/reportlab/reportlab-2.5-r1.ebuild index 6d35c30461ee..c19110306b75 100644 --- a/dev-python/reportlab/reportlab-2.5-r1.ebuild +++ b/dev-python/reportlab/reportlab-2.5-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-2.5-r1.ebuild,v 1.2 2012/12/06 17:37:57 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-2.5-r1.ebuild,v 1.3 2013/01/22 20:28:47 floppym Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -10,8 +10,9 @@ RESTRICT_PYTHON_ABIS="3.* *-jython" inherit distutils eutils versionator DESCRIPTION="Tools for generating printable PDF documents from any data source." -HOMEPAGE="http://www.reportlab.org/ http://pypi.python.org/pypi/reportlab" -SRC_URI="http://www.reportlab.org/ftp/${P}.tar.gz" +HOMEPAGE="http://www.reportlab.com/ http://pypi.python.org/pypi/reportlab" +SRC_URI="http://www.reportlab.com/ftp/${P}.tar.gz + http://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip" LICENSE="BSD" SLOT="0" @@ -26,6 +27,12 @@ RDEPEND="${DEPEND}" PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") +src_unpack() { + unpack ${P}.tar.gz + cd ${P}/src/reportlab/fonts || die + unpack pfbfer-20070710.zip +} + src_prepare() { distutils_src_prepare |