blob: f9748b859ee0885e300f571cee1d374c9b4353e6 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.2.0-r2.ebuild,v 1.2 2011/12/11 23:47:05 tetromino Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit eutils gnome2
DESCRIPTION="JavaScript extensions for GNOME Shell"
HOMEPAGE="http://live.gnome.org/GnomeShell/Extensions"
LICENSE="GPL-2"
SLOT="0"
IUSE="examples"
KEYWORDS="~amd64 ~x86"
COMMON_DEPEND="
>=dev-libs/glib-2.26
>=gnome-base/gnome-desktop-2.91.6:3[introspection]
>=gnome-base/libgtop-2.28.3[introspection]
app-admin/eselect-gnome-shell-extensions"
RDEPEND="${COMMON_DEPEND}
>=dev-libs/gjs-1.29
dev-libs/gobject-introspection
=gnome-base/gnome-shell-3.2*
media-libs/clutter:1.0[introspection]
net-libs/telepathy-glib[introspection]
x11-libs/gtk+:3[introspection]
x11-libs/pango[introspection]"
DEPEND="${COMMON_DEPEND}
sys-devel/gettext
>=dev-util/pkgconfig-0.22
>=dev-util/intltool-0.26
gnome-base/gnome-common"
pkg_setup() {
DOCS="NEWS README"
G2CONF="${G2CONF}
--enable-extensions=all
--disable-schemas-compile"
}
src_prepare() {
gnome2_src_prepare
# Useful patches from upstream, will be in the next release
epatch "${FILESDIR}/${P}-dock-popup-menus.patch"
epatch "${FILESDIR}/${P}-dock-gnome-3.2.patch"
epatch "${FILESDIR}/${P}-systemMonitor-CSS.patch"
epatch "${FILESDIR}/${P}-systemMonitor-enable-disable.patch"
# Extensions work with gnome-3.2*, not just 3.2.0
epatch "${FILESDIR}/${PN}-3.2.0-gnome-3.2.1.patch"
# xrandr-indicator crashes gnome-shell with <gjs-0.7.15;
# see gnome bug 649077. For simplicity, just disable it for gnome-3.0.
# sed -e 's:\(ALL_EXTENSIONS=.*\)xrandr-indicator:\1:' \
# -i configure || die
}
src_install() {
gnome2_src_install
local example="example@gnome-shell-extensions.gnome.org"
if use examples; then
mv "${ED}usr/share/gnome-shell/extensions/${example}" \
"${ED}usr/share/doc/${PF}/" || die
else
rm -r "${ED}usr/share/gnome-shell/extensions/${example}" || die
fi
}
pkg_postinst() {
gnome2_pkg_postinst
ebegin "Updating list of installed extensions"
eselect gnome-shell-extensions update
eend $?
elog
elog "Installed extensions installed are initially disabled by default."
elog "To change the system default and enable some extensions, you can use"
elog "# eselect gnome-shell-extensions"
elog "Alternatively, you can use the org.gnome.shell enabled-extensions"
elog "gsettings key to change the disabled extension list per-user, or"
elog "use the gnome-extra/gnome-tweak-tool GUI."
elog
}
|