Gentoo Archives: gentoo-commits

From: "Romain Perier (mrpouet)" <mrpouet@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/compiz-plugins-main: compiz-plugins-main-0.8.4-r1.ebuild ChangeLog
Date: Sun, 31 Jan 2010 17:00:49
Message-Id: E1NbdAE-0008N9-3c@stork.gentoo.org
1 mrpouet 10/01/31 17:00:46
2
3 Modified: ChangeLog
4 Added: compiz-plugins-main-0.8.4-r1.ebuild
5 Log:
6 Handle windows that have server border set properly (put plugin), per bug #302308. Many thanks to Denilson.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 x11-plugins/compiz-plugins-main/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 23 Dec 2009 02:47:00 -0000 1.9
23 +++ ChangeLog 31 Jan 2010 17:00:45 -0000 1.10
24 @@ -1,6 +1,14 @@
25 # ChangeLog for x11-plugins/compiz-plugins-main
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog,v 1.9 2009/12/23 02:47:00 jmbsvicetto Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog,v 1.10 2010/01/31 17:00:45 mrpouet Exp $
30 +
31 +*compiz-plugins-main-0.8.4-r1 (31 Jan 2010)
32 +
33 + 31 Jan 2010; Romain Perier <mrpouet@g.o>
34 + +compiz-plugins-main-0.8.4-r1.ebuild,
35 + +files/compiz-plugins-main-0.8.4-put-plugin.patch:
36 + Handle windows that have server border set properly (put plugin),
37 + per bug #302308. Many thanks to Denilson.
38
39 23 Dec 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
40 compiz-plugins-main-0.8.4.ebuild:
41
42
43
44 1.1 x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: compiz-plugins-main-0.8.4-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4-r1.ebuild,v 1.1 2010/01/31 17:00:45 mrpouet Exp $
54
55 EAPI="2"
56
57 inherit eutils gnome2-utils
58
59 DESCRIPTION="Compiz Fusion Window Decorator Plugins"
60 HOMEPAGE="http://www.compiz.org/"
61 SRC_URI="http://releases.compiz.org/${PV}/${P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
66 IUSE="gnome"
67
68 RDEPEND="
69 !x11-plugins/compiz-fusion-plugins-main
70 >=gnome-base/librsvg-2.14.0
71 media-libs/jpeg
72 x11-libs/cairo
73 ~x11-libs/compiz-bcop-${PV}
74 ~x11-wm/compiz-${PV}[gnome?]
75 "
76
77 DEPEND="${RDEPEND}
78 >=dev-util/intltool-0.35
79 >=dev-util/pkgconfig-0.19
80 >=sys-devel/gettext-0.15
81 "
82
83 src_prepare() {
84 use gnome || epatch "${FILESDIR}"/${PN}-no-gconf.patch
85 epatch "${FILESDIR}"/${P}-put-plugin.patch
86 }
87
88 src_configure() {
89 econf $(use_enable gnome schemas) || die "econf failed"
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94 }
95 pkg_preinst() {
96 use gnome && gnome2_gconf_savelist
97 }
98
99 pkg_postinst() {
100 use gnome && gnome2_gconf_install
101 }