Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: ChangeLog orbit-2.14.17.ebuild
Date: Sun, 02 Aug 2009 20:24:52
Message-Id: E1MXhbu-0005hT-2q@stork.gentoo.org
1 eva 09/08/02 20:24:50
2
3 Modified: ChangeLog orbit-2.14.17.ebuild
4 Log:
5 Fix test killing wrong process, bug #268142.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.149 gnome-base/orbit/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.149&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.149&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/ChangeLog?r1=1.148&r2=1.149
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
18 retrieving revision 1.148
19 retrieving revision 1.149
20 diff -u -r1.148 -r1.149
21 --- ChangeLog 17 Mar 2009 15:17:37 -0000 1.148
22 +++ ChangeLog 2 Aug 2009 20:24:50 -0000 1.149
23 @@ -1,6 +1,9 @@
24 # ChangeLog for gnome-base/orbit
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.148 2009/03/17 15:17:37 leio Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.149 2009/08/02 20:24:50 eva Exp $
28 +
29 + 02 Aug 2009; Gilles Dartiguelongue <eva@g.o> orbit-2.14.17.ebuild:
30 + Fix test killing wrong process, bug #268142.
31
32 17 Mar 2009; Mart Raudsepp <leio@g.o> orbit-2.14.17.ebuild:
33 Fix cross-compilation, bug 262741. Thanks to Maksim Melnikau.
34
35
36
37 1.4 gnome-base/orbit/orbit-2.14.17.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/orbit-2.14.17.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/orbit-2.14.17.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/orbit-2.14.17.ebuild?r1=1.3&r2=1.4
42
43 Index: orbit-2.14.17.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.17.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- orbit-2.14.17.ebuild 17 Mar 2009 15:48:59 -0000 1.3
50 +++ orbit-2.14.17.ebuild 2 Aug 2009 20:24:50 -0000 1.4
51 @@ -1,7 +1,8 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.17.ebuild,v 1.3 2009/03/17 15:48:59 leio Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.17.ebuild,v 1.4 2009/08/02 20:24:50 eva Exp $
56
57 +EAPI="2"
58 GCONF_DEBUG="no"
59
60 inherit gnome2 toolchain-funcs
61 @@ -28,6 +29,14 @@
62
63 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* TODO"
64
65 +src_prepare() {
66 + gnome2_src_prepare
67 +
68 + # Fix wrong process kill, bug #268142
69 + sed "s:killall lt-timeout-server:killall timeout-server:" \
70 + -i test/timeout.sh || die "sed failed"
71 +}
72 +
73 src_compile() {
74 # We need to unset IDL_DIR, which is set by RSI's IDL. This causes certain
75 # files to be not found by autotools when compiling ORBit. See bug #58540