blob: 578bb69d0c2c5b078ebecbb261d91753d4b2c4b1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycurl/pycurl-7.10.6.ebuild,v 1.1 2003/11/02 15:39:28 liquidx Exp $
inherit distutils
DESCRIPTION="python binding for curl/libcurl"
SRC_URI="http://pycurl.sourceforge.net/download/${P}.tar.gz"
HOMEPAGE="http://pycurl.sourceforge.net"
IUSE=""
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~sparc"
DEPEND=">=dev-lang/python-2.1.1
>=net-ftp/curl-${PV}"
src_install(){
DOCS="TODO"
distutils_src_install
mv ${D}/usr/share/doc/pycurl/examples ${D}/usr/share/doc/${PF}
mv ${D}/usr/share/doc/pycurl/html ${D}/usr/share/doc/${PF}
mv ${D}/usr/share/doc/pycurl/tests ${D}/usr/share/doc/${PF}
rm -fr ${D}/usr/share/doc/pycurl
}
|