Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-apps/fusion-icon: fusion-icon-0.1-r4.ebuild ChangeLog
Date: Sat, 30 Nov 2013 17:44:38
Message-Id: 20131130174423.3337E2004B@flycatcher.gentoo.org
1 floppym 13/11/30 17:44:23
2
3 Modified: ChangeLog
4 Added: fusion-icon-0.1-r4.ebuild
5 Log:
6 Convert to distutils-r1. Feel free to copy me on any related bugs.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.16 x11-apps/fusion-icon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/fusion-icon/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/fusion-icon/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/fusion-icon/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-apps/fusion-icon/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 7 Sep 2012 08:26:41 -0000 1.15
24 +++ ChangeLog 30 Nov 2013 17:44:23 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-apps/fusion-icon
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/fusion-icon/ChangeLog,v 1.15 2012/09/07 08:26:41 pinkbyte Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/fusion-icon/ChangeLog,v 1.16 2013/11/30 17:44:23 floppym Exp $
31 +
32 +*fusion-icon-0.1-r4 (30 Nov 2013)
33 +
34 + 30 Nov 2013; Mike Gilbert <floppym@g.o> +fusion-icon-0.1-r4.ebuild:
35 + Convert to distutils-r1. Feel free to copy me on any related bugs.
36
37 07 Sep 2012; Sergey Popov <pinkbyte@g.o> fusion-icon-0.1-r2.ebuild,
38 fusion-icon-0.1-r3.ebuild:
39 @@ -69,4 +74,3 @@
40 27 Oct 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
41 +metadata.xml, +fusion-icon-0.1.ebuild:
42 Initial import of fusion-icon to the tree.
43 -
44
45
46
47 1.1 x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild?rev=1.1&content-type=text/plain
51
52 Index: fusion-icon-0.1-r4.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild,v 1.1 2013/11/30 17:44:23 floppym Exp $
57
58 EAPI="5"
59 PYTHON_COMPAT=( python{2_6,2_7} )
60
61 inherit distutils-r1 eutils gnome2-utils
62
63 MINIMUM_COMPIZ_RELEASE=0.6.0
64
65 DESCRIPTION="Compiz Fusion Tray Icon and Manager"
66 HOMEPAGE="http://compiz.org"
67 SRC_URI="mirror://gentoo/${P}.tar.gz"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="+gtk qt4"
73
74 REQUIRED_USE="|| ( gtk qt4 )"
75
76 RDEPEND="
77 >=dev-python/compizconfig-python-${MINIMUM_COMPIZ_RELEASE}
78 >=x11-wm/compiz-${MINIMUM_COMPIZ_RELEASE}
79 x11-apps/xvinfo
80 gtk? ( >=dev-python/pygtk-2.10:2[${PYTHON_USEDEP}] )
81 qt4? ( dev-python/PyQt4[X,${PYTHON_USEDEP}] )"
82 DEPEND="${RDEPEND}"
83
84 S="${WORKDIR}/${PN}"
85
86 PATCHES=( "${FILESDIR}"/${P}-qt4-interface-subprocess-call.patch )
87
88 python_install() {
89 distutils-r1_python_install
90 use gtk || rm -r "${D}$(python_get_sitedir)/FusionIcon/interface_gtk" || die
91 use qt4 || rm -r "${D}$(python_get_sitedir)/FusionIcon/interface_qt4" || die
92 }
93
94 pkg_postinst() {
95 use gtk && gnome2_icon_cache_update
96 }
97
98 pkg_postrm() {
99 use gtk && gnome2_icon_cache_update
100 }