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: orbit-2.14.19.ebuild ChangeLog orbit-2.14.16.ebuild
Date: Fri, 01 Oct 2010 22:20:05
Message-Id: 20101001222001.B61D220051@flycatcher.gentoo.org
1 eva 10/10/01 22:20:01
2
3 Modified: ChangeLog
4 Added: orbit-2.14.19.ebuild
5 Removed: orbit-2.14.16.ebuild
6 Log:
7 Version bump. Re-add debug USE flag, needed for test suite.
8
9 (Portage version: 2.2_rc88/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.166 gnome-base/orbit/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.166&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.166&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?r1=1.165&r2=1.166
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
21 retrieving revision 1.165
22 retrieving revision 1.166
23 diff -u -r1.165 -r1.166
24 --- ChangeLog 11 Sep 2010 18:41:14 -0000 1.165
25 +++ ChangeLog 1 Oct 2010 22:20:01 -0000 1.166
26 @@ -1,6 +1,12 @@
27 # ChangeLog for gnome-base/orbit
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.165 2010/09/11 18:41:14 josejx Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.166 2010/10/01 22:20:01 eva Exp $
31 +
32 +*orbit-2.14.19 (01 Oct 2010)
33 +
34 + 01 Oct 2010; Gilles Dartiguelongue <eva@g.o> -orbit-2.14.16.ebuild,
35 + +orbit-2.14.19.ebuild:
36 + Version bump. Re-add debug USE flag, needed for test suite.
37
38 11 Sep 2010; Joseph Jezak <josejx@g.o> orbit-2.14.18.ebuild:
39 Marked ppc for bug #324077.
40
41
42
43 1.1 gnome-base/orbit/orbit-2.14.19.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19.ebuild?rev=1.1&content-type=text/plain
47
48 Index: orbit-2.14.19.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19.ebuild,v 1.1 2010/10/01 22:20:01 eva Exp $
53
54 EAPI="3"
55
56 inherit gnome2 toolchain-funcs
57
58 MY_PN="ORBit2"
59 MY_P="${MY_PN}-${PV}"
60 S=${WORKDIR}/${MY_P}
61
62 DESCRIPTION="ORBit2 is a high-performance CORBA ORB"
63 HOMEPAGE="http://www.gnome.org/"
64 SRC_URI="mirror://gnome/sources/${MY_PN}/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2"
65
66 LICENSE="GPL-2 LGPL-2"
67 SLOT="2"
68 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
69 IUSE="doc test"
70
71 RDEPEND=">=dev-libs/glib-2.8
72 >=dev-libs/libIDL-0.8.2"
73
74 DEPEND="${RDEPEND}
75 >=dev-util/pkgconfig-0.18
76 doc? ( >=dev-util/gtk-doc-1 )"
77
78 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* TODO"
79
80 pkg_setup() {
81 if use test; then
82 if ! use debug; then
83 elog "USE=debug is required for the test feature. Auto-enabling."
84 fi
85 G2CONF="${G2CONF} --enable-debug"
86 fi
87 }
88
89 src_prepare() {
90 gnome2_src_prepare
91
92 # Fix wrong process kill, bug #268142
93 sed "s:killall lt-timeout-server:killall timeout-server:" \
94 -i test/timeout.sh || die "sed 1 failed"
95
96 # Do not mess with CFLAGS
97 sed 's/-ggdb -O0//' -i configure.in configure || die "sed 2 failed"
98 }
99
100 src_compile() {
101 # We need to unset IDL_DIR, which is set by RSI's IDL. This causes certain
102 # files to be not found by autotools when compiling ORBit. See bug #58540
103 # for more information. Please don't remove -- 8/18/06
104 unset IDL_DIR
105
106 # We need to use the hosts IDL compiler if cross-compiling, bug #262741
107 if tc-is-cross-compiler; then
108 # check that host version is present and executable
109 [ -x /usr/bin/orbit-idl-2 ] || die "Please emerge ~${CATEGORY}/${P} on the host system first"
110 G2CONF="${G2CONF} --with-idl-compiler=/usr/bin/orbit-idl-2"
111 fi
112
113 # Parallel build fails from time to time, bug #273031
114 MAKEOPTS="${MAKEOPTS} -j1"
115 gnome2_src_compile
116 }
117
118 src_test() {
119 # can fail in parallel, see bug #235994
120 emake -j1 check || die "tests failed"
121 }