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