Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extensions-topicons/
Date: Sat, 25 Jun 2016 18:43:54
Message-Id: 1466880180.9f0fb7169f224b54f278a795df287a1c7d9eeca5.pacho@gentoo
1 commit: 9f0fb7169f224b54f278a795df287a1c7d9eeca5
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 18:12:50 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 18:43:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f0fb716
7
8 gnome-extra/gnome-shell-extensions-topicons: Support gnome 3.20
9
10 Package-Manager: portage-2.3.0_rc1
11
12 .../gnome-shell-extensions-topicons-28-r1.ebuild | 38 ++++++++++++++++++++++
13 1 file changed, 38 insertions(+)
14
15 diff --git a/gnome-extra/gnome-shell-extensions-topicons/gnome-shell-extensions-topicons-28-r1.ebuild b/gnome-extra/gnome-shell-extensions-topicons/gnome-shell-extensions-topicons-28-r1.ebuild
16 new file mode 100644
17 index 0000000..8398980
18 --- /dev/null
19 +++ b/gnome-extra/gnome-shell-extensions-topicons/gnome-shell-extensions-topicons-28-r1.ebuild
20 @@ -0,0 +1,38 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +inherit vcs-snapshot
27 +
28 +DESCRIPTION="Shows legacy tray icons on top"
29 +HOMEPAGE="https://extensions.gnome.org/extension/495/topicons/"
30 +SRC_URI="http://94.247.144.115/repo/topicons/snapshot/topicons-${PV}.tar.xz -> ${P}.tar.xz"
31 +
32 +LICENSE="GPL-2+"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +
37 +RDEPEND="
38 + app-eselect/eselect-gnome-shell-extensions
39 + >=gnome-base/gnome-shell-3.10
40 +"
41 +DEPEND="app-arch/xz-utils"
42 +
43 +src_prepare() {
44 + default
45 + sed -i 's/"3.18"/"3.18",\n "3.20"/g' metadata.json || die
46 +}
47 +
48 +src_install() {
49 + local uuid='topIcons@××××.gadllah@gmail.com'
50 + insinto "/usr/share/gnome-shell/extensions/${uuid}"
51 + doins *
52 +}
53 +
54 +pkg_postinst() {
55 + ebegin "Updating list of installed extensions"
56 + eselect gnome-shell-extensions update
57 + eend $?
58 +}