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-libs/libcompizconfig: ChangeLog libcompizconfig-0.8.2-r1.ebuild
Date: Mon, 27 Apr 2009 02:02:40
Message-Id: E1LyGAy-0003rn-F1@stork.gentoo.org
1 jmbsvicetto 09/04/27 02:02:32
2
3 Modified: ChangeLog
4 Added: libcompizconfig-0.8.2-r1.ebuild
5 Log:
6 Added patch to allow the use of system iniparser. Many thanks to Diego E. Pettenò <flameeyes@g.o> for the help with auto-tools.
7 Dropped ppc/ppc64 keywords until iniparser is keyworded. Fixes bug 259715.
8 (Portage version: 2.2_rc31/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 x11-libs/libcompizconfig/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libcompizconfig/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libcompizconfig/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libcompizconfig/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libcompizconfig/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 25 Apr 2009 16:05:04 -0000 1.16
24 +++ ChangeLog 27 Apr 2009 02:02:32 -0000 1.17
25 @@ -1,6 +1,15 @@
26 # ChangeLog for x11-libs/libcompizconfig
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcompizconfig/ChangeLog,v 1.16 2009/04/25 16:05:04 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcompizconfig/ChangeLog,v 1.17 2009/04/27 02:02:32 jmbsvicetto Exp $
30 +
31 + 27 Apr 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
32 + +files/libcompizconfig-0.8.2-allow-system-libiniparser.patch,
33 + +libcompizconfig-0.8.2-r1.ebuild:
34 + Added patch to allow the use of system iniparser. Many thanks to Diego E.
35 + Pettenò <flameeyes@g.o> for the help with auto-tools. Dropped
36 + ppc/ppc64 keywords until iniparser is keyworded. Fixes bug 259715.
37 +
38 +*libcompizconfig-0.8.2-r1 (27 Apr 2009)
39
40 25 Apr 2009; Brent Baude <ranger@g.o> libcompizconfig-0.8.2.ebuild:
41 Marking libcompizconfig-0.8.2 ~ppc for bug 246804
42
43
44
45 1.1 x11-libs/libcompizconfig/libcompizconfig-0.8.2-r1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libcompizconfig/libcompizconfig-0.8.2-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libcompizconfig/libcompizconfig-0.8.2-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libcompizconfig-0.8.2-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libcompizconfig/libcompizconfig-0.8.2-r1.ebuild,v 1.1 2009/04/27 02:02:32 jmbsvicetto Exp $
55
56 EAPI="2"
57
58 inherit autotools eutils
59
60 DESCRIPTION="Compiz Configuration System (git)"
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 ~x86"
67 IUSE=""
68
69 RDEPEND="dev-libs/libxml2
70 ~x11-wm/compiz-${PV}"
71 DEPEND="${RDEPEND}
72 dev-libs/iniparser
73 dev-util/intltool
74 >=dev-util/pkgconfig-0.19"
75
76 src_prepare() {
77
78 epatch "${FILESDIR}/${P}-allow-system-libiniparser.patch"
79 eautoreconf
80 }
81
82 src_configure() {
83 econf \
84 --without-internal-iniparser \
85 || die "econf failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 }