blob: a5782d9ed69754cf1fe898c7596bb8af819d87e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/mono-debugger-0.50.ebuild,v 1.5 2008/03/01 23:27:17 compnerd Exp $
inherit eutils mono
DESCRIPTION="Debugger for .NET managed and unmanaged applications"
HOMEPAGE="http://www.go-mono.com"
SRC_URI="http://go-mono.com/sources/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/mono-1.2.4
sys-libs/readline"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.20"
RESTRICT="test"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-kernel-2.6.19-fix-i386-asm.patch"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README ChangeLog AUTHORS NEWS
}
|