blob: 2ab73b5902d1f6137f779cb659b897c81143aa43 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/eel/eel-2.24.1.ebuild,v 1.12 2009/07/27 09:56:25 eva Exp $
inherit virtualx gnome2
DESCRIPTION="The Eazel Extentions Library"
HOMEPAGE="http://www.gnome.org/"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="test"
# FIXME: needs a running at-spi-registryd (setup a virtual session ?)
RESTRICT="test"
RDEPEND=">=dev-libs/glib-2.15
>=x11-libs/gtk+-2.13
>=gnome-base/gconf-2.0
>=dev-libs/libxml2-2.4.7
>=gnome-base/libglade-2.0
>=gnome-base/gnome-desktop-2.23.3
>=x11-libs/startup-notification-0.8
>=gnome-base/libgnome-2.23.0
>=gnome-base/libgnomeui-2.8"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.19
test? ( gnome-extra/libgail-gnome )"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
src_test() {
# replace FEATURES=userpriv, bug #278735
if [ ${EUID} -ne 0 ]; then
einfo "Not running as root, skipping tests."
else
addwrite "/root/.gnome2"
Xmake check || die "make check failed"
fi
}
|