blob: 8d4174b259d88749eab82724f1e6bd229deb23f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-ftp/pycurl/pycurl-0.4.5.ebuild,v 1.3 2002/07/11 06:30:46 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="python binding for curl/libcurl"
SRC_URI="mirror://sourceforge/pycurl/pycurl-0.4.5.tar.gz"
HOMEPAGE="http://pycurl.sourceforge.net"
DEPEND=">=dev-lang/python-2.1.1
>=net-ftp/curl-7.9.3"
src_install(){
python setup.py install --prefix=${D}/usr || die
dodoc README INSTALL COPYING TODO ChangeLog
}
|