commit: 1e7ef9a71421a3a4c85399fa24a34dc980a87374
Author: ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github
<DOT> com>
AuthorDate: Fri Oct 13 07:07:46 2017 +0000
Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Oct 13 12:19:11 2017 +0000
URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=1e7ef9a7
initial template and digest
app-shells/pash/pash-0.0_p2016060606.ebuild | 44 +++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/app-shells/pash/pash-0.0_p2016060606.ebuild
b/app-shells/pash/pash-0.0_p2016060606.ebuild
new file mode 100644
index 0000000..3081245
--- /dev/null
+++ b/app-shells/pash/pash-0.0_p2016060606.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+KEYWORDS="~x86 ~amd64 ~ppc"
+RESTRICT="mirror"
+SLOT="0"
+
+USE_DOTNET="net45"
+IUSE="+${USE_DOTNET}"
+
+inherit msbuild eutils
+
+DESCRIPTION="An Open Source reimplementation of Windows PowerShell"
+
+LICENSE="BSD || ( GPL-2+ )" # LICENSE syntax is defined in
https://wiki.gentoo.org/wiki/GLEP:23
+
+PROJECTNAME="Pash"
+HOMEPAGE="https://github.com/Pash-Project/${PROJECTNAME}"
+EGIT_COMMIT="8d6a48f5ed70d64f9b49e6849b3ee35b887dc254"
+SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${P}-${PR}.tar.gz"
+S="${WORKDIR}/${PROJECTNAME}-${EGIT_COMMIT}"
+
+CDEPEND="|| ( >=dev-lang/mono-5.4.0.167 <dev-lang/mono-9999 )"
+RDEPEND="${CDEPEND}"
+DEPEND="${CDEPEND}"
+
+
+METAFILETOBUILD=${PROJECTNAME}.proj
+
+src_compile() {
+ emsbuild "${METAFILETOBUILD}"
+}
+
+src_install() {
+ insinto /usr/lib/pash/
+ doins Source/PashConsole/bin/Release/Pash.exe
+ doins Source/PashConsole/bin/Release/*.dll
+ if use developer; then
+ doins Source/PashConsole/bin/Release/*.pdb
+ fi
+ make_wrapper pash "mono /usr/lib/pash/Pash.exe"
+}