Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/compizconfig-python: ChangeLog compizconfig-python-0.8.4-r2.ebuild
Date: Sat, 04 Sep 2010 22:29:12
Message-Id: 20100904222906.7186020051@flycatcher.gentoo.org
1 flameeyes 10/09/04 22:29:06
2
3 Modified: ChangeLog
4 Added: compizconfig-python-0.8.4-r2.ebuild
5 Log:
6 Disable static libraries (they are plugins anyway), remove .la files.
7
8 (Portage version: 2.2_rc75/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.20 dev-python/compizconfig-python/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/compizconfig-python/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/compizconfig-python/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/compizconfig-python/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/compizconfig-python/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 3 Apr 2010 18:41:56 -0000 1.19
24 +++ ChangeLog 4 Sep 2010 22:29:06 -0000 1.20
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/compizconfig-python
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/compizconfig-python/ChangeLog,v 1.19 2010/04/03 18:41:56 jmbsvicetto Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/compizconfig-python/ChangeLog,v 1.20 2010/09/04 22:29:06 flameeyes Exp $
30 +
31 +*compizconfig-python-0.8.4-r2 (04 Sep 2010)
32 +
33 + 04 Sep 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +compizconfig-python-0.8.4-r2.ebuild:
35 + Disable static libraries (they are plugins anyway), remove .la files.
36
37 03 Apr 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
38 compizconfig-python-0.8.4-r1.ebuild:
39
40
41
42 1.1 dev-python/compizconfig-python/compizconfig-python-0.8.4-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/compizconfig-python/compizconfig-python-0.8.4-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/compizconfig-python/compizconfig-python-0.8.4-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: compizconfig-python-0.8.4-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/compizconfig-python/compizconfig-python-0.8.4-r2.ebuild,v 1.1 2010/09/04 22:29:06 flameeyes Exp $
52
53 EAPI="3"
54
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57 PYTHON_EXPORT_PHASE_FUNCTIONS="1"
58
59 inherit python
60
61 RESTRICT_PYTHON_ABIS="3.*"
62
63 DESCRIPTION="Compizconfig Python Bindings"
64 HOMEPAGE="http://www.compiz.org/"
65 SRC_URI="http://releases.compiz.org/${PV}/${P}.tar.bz2"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
70 IUSE=""
71
72 RDEPEND="
73 >=dev-libs/glib-2.6
74 >=x11-libs/libcompizconfig-${PV}"
75
76 DEPEND="${RDEPEND}
77 dev-python/pyrex
78 dev-util/pkgconfig"
79
80 src_configure() {
81 econf \
82 --disable-dependency-tracking \
83 --enable-fast-install \
84 --disable-static
85 }
86
87 src_compile() {
88 emake || die "emake failed"
89 }
90
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94 find "${D}" -name '*.la' -delete || die
95 }