commit: f621e8ab6592ecd5eaf23b0d02e31c0be44fe701 Author: ArsenShnurkov <Arsen.Shnurkov <AT> gmail <DOT> com> AuthorDate: Fri Sep 30 14:50:40 2016 +0000 Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org> CommitDate: Fri Sep 30 14:50:40 2016 +0000 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=f621e8ab
downloading .../aspnet-common/aspnet-common-1.0.0.ebuild | 52 ++++++++++++++++++++++ dev-dotnet/aspnet-common/metadata.xml | 8 ++++ 2 files changed, 60 insertions(+) diff --git a/dev-dotnet/aspnet-common/aspnet-common-1.0.0.ebuild b/dev-dotnet/aspnet-common/aspnet-common-1.0.0.ebuild new file mode 100644 index 0000000..3046b36 --- /dev/null +++ b/dev-dotnet/aspnet-common/aspnet-common-1.0.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +SLOT="0" + +KEYWORDS="~amd64 ~ppc ~x86" +USE_DOTNET="net45" + +inherit gac dotnet + +SRC_URI="https://github.com/aspnet/Common/archive/1.0.0.tar.gz -> ${PN}-${PV}.tar.gz" +RESTRICT="mirror" +S="${WORKDIR}/Common-${PV}" + +HOMEPAGE="https://github.com/aspnet/Common" +DESCRIPTION="A repository for shared files to be consumed across the ASPNET repos" +LICENSE="Apache-2.0" # https://github.com/aspnet/Common/blob/dev/LICENSE.txt + +IUSE="+${USE_DOTNET} +debug developer doc" + +COMMON_DEPEND=">=dev-lang/mono-4.0.2.5 +" +RDEPEND="${COMMON_DEPEND} +" +DEPEND="${COMMON_DEPEND} +" + +src_unpack() { + default + #gunzip --decompress --stdout "${FILESDIR}/Autofac.csproj-${PV}.gz" >"${S}/src/Autofac/Autofac.csproj" || die +} + +src_prepare() { + eapply_user +} + +src_compile() { + #exbuild_strong /p:VersionNumber=${PV} "src/Autofac/Autofac.csproj" + :; +} + +src_install() { + if use debug; then + DIR="Debug" + else + DIR="Release" + fi + #egacinstall "src/Autofac/bin/${DIR}/Autofac.dll" + #einstall_pc_file "${PN}" "${PV}" "Autofac.dll" +} diff --git a/dev-dotnet/aspnet-common/metadata.xml b/dev-dotnet/aspnet-common/metadata.xml new file mode 100644 index 0000000..b1262f1 --- /dev/null +++ b/dev-dotnet/aspnet-common/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>dot...@gentoo.org</email> + <description>Gentoo Dotnet Project</description> + </maintainer> +</pkgmetadata>