blob: 57f86ed1a09f2906965e620731301113697208a5 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
GCONF_DEBUG="no"
SCROLLKEEPER_UPDATE="no"
inherit gnome2
DESCRIPTION="Engine providing live updates of online data to the desktop"
# no real homepage yet
HOMEPAGE="http://ftp.gnome.org/pub/GNOME/sources/desktop-data-model/"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+sqlite"
RDEPEND=">=dev-libs/dbus-glib-0.6
dev-libs/glib:2
>=dev-libs/libpcre-6.3
gnome-base/gnome-desktop:2
gnome-base/gnome-vfs:2
>=net-libs/loudmouth-1.2.2
>=sys-apps/dbus-1
x11-libs/gtk+:2
x11-libs/libXScrnSaver
sqlite? ( dev-db/sqlite:3 )"
DEPEND="virtual/pkgconfig
gnome-base/gconf:2
${RDEPEND}"
pkg_setup() {
G2CONF="$(use_with sqlite)"
}
|