Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto (jmbsvicetto)" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/compiz-plugins-extra: compiz-plugins-extra-0.8.6.ebuild ChangeLog
Date: Sat, 03 Apr 2010 05:11:21
Message-Id: E1Nxvdd-0007hq-Nx@stork.gentoo.org
1 jmbsvicetto 10/04/03 05:11:17
2
3 Modified: ChangeLog
4 Added: compiz-plugins-extra-0.8.6.ebuild
5 Log:
6 Replaced compiz ~ deps with >= deps to support the new compiz-0.8.6 release and to avoid future dep issues.
7 Did a revbump to avoid issues with installed packages.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 x11-plugins/compiz-plugins-extra/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-extra/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-extra/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-extra/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-extra/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 23 Dec 2009 02:48:15 -0000 1.10
24 +++ ChangeLog 3 Apr 2010 05:11:17 -0000 1.11
25 @@ -1,6 +1,14 @@
26 # ChangeLog for x11-plugins/compiz-plugins-extra
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-extra/ChangeLog,v 1.10 2009/12/23 02:48:15 jmbsvicetto Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-extra/ChangeLog,v 1.11 2010/04/03 05:11:17 jmbsvicetto Exp $
31 +
32 +*compiz-plugins-extra-0.8.6 (03 Apr 2010)
33 +
34 + 03 Apr 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
35 + +compiz-plugins-extra-0.8.6.ebuild:
36 + Replaced compiz ~ deps with >= deps to support the new compiz-0.8.6
37 + release and to avoid future dep issues.
38 + Did a revbump to avoid issues with installed packages.
39
40 23 Dec 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
41 compiz-plugins-extra-0.8.4.ebuild, compiz-plugins-extra-0.8.4-r1.ebuild:
42
43
44
45 1.1 x11-plugins/compiz-plugins-extra/compiz-plugins-extra-0.8.6.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-extra/compiz-plugins-extra-0.8.6.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/compiz-plugins-extra/compiz-plugins-extra-0.8.6.ebuild?rev=1.1&content-type=text/plain
49
50 Index: compiz-plugins-extra-0.8.6.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-extra/compiz-plugins-extra-0.8.6.ebuild,v 1.1 2010/04/03 05:11:17 jmbsvicetto Exp $
55
56 EAPI="2"
57
58 inherit autotools eutils gnome2-utils
59
60 DESCRIPTION="Compiz Fusion Window Decorator Extra Plugins"
61 HOMEPAGE="http://www.compiz.org/"
62 SRC_URI="http://releases.compiz.org/${PV}/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
67 IUSE="gnome"
68
69 MY_PV="0.8.4"
70
71 RDEPEND="
72 >=gnome-base/librsvg-2.14.0
73 media-libs/jpeg
74 >=x11-libs/compiz-bcop-${MY_PV}
75 >=x11-plugins/compiz-plugins-main-${PV}
76 >=x11-wm/compiz-${PV}
77 "
78
79 DEPEND="${RDEPEND}
80 >=dev-util/intltool-0.35
81 >=dev-util/pkgconfig-0.19
82 >=sys-devel/gettext-0.15
83 x11-libs/cairo
84 gnome? ( gnome-base/gconf )
85 "
86
87 src_prepare() {
88 use gnome || {
89 epatch "${FILESDIR}"/${PN}-no-gconf.patch
90
91 # required to apply the above patch
92 intltoolize --copy --force || die "intltoolize failed"
93 eautoreconf || die "eautoreconf failed"
94 }
95 }
96
97 src_configure() {
98 econf --disable-dependency-tracking \
99 $(use_enable gnome schemas)
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "emake install failed"
104 }
105
106 pkg_preinst() {
107 if use gnome; then
108 gnome2_gconf_savelist
109 fi
110 }
111
112 pkg_postinst() {
113 if use gnome; then
114 gnome2_gconf_install
115 fi
116 }