blob: 63701a5abf8e62cb1ff82a61cb045531010bc9f7 (
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
57
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-2.4.0.ebuild,v 1.2 2008/03/25 21:54:23 mr_bones_ Exp $
NEED_PYTHON="2.3"
inherit distutils
DESCRIPTION="RDF library containing a triple store and parser/serializer"
HOMEPAGE="http://rdflib.net/"
SRC_URI="http://rdflib.net/${P}.tar.gz"
LICENSE="BSD-2"
KEYWORDS="~x86"
SLOT="0"
IUSE="berkdb examples mysql redland sqlite test zodb"
DEPEND=">=dev-python/setuptools-0.6_rc5
test? ( <dev-python/nose-0.10.0 )"
RDEPEND="mysql? ( dev-python/mysql-python )
sqlite? (
>=dev-db/sqlite-3.3.13
|| ( dev-python/pysqlite >=dev-lang/python-2.5 ) )
berkdb? ( sys-libs/db )
redland? ( dev-libs/redland-bindings )
zodb? ( net-zope/zodb )"
pkg_setup() {
if use redland && ! built_with_use dev-libs/redland-bindings python ; then
eerror "In order to have rdflib working with redland support, you need"
eerror "to have dev-libs/redland-bindings emerged with 'python' in"
eerror "your USE flags."
die "dev-libs/redland-bindings is missing the python USE flag."
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# Don't install tests. Remove tests_require to prevent setuptools
# from trying to download deps that it can't find
sed -i \
-e "s/\(find_packages(\)/\1exclude=('test','test.*')/" \
-e "/tests_require/d" \
setup.py || die "sed in setup.py failed"
}
src_install() {
distutils_src_install
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins -r examples/*
fi
}
src_test() {
${python} setup.py test || die "tests failed"
}
|