27 lines
712 B
Bash
27 lines
712 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/urlgrabber/urlgrabber-3.9.1-r1.ebuild,v 1.7 2012/06/15 14:44:56 jlec Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2:2.5"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython *-pypy-*"
|
|
|
|
inherit distutils eutils
|
|
|
|
DESCRIPTION="Python module for downloading files"
|
|
HOMEPAGE="http://urlgrabber.baseurl.org"
|
|
SRC_URI="http://urlgrabber.baseurl.org/download/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/pycurl"
|
|
RDEPEND="${DEPEND}"
|
|
RESTRICT="test"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}.patch
|
|
}
|