Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-dotnet/nini/
Date: Sun, 09 Oct 2016 09:04:36
Message-Id: 1476003830.dc92f5bf8388f51dcf489cb66465c7ed8731ed1e.pacho@gentoo
1 commit: dc92f5bf8388f51dcf489cb66465c7ed8731ed1e
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 9 08:48:07 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 9 09:03:50 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc92f5bf
7
8 dev-dotnet/nini: Fix compat with mono-4
9
10 Package-Manager: portage-2.3.1
11
12 dev-dotnet/nini/nini-1.1.0-r2.ebuild | 15 +++++++--------
13 1 file changed, 7 insertions(+), 8 deletions(-)
14
15 diff --git a/dev-dotnet/nini/nini-1.1.0-r2.ebuild b/dev-dotnet/nini/nini-1.1.0-r2.ebuild
16 index b828a7e..2ccc1bc 100644
17 --- a/dev-dotnet/nini/nini-1.1.0-r2.ebuild
18 +++ b/dev-dotnet/nini/nini-1.1.0-r2.ebuild
19 @@ -1,9 +1,8 @@
20 -# Copyright 1999-2009 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 -EAPI=2
26 -
27 +EAPI=5
28 inherit mono multilib versionator
29
30 DESCRIPTION="Nini - A configuration library for .NET"
31 @@ -18,21 +17,21 @@ IUSE="debug"
32 RDEPEND=">=dev-lang/mono-2"
33 DEPEND="${RDEPEND}
34 app-arch/sharutils
35 - sys-apps/sed"
36 +"
37
38 -S=${WORKDIR}/Nini/Source
39 +S="${WORKDIR}/Nini/Source"
40
41 src_prepare() {
42 - uudecode -o Nini.snk "${FILESDIR}"/Nini.snk.uue
43 + uudecode -o Nini.snk "${FILESDIR}"/Nini.snk.uue || die
44 }
45
46 src_configure() {
47 - use debug&&DEBUG="-debug"
48 + use debug && DEBUG="-debug"
49 }
50
51 src_compile() {
52 #See nini in Debian for info
53 - gmcs ${DEBUG} \
54 + mcs ${DEBUG} \
55 -nowarn:1616 \
56 -target:library \
57 -out:Nini.dll \