Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/gobject-introspection: ChangeLog gobject-introspection-0.9.3.ebuild
Date: Sun, 22 Aug 2010 18:00:02
Message-Id: 20100822175958.C04CD2004C@flycatcher.gentoo.org
1 abcd 10/08/22 17:59:58
2
3 Modified: ChangeLog
4 Added: gobject-introspection-0.9.3.ebuild
5 Log:
6 Bump to 0.9.3, from gnome overlay
7
8 (Portage version: v2.2_rc67-680-g060956c/cvs/Linux i686)
9
10 Revision Changes Path
11 1.9 dev-libs/gobject-introspection/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 24 Jul 2010 17:04:23 -0000 1.8
24 +++ ChangeLog 22 Aug 2010 17:59:58 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/gobject-introspection
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/ChangeLog,v 1.8 2010/07/24 17:04:23 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/ChangeLog,v 1.9 2010/08/22 17:59:58 abcd Exp $
30 +
31 +*gobject-introspection-0.9.3 (22 Aug 2010)
32 +
33 + 22 Aug 2010; Jonathan Callen <abcd@g.o>
34 + +gobject-introspection-0.9.3.ebuild:
35 + Bump to 0.9.3, from gnome overlay
36
37 24 Jul 2010; Raúl Porcel <armin76@g.o>
38 gobject-introspection-0.9.0.ebuild:
39
40
41
42 1.1 dev-libs/gobject-introspection/gobject-introspection-0.9.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/gobject-introspection-0.9.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/gobject-introspection-0.9.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gobject-introspection-0.9.3.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-libs/gobject-introspection/gobject-introspection-0.9.3.ebuild,v 1.1 2010/08/22 17:59:58 abcd Exp $
52
53 EAPI="3"
54
55 PYTHON_DEPEND="2:2.5"
56
57 inherit python gnome2
58
59 DESCRIPTION="Introspection infrastructure for gobject library bindings"
60 HOMEPAGE="http://live.gnome.org/GObjectIntrospection/"
61
62 LICENSE="LGPL-2 GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~s390 ~sh ~sparc ~x86"
65 IUSE="doc test"
66
67 RDEPEND=">=dev-libs/glib-2.19.0
68 virtual/libffi"
69 DEPEND="${RDEPEND}
70 doc? ( >=dev-util/gtk-doc-1.12 )
71 dev-util/pkgconfig
72 sys-devel/flex
73 test? ( x11-libs/cairo )"
74
75 pkg_setup() {
76 python_set_active_version 2
77 }
78
79 src_prepare() {
80 G2CONF="${G2CONF} --disable-static"
81
82 # FIXME: Parallel compilation failure with USE=doc
83 use doc && MAKEOPTS="-j1"
84
85 # Don't pre-compile .py
86 ln -sf $(type -P true) py-compile
87 }
88
89 src_configure() {
90 econf $(use_enable test tests) || die "econf failed"
91 }
92
93 pkg_postinst() {
94 python_mod_optimize /usr/$(get_libdir)/${PN}/giscanner
95 python_need_rebuild
96 }
97
98 pkg_postrm() {
99 python_mod_cleanup /usr/lib*/${PN}/giscanner
100 }