Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/omniORB: ChangeLog omniORB-4.1.3.ebuild
Date: Sat, 20 Jun 2009 15:37:11
Message-Id: E1MI2cv-00079C-Iq@stork.gentoo.org
1 ssuominen 09/06/20 15:37:09
2
3 Modified: ChangeLog omniORB-4.1.3.ebuild
4 Log:
5 Fix building with GLIBC 2.10+ wrt #272705, thanks to Diego E. Pettenò and Victor Ostorga.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.51 net-misc/omniORB/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/ChangeLog?rev=1.51&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/ChangeLog?rev=1.51&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/ChangeLog?r1=1.50&r2=1.51
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v
18 retrieving revision 1.50
19 retrieving revision 1.51
20 diff -u -r1.50 -r1.51
21 --- ChangeLog 1 Nov 2008 22:40:32 -0000 1.50
22 +++ ChangeLog 20 Jun 2009 15:37:09 -0000 1.51
23 @@ -1,6 +1,11 @@
24 # ChangeLog for net-misc/omniORB
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.50 2008/11/01 22:40:32 caster Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.51 2009/06/20 15:37:09 ssuominen Exp $
29 +
30 + 20 Jun 2009; Samuli Suominen <ssuominen@g.o> omniORB-4.1.3.ebuild,
31 + +files/omniORB-4.1.3-glibc-2.10.patch:
32 + Fix building with GLIBC 2.10+ wrt #272705, thanks to Diego E. Pettenò and
33 + Victor Ostorga.
34
35 *omniORB-4.1.3 (01 Nov 2008)
36
37
38
39
40 1.2 net-misc/omniORB/omniORB-4.1.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/omniORB-4.1.3.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/omniORB-4.1.3.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/omniORB-4.1.3.ebuild?r1=1.1&r2=1.2
45
46 Index: omniORB-4.1.3.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.3.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- omniORB-4.1.3.ebuild 1 Nov 2008 22:40:32 -0000 1.1
53 +++ omniORB-4.1.3.ebuild 20 Jun 2009 15:37:09 -0000 1.2
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2008 Gentoo Foundation
56 +# Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.3.ebuild,v 1.1 2008/11/01 22:40:32 caster Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.3.ebuild,v 1.2 2009/06/20 15:37:09 ssuominen Exp $
60
61 inherit python eutils
62
63 @@ -8,19 +8,21 @@
64 SRC_URI="mirror://sourceforge/omniorb/${PF}.tar.gz"
65 HOMEPAGE="http://omniorb.sourceforge.net/"
66
67 -IUSE="ssl"
68 -
69 LICENSE="LGPL-2 GPL-2"
70 SLOT="0"
71 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
72 +IUSE="ssl"
73
74 -DEPEND="dev-lang/python
75 +RDEPEND="dev-lang/python
76 ssl? ( >=dev-libs/openssl-0.9.6b )"
77 +DEPEND="${RDEPEND}"
78
79 src_unpack() {
80 unpack ${A}
81 cd "${S}"
82
83 + epatch "${FILESDIR}"/${P}-glibc-2.10.patch
84 +
85 sed -i -e 's/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = $(OPTCXXFLAGS)/' \
86 -e 's/^CDEBUGFLAGS.*/CDEBUGFLAGS = $(OPTCFLAGS)/' \
87 mk/beforeauto.mk.in \