blob: 34bf1c4deeb5357f682bf61342de5d165ea35010 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/yolk/yolk-0.4.1-r1.ebuild,v 1.1 2011/07/20 17:53:54 neurogeek Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit eutils distutils
DESCRIPTION="Tool and library for querying PyPI and locally installed Python packages"
HOMEPAGE="http://pypi.python.org/pypi/yolk"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
DEPEND="dev-python/setuptools"
RDEPEND="dev-python/yolk-portage"
src_prepare() {
epatch "${FILESDIR}/${P}_entry_map.patch"
}
src_install() {
distutils_src_install
if use examples; then
docinto examples/plugins
dodoc examples/plugins/*
docinto examples/plugins/yolk_portage
dodoc examples/plugins/yolk_portage/*
docinto examples/plugins/yolk_pkg_manager
dodoc examples/plugins/yolk_pkg_manager/*
fi
}
|