blob: 209748fa4fc1d699b597416434606c149945913c (
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
58
59
60
61
62
63
64
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.3 2009/02/11 08:42:51 lordvan Exp $
inherit twisted distutils eutils
MY_P=Axiom-${PV}
DESCRIPTION="Axiom is an object database implemented on top of SQLite."
HOMEPAGE="http://divmod.org/trac/wiki/DivmodAxiom"
SRC_URI="http://divmod.org/trac/attachment/wiki/SoftwareReleases/${MY_P}.tar.gz?format=raw -> ${MY_P}.tar.gz"
#SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~ia64 ~ppc64 ~x86 ~amd64"
IUSE=""
EAPI="2"
DEPEND="|| ( >=dev-lang/python-2.5[sqlite]
( >=dev-lang/python-2.4 >=dev-python/pysqlite-2.0 ) )
>=dev-db/sqlite-3.2.1
>=dev-python/twisted-2.4
>=dev-python/twisted-conch-0.7.0-r1
=dev-python/epsilon-0.5*"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS="NAME.txt"
src_unpack() {
distutils_src_unpack
epatch "${FILESDIR}/${P}-sqlite3.patch"
if has_version ">=dev-db/sqlite-3.6.4"; then
epatch "${FILESDIR}/${P}-sqlite3_3.6.4.patch"
fi
}
src_compile() {
# skip this, or epsilon will install the temporary "build" dir
true
}
src_test() {
PYTHONPATH=. trial axiom || die "trial failed"
}
src_install() {
export PORTAGE_PLUGINCACHE_NOOP=1
distutils_src_install
# Not needed sine we disable plugin cache update now
# remove dropin.cache from destdir
#rm "${D}usr/$(get_libdir)/python${PYVER}/site-packages/twisted/plugins/dropin.cache"
unset PORTAGE_PLUGINCACHE_NOOP
}
pkg_postrm() {
twisted_pkg_postrm
}
pkg_postinst() {
twisted_pkg_postinst
}
|