blob: 48a8dec935111860022e080fdb8f548bc7dcab37 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-control-center/gnome-control-center-2.24.0.1.ebuild,v 1.15 2009/04/28 11:18:35 armin76 Exp $
EAPI="1"
inherit eutils gnome2
DESCRIPTION="The gnome2 Desktop configuration tool"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="eds hal +sound"
# FIXME: eel is still needed for libslab
RDEPEND="x11-libs/libXft
>=x11-libs/gtk+-2.11.6
>=dev-libs/glib-2.17.4
>=gnome-base/gconf-2.0
>=gnome-base/libglade-2
>=gnome-base/librsvg-2.0
>=gnome-base/nautilus-2.6
>=media-libs/fontconfig-1
>=dev-libs/dbus-glib-0.73
>=x11-libs/libxklavier-3.6
>=x11-wm/metacity-2.23.1
>=gnome-base/gnome-panel-2.0
>=gnome-base/libgnomekbd-2.21.4.1
>=gnome-base/gnome-desktop-2.23.90
>=gnome-base/gnome-menus-2.11.1
gnome-base/eel
gnome-base/gnome-settings-daemon
>=media-libs/gstreamer-0.10.1.2
>=media-libs/gst-plugins-base-0.10.1.2
>=media-plugins/gst-plugins-gconf-0.10
media-plugins/gst-plugins-meta:0.10
x11-libs/pango
dev-libs/libxml2
media-libs/freetype
eds? ( >=gnome-extra/evolution-data-server-1.7.90 )
hal? ( >=sys-apps/hal-0.5.6 )
sound? (
>=media-libs/libcanberra-0.4
x11-themes/sound-theme-freedesktop )
>=gnome-base/libbonobo-2
>=gnome-base/libgnome-2.2
>=gnome-base/libbonoboui-2
>=gnome-base/libgnomeui-2.2
x11-apps/xmodmap
x11-libs/libXScrnSaver
x11-libs/libXext
x11-libs/libX11
x11-libs/libXxf86misc
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXcursor"
DEPEND="${RDEPEND}
x11-proto/scrnsaverproto
x11-proto/xextproto
x11-proto/xproto
x11-proto/xf86miscproto
x11-proto/kbproto
x11-proto/randrproto
x11-proto/renderproto
sys-devel/gettext
>=dev-util/intltool-0.40
>=dev-util/pkgconfig-0.19
dev-util/desktop-file-utils
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.10.1"
# Needed for autoreconf
# gnome-base/gnome-common
DOCS="AUTHORS ChangeLog NEWS README TODO"
pkg_setup() {
if use sound && ! built_with_use media-libs/libcanberra gtk; then
eerror "You need to rebuild media-libs/libcanberra with gtk support."
die "Rebuild media-libs/libcanberra with USE='gtk'"
fi
G2CONF="${G2CONF}
--disable-update-mimedb
--enable-gstreamer=0.10
$(use_enable eds aboutme)
$(use_enable hal)
$(use_with sound libcanberra)"
}
src_unpack() {
gnome2_src_unpack
# Fix compilation on fbsd, bug #256958
epatch "${FILESDIR}/${P}-fbsd.patch"
}
|