blob: be7f5101e51ed306a83f2dde829b6615fd59096c (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/yolk/yolk-0.0.7.ebuild,v 1.1 2007/04/23 05:56:36 pythonhead Exp $
inherit distutils
NEED_PYTHON=2.4
DESCRIPTION="Tool and library for querying PyPI and packages installed by setuptools"
HOMEPAGE="http://cheeseshop.python.org/pypi/yolk"
SRC_URI="http://cheeseshop.python.org/packages/source/y/yolk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="test examples"
RDEPEND="|| ( >=dev-lang/python-2.5 dev-python/elementtree )
dev-python/setuptools
test? ( dev-python/nose )
dev-python/yolk-portage"
#DOCS="AUTHORS FAQ CREDITS ChangeLog TODO"
src_install() {
distutils_src_install
if use examples ; then
dodir /usr/share/doc/${P}/examples
cp -r examples/* ${D}/usr/share/doc/${P}/examples
fi
}
src_test() {
nosetests || die "nose test failed"
}
|