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.14.ebuild
Date: Mon, 25 Aug 2008 21:05:17
Message-Id: E1KXjFS-0005tA-Rm@stork.gentoo.org
1 eva 08/08/25 21:05:14
2
3 Modified: ChangeLog
4 Added: orbit-2.14.14.ebuild
5 Log:
6 bump to 2.14.14, portability fixes, optimization and fixes.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.133 gnome-base/orbit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.133&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.133&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/ChangeLog?r1=1.132&r2=1.133
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
19 retrieving revision 1.132
20 retrieving revision 1.133
21 diff -u -r1.132 -r1.133
22 --- ChangeLog 12 Aug 2008 13:30:07 -0000 1.132
23 +++ ChangeLog 25 Aug 2008 21:05:14 -0000 1.133
24 @@ -1,6 +1,11 @@
25 # ChangeLog for gnome-base/orbit
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.132 2008/08/12 13:30:07 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.133 2008/08/25 21:05:14 eva Exp $
29 +
30 +*orbit-2.14.14 (25 Aug 2008)
31 +
32 + 25 Aug 2008; Gilles Dartiguelongue <eva@g.o> +orbit-2.14.14.ebuild:
33 + bump to 2.14.14, portability fixes, optimization and fixes.
34
35 12 Aug 2008; Raúl Porcel <armin76@g.o> orbit-2.14.13.ebuild:
36 alpha/ia64/sparc stable wrt #229709
37
38
39
40 1.1 gnome-base/orbit/orbit-2.14.14.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/orbit-2.14.14.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/orbit/orbit-2.14.14.ebuild?rev=1.1&content-type=text/plain
44
45 Index: orbit-2.14.14.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.14.ebuild,v 1.1 2008/08/25 21:05:14 eva Exp $
50
51 inherit gnome2 eutils
52
53 MY_P="ORBit2-${PV}"
54 PVP=(${PV//[-\._]/ })
55 S=${WORKDIR}/${MY_P}
56
57 DESCRIPTION="ORBit2 is a high-performance CORBA ORB"
58 HOMEPAGE="http://www.gnome.org/"
59 SRC_URI="mirror://gnome/sources/ORBit2/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2"
60
61 LICENSE="GPL-2 LGPL-2"
62 SLOT="2"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="doc"
65
66 RDEPEND=">=dev-libs/glib-2.8
67 >=dev-libs/libIDL-0.8.2"
68
69 DEPEND="${RDEPEND}
70 >=dev-util/pkgconfig-0.18
71 doc? ( >=dev-util/gtk-doc-1 )"
72
73 MAKEOPTS="${MAKEOPTS} -j1"
74
75 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* TODO"
76
77 src_unpack() {
78 gnome2_src_unpack
79
80 # Filter out G_DISABLE_DEPRECATED to be future-proof, related to bug 213434
81 sed -i -e '/DISABLE_DEPRECATED/d' \
82 "${S}/linc2/src/Makefile.am" "${S}/linc2/src/Makefile.in"
83
84 sed -i -e 's:-DG_DISABLE_DEPRECATED::g' \
85 "${S}/configure.in" "${S}/configure"
86 }
87
88 src_compile() {
89 # We need to unset IDL_DIR, which is set by RSI's IDL. This causes certain
90 # files to be not found by autotools when compiling ORBit. See bug #58540
91 # for more information. Please don't remove -- 8/18/06
92 unset IDL_DIR
93
94 gnome2_src_compile
95 }