commit: 0de11866e0b04f467a5aef2c36b80a84f92d6be6 Author: Mads <mads <AT> ab3 <DOT> no> AuthorDate: Wed May 30 14:26:20 2018 +0000 Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org> CommitDate: Wed May 30 14:26:20 2018 +0000 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=0de11866
Add sdb-9999.ebuild (https://github.com/mono/sdb - A command line client for the Mono soft debugger.) dev-dotnet/sdb/sdb-9999.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-dotnet/sdb/sdb-9999.ebuild b/dev-dotnet/sdb/sdb-9999.ebuild new file mode 100644 index 0000000..a63212c --- /dev/null +++ b/dev-dotnet/sdb/sdb-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +KEYWORDS="~amd64 ~x86" +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 +}