Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/mono-debugger: mono-debugger-2.8.1-r1.ebuild ChangeLog mono-debugger-2.8.1.ebuild mono-debugger-9999.ebuild
Date: Wed, 05 Jan 2011 20:32:09
Message-Id: 20110105203155.8D13F20051@flycatcher.gentoo.org
1 pacho 11/01/05 20:31:55
2
3 Modified: ChangeLog
4 Added: mono-debugger-2.8.1-r1.ebuild
5 Removed: mono-debugger-2.8.1.ebuild
6 mono-debugger-9999.ebuild
7 Log:
8 Revision bump including and using fixed patch to use system libbfd (bug #350738 by Rafał Mużyło). Remove old and drop 9999 since it's not really being tested neither maintained downstream.
9
10 (Portage version: 2.1.9.28/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.44 dev-util/mono-debugger/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/ChangeLog?rev=1.44&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/ChangeLog?rev=1.44&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/ChangeLog?r1=1.43&r2=1.44
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/ChangeLog,v
22 retrieving revision 1.43
23 retrieving revision 1.44
24 diff -u -r1.43 -r1.44
25 --- ChangeLog 26 Nov 2010 11:06:48 -0000 1.43
26 +++ ChangeLog 5 Jan 2011 20:31:55 -0000 1.44
27 @@ -1,6 +1,15 @@
28 # ChangeLog for dev-util/mono-debugger
29 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/ChangeLog,v 1.43 2010/11/26 11:06:48 pacho Exp $
31 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/ChangeLog,v 1.44 2011/01/05 20:31:55 pacho Exp $
33 +
34 +*mono-debugger-2.8.1-r1 (05 Jan 2011)
35 +
36 + 05 Jan 2011; Pacho Ramos <pacho@g.o> -mono-debugger-2.8.1.ebuild,
37 + +mono-debugger-2.8.1-r1.ebuild, files/mono-debugger-2.8-system-bfd.patch,
38 + -mono-debugger-9999.ebuild:
39 + Revision bump including and using fixed patch to use system libbfd (bug
40 + #350738 by Rafał Mużyło). Remove old and drop 9999 since it's not really
41 + being tested neither maintained downstream.
42
43 *mono-debugger-2.8.1 (26 Nov 2010)
44
45
46
47
48 1.1 dev-util/mono-debugger/mono-debugger-2.8.1-r1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/mono-debugger-2.8.1-r1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/mono-debugger-2.8.1-r1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: mono-debugger-2.8.1-r1.ebuild
54 ===================================================================
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/mono-debugger-2.8.1-r1.ebuild,v 1.1 2011/01/05 20:31:55 pacho Exp $
58
59 # bah, tests fail. Needs to be fixed ...
60 RESTRICT="test"
61
62 EAPI="2"
63
64 inherit go-mono mono autotools flag-o-matic eutils
65
66 DESCRIPTION="Debugger for .NET managed and unmanaged applications"
67 HOMEPAGE="http://www.mono-project.com/"
68
69 LICENSE="GPL-2 MIT"
70 SLOT="0"
71 KEYWORDS="-* ~amd64 ~x86"
72 IUSE=""
73
74 #Bundles jay
75 # Binutils is needed for libbfd
76 RDEPEND="!!=dev-lang/mono-2.2
77 sys-devel/binutils
78 dev-libs/glib:2"
79 DEPEND="${RDEPEND}
80 !dev-lang/mercury"
81
82 src_prepare() {
83 go-mono_src_prepare
84
85 # Allow compilation against system libbfd, bnc#662581
86 epatch "${FILESDIR}/${PN}-2.8-system-bfd.patch"
87 eautoreconf
88 }
89
90 src_configure() {
91 # Let's go for extra safety to avoid runtime errors, until
92 # upstream applies it.
93 append-ldflags -Wl,--no-undefined
94
95 go-mono_src_configure \
96 --with-system-libbfd \
97 --disable-static
98 }
99
100 src_compile() {
101 emake -j1 || die "Failed to build"
102 }