forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mono-addins-1.0-r1.ebuild
52 lines (40 loc) · 1.17 KB
/
mono-addins-1.0-r1.ebuild
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils dotnet multilib autotools-utils
DESCRIPTION="A generic framework for creating extensible applications"
HOMEPAGE="http://www.mono-project.com/Mono.Addins"
SRC_URI="https://github.com/mono/${PN}/archive/${P}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+gtk"
RDEPEND=">=dev-lang/mono-3
gtk? ( >=dev-dotnet/gtk-sharp-2.12.21:2 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
MAKEOPTS="${MAKEOPTS} -j1" #nowarn
S="${WORKDIR}/${PN}-${P}"
src_prepare() {
epatch "${FILESDIR}/gmcs.patch"
eautoreconf
autotools-utils_src_prepare
## with dev-dotnet/gtk-sharp-2.99.1
## it gives
## checking for GTK_SHARP_20... no
## configure: error: Package requirements (gtk-sharp-2.0) were not met:
##
## No package 'gtk-sharp-2.0' found
sed -i "s;Mono.Cairo;Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756;g" Mono.Addins.Gui/Mono.Addins.Gui.csproj || die "sed failed"
}
src_configure() {
econf $(use_enable gtk gui)
}
src_compile() {
default
}
src_install() {
default
dotnet_multilib_comply
}