blob: 7fbb94aa168e4d81df6a838d1f4a1db2c155bfea (
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
27
28
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
DESCRIPTION="A networking library that achieves high scalability by using non-blocking io"
HOMEPAGE="http://wiki.secondlife.com/wiki/Eventlet"
SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples ssl"
RDEPEND="dev-lang/python
dev-python/greenlet
ssl? ( dev-python/pyopenssl )"
DEPEND="${RDEPEND}
dev-python/setuptools"
src_install() {
distutils_src_install
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r examples || die "Install failed"
fi;
}
|