diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-10-09 10:48:07 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-10-09 11:03:50 +0200 |
commit | dc92f5bf8388f51dcf489cb66465c7ed8731ed1e (patch) | |
tree | 31327a93102b80d022aae888e5ab0dcf08e7a24a /dev-dotnet | |
parent | dev-dotnet/ndesk-dbus-glib: Fix compat with mono-4 (diff) | |
download | gentoo-dc92f5bf8388f51dcf489cb66465c7ed8731ed1e.tar.gz gentoo-dc92f5bf8388f51dcf489cb66465c7ed8731ed1e.tar.bz2 gentoo-dc92f5bf8388f51dcf489cb66465c7ed8731ed1e.zip |
dev-dotnet/nini: Fix compat with mono-4
Package-Manager: portage-2.3.1
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/nini/nini-1.1.0-r2.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/dev-dotnet/nini/nini-1.1.0-r2.ebuild b/dev-dotnet/nini/nini-1.1.0-r2.ebuild index b828a7ee7ed0..2ccc1bc1f841 100644 --- a/dev-dotnet/nini/nini-1.1.0-r2.ebuild +++ b/dev-dotnet/nini/nini-1.1.0-r2.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=2 - +EAPI=5 inherit mono multilib versionator DESCRIPTION="Nini - A configuration library for .NET" @@ -18,21 +17,21 @@ IUSE="debug" RDEPEND=">=dev-lang/mono-2" DEPEND="${RDEPEND} app-arch/sharutils - sys-apps/sed" +" -S=${WORKDIR}/Nini/Source +S="${WORKDIR}/Nini/Source" src_prepare() { - uudecode -o Nini.snk "${FILESDIR}"/Nini.snk.uue + uudecode -o Nini.snk "${FILESDIR}"/Nini.snk.uue || die } src_configure() { - use debug&&DEBUG="-debug" + use debug && DEBUG="-debug" } src_compile() { #See nini in Debian for info - gmcs ${DEBUG} \ + mcs ${DEBUG} \ -nowarn:1616 \ -target:library \ -out:Nini.dll \ |