blob: c4d6f3bf5b477f44050aae337383c70e9d0e3804 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/eel/eel-2.18.0.1.ebuild,v 1.10 2008/03/11 20:12:56 leio 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=""
RDEPEND=">=media-libs/libart_lgpl-2.3.8
>=gnome-base/gconf-2
>=x11-libs/gtk+-2.9.4
>=dev-libs/glib-2.6
>=gnome-base/libgnome-2
>=gnome-base/libgnomeui-2.8
>=gnome-base/gnome-vfs-2.10
>=dev-libs/libxml2-2.4.7
>=gnome-base/gail-0.16
>=gnome-base/libglade-2
>=gnome-base/gnome-desktop-2.1.4
>=gnome-base/gnome-menus-2.14.0
>=dev-util/desktop-file-utils-0.9"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.19"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
src_unpack() {
gnome2_src_unpack
# Fix deprecated API disabling in used libraries - this is not future-proof, bug 212801
sed -i -e '/DISABLE_DEPRECATED/d' \
"${S}/eel/Makefile.am" "${S}/eel/Makefile.in" \
"${S}/test/Makefile.am" "${S}/test/Makefile.in"
}
src_test() {
if hasq userpriv $FEATURES; then
einfo "Not running tests without userpriv"
else
addwrite "/root/.gnome2"
Xmake check || die "make check failed"
fi
}
|