Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/fusion-icon/
Date: Sat, 09 Sep 2017 14:14:35
Message-Id: 1504966458.8c10f372034429929493b573315e3a29e07b2cd9.kensington@gentoo
1 commit: 8c10f372034429929493b573315e3a29e07b2cd9
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 9 14:13:17 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 9 14:14:18 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c10f372
7
8 x11-apps/fusion-icon: version bump 0.2.4
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 x11-apps/fusion-icon/Manifest | 1 +
13 x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild | 40 +++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/x11-apps/fusion-icon/Manifest b/x11-apps/fusion-icon/Manifest
17 index e6d452d5973..a2d1a4cc3f7 100644
18 --- a/x11-apps/fusion-icon/Manifest
19 +++ b/x11-apps/fusion-icon/Manifest
20 @@ -1 +1,2 @@
21 DIST fusion-icon-0.1.tar.gz 30508 SHA256 2e6757fd4fb8ed7d1640fcabfbe10a39f36cf41504eda0dd13605db70273fe79 SHA512 0c22d0c7a22a9c20f1285114f8b785aff6cf863d4fe3ea1198618b13d7144f459f131dccf885442908fcd82ab4ff69e5fc42e95314836725b0e51fa3190c2bcc WHIRLPOOL 7534f46df3965aa963a95b4ec796c5ef99980c9640a6d0ced6a542d5b22430b9c996d11236bbdf1c8f9f9b00bcf4346e9aaca85da571a81c16777c4e33b3b719
22 +DIST fusion-icon-0.2.4.tar.xz 29264 SHA256 0ebc6df6a9e839a50073221bb051400b3f472b707cac094766ccee8787812297 SHA512 dbdc68abef3ed243db30a72f367dc0ed8f875fa614c85e24235cbf06a8e1433bc30b175d43abbd8b5adf3150275f619a992602f1475cbdf235ae9cd9e1545848 WHIRLPOOL b618d49e676c941117ee48800ee51c79c2123eb5c77537dd960f516f4fc70c52b491a17b4cac18a10454c8cf3944dad44b24189a95b312a7127ef65b59fbb927
23
24 diff --git a/x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild b/x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild
25 new file mode 100644
26 index 00000000000..16d20246532
27 --- /dev/null
28 +++ b/x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +PYTHON_COMPAT=( python2_7 )
35 +
36 +inherit distutils-r1 gnome2-utils
37 +
38 +DESCRIPTION="Compiz Fusion Tray Icon and Manager"
39 +HOMEPAGE="http://compiz.org"
40 +SRC_URI="https://github.com/compiz-reloaded/${PN}/releases/download/v${PV}/${P}.tar.xz"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="+gtk qt5"
46 +
47 +REQUIRED_USE="|| ( gtk qt5 )"
48 +
49 +RDEPEND="
50 + dev-python/compizconfig-python[${PYTHON_USEDEP}]
51 + x11-apps/xvinfo
52 + x11-wm/compiz
53 + gtk? ( dev-python/pygobject:3[${PYTHON_USEDEP}] )
54 + qt5? ( dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}] )"
55 +DEPEND="${RDEPEND}"
56 +
57 +python_configure_all() {
58 + esetup.py build \
59 + $(use gtk && echo --with-gtk=3) \
60 + $(use qt5 && echo --with-qt=5)
61 +}
62 +
63 +pkg_postinst() {
64 + gnome2_icon_cache_update
65 +}
66 +
67 +pkg_postrm() {
68 + gnome2_icon_cache_update
69 +}