blob: d50bbc54ebbb331011570193ad86d6b3c75c4f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit mono-env
DESCRIPTION="Managed D-Bus Implementation for .NET"
HOMEPAGE="http://www.ndesk.org/DBusSharp"
SRC_URI="http://www.ndesk.org/archive/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="
>=dev-lang/mono-1.2.4
>=sys-apps/dbus-1
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
default
# mono-4 compat
sed -i "s#gmcs#mcs#g" configure || die
}
|