Skip to content

Commit

Permalink
initial version of ebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
ArsenShnurkov committed May 30, 2017
1 parent 949268b commit 3223209
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-dotnet/apachemodmono-web-administration/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST apachemodmono-web-administration-0.0.0.1.tar.gz 8032 SHA256 c44daa24d07737bead468a9d6a10f43c4cbb7975ef1a57256ded9250a534c848 SHA512 caaf03af42fb75510c84b7e2e9747cc2dfced2300e0d6cdbc1adf403b362f65b694ad69ab695df432a9a78d785ab25c5b44cb6d6a31e38f99b59c23515087d64 WHIRLPOOL b8f91b02d445d6cd272c91f79aab19c4e2521b65820badbf9e728fec302a38a7c1897492427dbdcac14dbb872d8ab9ff9f06698cc1c5f8f982db078ca6e1cb41
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=6
SLOT="0"

KEYWORDS="~amd64 ~ppc ~x86"
RESTRICT="mirror"

USE_DOTNET="net45"
IUSE="+${USE_DOTNET} +gac developer debug doc"

inherit gac nupkg

NAME=ApacheModmono.Web.Administration
HOMEPAGE="https://github.com/ArsenShnurkov/${NAME}"
EGIT_COMMIT="7f0b9abac134973deb82486982bf4e65be2243dd"
SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${PN}-${PV}.tar.gz"
S="${WORKDIR}/${NAME}-${EGIT_COMMIT}"

DESCRIPTION="alternative of Microsoft.Web.Administration for Apache with mod_mono"
LICENSE="Apache-2.0" # https://github.com/ArsenShnurkov/ApacheModmono.Web.Administration/blob/master/LICENSE

COMMON_DEPEND=">=dev-lang/mono-4.0.2.5
"
RDEPEND="${COMMON_DEPEND}
"
DEPEND="${COMMON_DEPEND}
"

src_prepare() {
eapply_user
}

src_compile() {
exbuild_strong "${NAME}.sln"
}

src_install() {
if use debug; then
DIR=Debug
else
DIR=Release
fi
egacinstall "${NAME}/bin/${DIR}/${NAME}.dll"
einstall_pc_file "${PN}" "${PV}" "${NAME}"
}
8 changes: 8 additions & 0 deletions dev-dotnet/apachemodmono-web-administration/metadata.xml
Original file line number Diff line number Diff line change
@@ -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>dotnet@gentoo.org</email>
<description>Gentoo Dotnet Project</description>
</maintainer>
</pkgmetadata>

0 comments on commit 3223209

Please sign in to comment.