blob: 0997eafda245d64cc2212abc20c91168675c77a3 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/zeitgeist-0.7.1.ebuild,v 1.2 2012/01/31 17:00:00 jlec Exp $
EAPI=3
PYTHON_DEPEND="2"
PYTHON_USE_WITH="sqlite"
inherit autotools eutils python versionator
DIR_PV=$(get_version_component_range 1-2)
EXT_VER=0.0.6
DESCRIPTION="Service to log activities and present to other apps"
HOMEPAGE="http://launchpad.net/zeitgeist"
SRC_URI="http://launchpad.net/zeitgeist/${DIR_PV}/${PV}/+download/${P}.tar.gz
http://launchpad.net/zeitgeist-extensions/trunk/${EXT_VER}/+download/zeitgeist-extensions-${EXT_VER}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="fts"
RDEPEND="media-libs/raptor:2
dev-python/rdflib
dev-python/dbus-python
dev-python/pyxdg
fts? ( dev-libs/xapian-bindings[python] )"
DEPEND="${RDEPEND}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
epatch "${FILESDIR}"/${P}-no-rdfpipe.patch
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die
insinto /usr/share/zeitgeist/_zeitgeist/engine/extensions
if use fts; then
doins "${WORKDIR}"/zeitgeist-extensions-${EXT_VER}/fts/fts.py
fi
}
|