aboutsummaryrefslogtreecommitdiff
blob: 8bee21d90942d631460e7de49b24b7b62998eca9 (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
34
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
KEYWORDS="~amd64"
USE_DOTNET="net40"
IUSE="${USE_DOTNET}"
inherit git-r3 dotnet gac

HOMEPAGE="https://github.com/mono/${PN}"

EGIT_REPO_URI="${HOMEPAGE}.git"

RESTRICT="mirror"

SLOT=0

DESCRIPTION="A command line client for the Mono soft debugger."
LICENSE="MIT"

RDEPEND=">=dev-lang/mono-4.0.2.5"
DEPEND="${RDEPEND}"

src_configure() {
	:
}

src_compile() {
	emake PREFIX=/usr
}

src_install() {
	emake PREFIX="${D}/usr" install
}