Gentoo Archives: gentoo-commits

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