summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-10-09 10:41:20 +0200
committerPacho Ramos <pacho@gentoo.org>2016-10-09 11:03:36 +0200
commitc6976c3054343ccc8c292acf3e8e897b93d21471 (patch)
treeb627c9e2947fc19dc52952df381d2f16eb556b86 /dev-dotnet/ndesk-dbus
parentdev-dotnet/gnome-keyring-sharp: drop old (diff)
downloadgentoo-c6976c3054343ccc8c292acf3e8e897b93d21471.tar.gz
gentoo-c6976c3054343ccc8c292acf3e8e897b93d21471.tar.bz2
gentoo-c6976c3054343ccc8c292acf3e8e897b93d21471.zip
dev-dotnet/ndesk-dbus: Fix compat with mono-4
Package-Manager: portage-2.3.1
Diffstat (limited to 'dev-dotnet/ndesk-dbus')
-rw-r--r--dev-dotnet/ndesk-dbus/ndesk-dbus-0.6.1a.ebuild21
1 files changed, 13 insertions, 8 deletions
diff --git a/dev-dotnet/ndesk-dbus/ndesk-dbus-0.6.1a.ebuild b/dev-dotnet/ndesk-dbus/ndesk-dbus-0.6.1a.ebuild
index b7d6156088e7..92da367a088d 100644
--- a/dev-dotnet/ndesk-dbus/ndesk-dbus-0.6.1a.ebuild
+++ b/dev-dotnet/ndesk-dbus/ndesk-dbus-0.6.1a.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-inherit mono
+EAPI=6
+inherit mono-env
DESCRIPTION="Managed D-Bus Implementation for .NET"
HOMEPAGE="http://www.ndesk.org/DBusSharp"
@@ -13,12 +14,16 @@ SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
-RDEPEND=">=dev-lang/mono-1.2.4
- >=sys-apps/dbus-1"
+RDEPEND="
+ >=dev-lang/mono-1.2.4
+ >=sys-apps/dbus-1
+"
DEPEND="${RDEPEND}
- virtual/pkgconfig"
+ virtual/pkgconfig
+"
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
- dodoc AUTHORS README
+src_prepare() {
+ default
+ # mono-4 compat
+ sed -i "s#gmcs#mcs#g" configure
}