blob: e58c9069ce86592de5cd4d7f061c909120bc0ea1 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
GCONF_DEBUG="no"
EGIT_REPO_URI="git://git.gnome.org/gnome-shell"
inherit autotools gnome2 git
DESCRIPTION="Provides core UI functions for the GNOME 3 desktop"
HOMEPAGE="http://live.gnome.org/GnomeShell"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-libs/glib-2.25.9
>=x11-libs/gtk+-2.91.0:3[introspection]
>=media-libs/gstreamer-0.10.16
>=media-libs/gst-plugins-base-0.10.16
>=gnome-base/gnome-desktop-2.91.0:3
>=dev-libs/gobject-introspection-0.9.5
dev-libs/dbus-glib
>=dev-libs/gjs-0.7
x11-libs/pango[introspection]
>=media-libs/clutter-1.4.0[introspection]
dev-libs/libcroco:0.6
gnome-base/gconf[introspection]
gnome-base/gnome-menus
x11-libs/startup-notification
x11-libs/libXfixes
>=x11-wm/mutter-2.91.1[gtk3,introspection]
x11-apps/mesa-progs
dev-python/dbus-python
media-sound/pulseaudio
gnome-base/gsettings-desktop-schemas
"
DEPEND="${RDEPEND}
>=sys-devel/libtool-2.2.6
>=dev-lang/python-2.5
sys-devel/gettext
>=dev-util/pkgconfig-0.22
>=dev-util/intltool-0.26
gnome-base/gnome-common
"
DOCS="AUTHORS README"
src_prepare() {
mkdir m4
intltoolize --force --copy --automake || die
eautoreconf
}
pkg_postinst() {
elog " Start with 'gnome-shell --replace' "
elog " or add gnome-shell.desktop to ~/.config/autostart/ "
gnome2_pkg_postinst
}
|