blob: 36d386c0db00d3f6a03826d6df086187aa2e18de (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.3.ebuild,v 1.8 2010/10/07 21:59:39 ssuominen Exp $
GCONF_DEBUG="no"
inherit eutils virtualx gnome2
DESCRIPTION="User Interface part of libbonobo"
HOMEPAGE="http://developer.gnome.org/arch/gnome/componentmodel/bonobo.html"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
IUSE="doc"
# GTK+ dep due to bug #126565
RDEPEND=">=gnome-base/libgnomecanvas-1.116
>=gnome-base/libbonobo-2.22
>=gnome-base/libgnome-2.13.7
>=dev-libs/libxml2-2.4.20
>=gnome-base/gconf-2
>=x11-libs/gtk+-2.8.12
>=dev-libs/glib-2.6.0
>=gnome-base/libglade-1.99.11
>=dev-libs/popt-1.5"
DEPEND="${RDEPEND}
x11-apps/xrdb
sys-devel/gettext
>=dev-util/pkgconfig-0.20
>=dev-util/intltool-0.40
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog NEWS README"
src_compile() {
addpredict "/root/.gnome2_private"
gnome2_src_compile
}
src_test() {
addwrite "/root/.gnome2_private"
Xemake check || die "tests failed"
}
|