blob: 8c54e9b279acc332e38075bee7d765c0aeb28b89 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.7.1.2-r1.ebuild,v 1.5 2012/05/29 19:57:36 ranger Exp $
EAPI="4"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Virtual Python Environment builder"
HOMEPAGE="http://www.virtualenv.org/ http://pypi.python.org/pypi/virtualenv"
SRC_URI="https://github.com/pypa/${PN}/tarball/${PV} -> ${P}-new.tar.gz"
LICENSE="MIT"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
SLOT="0"
IUSE="doc"
RDEPEND="dev-python/setuptools"
DEPEND="${DEPEND}
doc? ( dev-python/sphinx )
test? ( dev-python/mock )"
DOCS="docs/index.txt docs/news.txt"
PYTHON_MODNAME="virtualenv.py virtualenv_support"
src_unpack() {
unpack ${A}
mv pypa-virtualenv-* ${P}
}
src_prepare() {
distutils_src_prepare
# Disable broken test
sed -e 's/test_version/_&/' -i tests/test_virtualenv.py
}
src_compile() {
distutils_src_compile
if use doc; then
pushd docs > /dev/null
emake html
popd > /dev/null
fi
}
src_install() {
distutils_src_install
if use doc; then
pushd docs/_build/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}
|