blob: 9ecf0cba0e85ff9d26918006147652c66733c4f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/librharris/librharris-0.1.14.ebuild,v 1.1 2009/02/03 20:07:22 patrick Exp $
inherit distutils
SLOT="0"
MY_P="${P/lib/lib_}"
DESCRIPTION="A Python library for pulling, parsing \
and pickling remote web page data and related net-aware tasks."
HOMEPAGE="http://www.python.org/pypi/lib_rharris"
SRC_URI="http://pypi.python.org/packages/source/l/${PN/lib/lib_}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="virtual/python"
src_install() {
distutils_src_install
}
|