diff options
author | ArsenShnurkov <ArsenShnurkov@users.noreply.github.com> | 2017-10-13 10:07:46 +0300 |
---|---|---|
committer | ArsenShnurkov <ArsenShnurkov@users.noreply.github.com> | 2017-10-13 15:19:11 +0300 |
commit | 1e7ef9a71421a3a4c85399fa24a34dc980a87374 (patch) | |
tree | dd92be8cd77def5683a3f38141fa9c356b2ae013 /app-shells | |
parent | Merge pull request #340 from ArsenShnurkov/irony (diff) | |
download | dotnet-1e7ef9a71421a3a4c85399fa24a34dc980a87374.tar.gz dotnet-1e7ef9a71421a3a4c85399fa24a34dc980a87374.tar.bz2 dotnet-1e7ef9a71421a3a4c85399fa24a34dc980a87374.zip |
initial template and digest
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/pash/Manifest | 1 | ||||
-rw-r--r-- | app-shells/pash/pash-0.0_p2016060606.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/app-shells/pash/Manifest b/app-shells/pash/Manifest index fd1354b..267013c 100644 --- a/app-shells/pash/Manifest +++ b/app-shells/pash/Manifest @@ -1 +1,2 @@ DIST pash-0.0-r20150618.zip 4707302 SHA256 4b21db74a6c352bf6c56d656ca1514c6ebf509dd2c27983135b2359a6e87e01c SHA512 25212d55c4f40aed674e198fe6246986449b300df66a915494de0f3b6a9a8ac12dba30bd74458f0af2b59a4341acf303554e00dab99840386ad6e5bed7a81ea3 WHIRLPOOL 853060b9c141f93530ce8eb3479dc9474d4cd9e3f41c48531ba84c6fe11304f38ad8f61386e38d490f15c062403c0ed18139f72cfd23730f12695888082b750f +DIST pash-0.0_p2016060606-r0.tar.gz 3942551 SHA256 cdb36c3f097fcbbddcf0307a24518e2d778acb681e6b7ac73cd06a2853a0fb8e SHA512 668c6aae292b1fd421037d9b6a68edc097cd9e34a8ebc39b96445f1c371c7e404efed52f38db3e7e8dddb15b19a8aa6424b8a52f5935be9df75b374121b1b43e WHIRLPOOL 3ba1c58e44205e27d3b24b024aa7df3161cf593c54d22b91e84cdeafef6a4de5d19dbd68cff5a24781b70e2d500608ead1bc63329a532277ca3f8b6375f39ad4 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" +} |