Gentoo Archives: gentoo-commits

From: "Remi Cardona (remi)" <remi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/libbonobo: ChangeLog libbonobo-2.22.0-r1.ebuild
Date: Sat, 13 Sep 2008 13:36:30
Message-Id: E1KeVIa-0002gT-2Y@stork.gentoo.org
1 remi 08/09/13 13:36:28
2
3 Modified: ChangeLog
4 Added: libbonobo-2.22.0-r1.ebuild
5 Log:
6 gnome-base/libbonobo: attach bonobo to dbus session bus (fixes bug #236864), move flex to DEPEND
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r3 i686)
8
9 Revision Changes Path
10 1.163 gnome-base/libbonobo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/libbonobo/ChangeLog?rev=1.163&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/libbonobo/ChangeLog?rev=1.163&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/libbonobo/ChangeLog?r1=1.162&r2=1.163
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libbonobo/ChangeLog,v
19 retrieving revision 1.162
20 retrieving revision 1.163
21 diff -u -r1.162 -r1.163
22 --- ChangeLog 12 Aug 2008 13:31:54 -0000 1.162
23 +++ ChangeLog 13 Sep 2008 13:36:27 -0000 1.163
24 @@ -1,6 +1,13 @@
25 # ChangeLog for gnome-base/libbonobo
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonobo/ChangeLog,v 1.162 2008/08/12 13:31:54 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonobo/ChangeLog,v 1.163 2008/09/13 13:36:27 remi Exp $
29 +
30 +*libbonobo-2.22.0-r1 (13 Sep 2008)
31 +
32 + 13 Sep 2008; Rémi Cardona <remi@g.o>
33 + +files/libbonobo-2.22.0-quit-with-dbus-session.patch,
34 + +libbonobo-2.22.0-r1.ebuild:
35 + attach bonobo to dbus session bus (fixes bug #236864), move flex to DEPEND
36
37 12 Aug 2008; Raúl Porcel <armin76@g.o> libbonobo-2.22.0.ebuild:
38 alpha/ia64/sparc stable wrt #229709
39
40
41
42 1.1 gnome-base/libbonobo/libbonobo-2.22.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/libbonobo/libbonobo-2.22.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/libbonobo/libbonobo-2.22.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libbonobo-2.22.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonobo/libbonobo-2.22.0-r1.ebuild,v 1.1 2008/09/13 13:36:27 remi Exp $
52
53 inherit gnome2 eutils autotools
54
55 DESCRIPTION="GNOME CORBA framework"
56 HOMEPAGE="http://www.gnome.org/"
57
58 LICENSE="LGPL-2.1 GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="debug doc"
62
63 RDEPEND=">=dev-libs/glib-2.8
64 >=gnome-base/orbit-2.14.0
65 >=dev-libs/libxml2-2.4.20
66 >=sys-apps/dbus-1.0.0
67 >=dev-libs/dbus-glib-0.74
68 >=dev-libs/popt-1.5
69 !gnome-base/bonobo-activation"
70 DEPEND="${RDEPEND}
71 sys-devel/flex
72 x11-apps/xrdb
73 >=dev-util/pkgconfig-0.9
74 >=dev-util/intltool-0.35
75 doc? ( >=dev-util/gtk-doc-1 )"
76
77 DOCS="AUTHORS ChangeLog NEWS README TODO"
78
79 pkg_setup() {
80 G2CONF="${G2CONF} $(use_enable debug bonobo-activation-debug)"
81 }
82
83 src_unpack() {
84 gnome2_src_unpack
85
86 sed -i -e '/DISABLE_DEPRECATED/d' \
87 "${S}/activation-server/Makefile.am" "${S}/activation-server/Makefile.in" \
88 "${S}/bonobo/Makefile.am" "${S}/bonobo/Makefile.in" \
89 "${S}/bonobo-activation/Makefile.am" "${S}/bonobo-activation/Makefile.in"
90
91 sed -i -e 's:-DG_DISABLE_DEPRECATED ::g' \
92 "${S}/tests/test-activation/Makefile.am" "${S}/tests/test-activation/Makefile.in"
93
94 # attach bonobo to the dbus session bus, fixes bug #236864
95 epatch "${FILESDIR}/${PN}-2.22.0-quit-with-dbus-session.patch"
96
97 eautoreconf
98 }