Gentoo Archives: gentoo-commits

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