From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 75BDA138334 for ; Fri, 6 Jul 2018 06:24:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2950E0AE1; Fri, 6 Jul 2018 06:24:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8ABAEE0AE0 for ; Fri, 6 Jul 2018 06:24:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27A4E335C90 for ; Fri, 6 Jul 2018 06:24:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB98C360 for ; Fri, 6 Jul 2018 06:24:14 +0000 (UTC) From: "Mikhail Pukhlikov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikhail Pukhlikov" Message-ID: <1527690380.0de11866e0b04f467a5aef2c36b80a84f92d6be6.cynede@gentoo> Subject: [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/sdb/ X-VCS-Repository: proj/dotnet X-VCS-Files: dev-dotnet/sdb/sdb-9999.ebuild X-VCS-Directories: dev-dotnet/sdb/ X-VCS-Committer: cynede X-VCS-Committer-Name: Mikhail Pukhlikov X-VCS-Revision: 0de11866e0b04f467a5aef2c36b80a84f92d6be6 X-VCS-Branch: master Date: Fri, 6 Jul 2018 06:24:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9d803db8-cbb2-4807-9f36-cd9f199387d4 X-Archives-Hash: d4a114a10ee2aa58c31656a46066b55b commit: 0de11866e0b04f467a5aef2c36b80a84f92d6be6 Author: Mads ab3 no> AuthorDate: Wed May 30 14:26:20 2018 +0000 Commit: Mikhail Pukhlikov gentoo 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 +}