blob: 9b7ea73d439f50bf2062e13e10888a1c27f990bc (
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
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools mono-env dotnet
DESCRIPTION="D-Bus for .NET"
HOMEPAGE="https://github.com/mono/dbus-sharp"
SRC_URI="https://github.com/mono/dbus-sharp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=dev-lang/mono-4.0.2.5
sys-apps/dbus"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
DOCS=( AUTHORS README )
src_prepare() {
default
sed -i "s@gmcs@mcs@g" configure.ac || die
find . -iname "*.csproj" | xargs sed -i "s@v3.5@v4.5@g" || die
eautoreconf
}
src_compile() {
default
# https://github.com/gentoo/dotnet/issues/305
sn -R src/dbus-sharp.dll dbus-sharp.snk
}
|