blob: 03653794dad6f735f5e8b00cce69f7904543fe57 (
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
38
39
40
41
42
43
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils mono-env multilib
DESCRIPTION="A generic framework for creating extensible applications"
HOMEPAGE="http://www.mono-project.com/Mono.Addins"
SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+gtk"
RDEPEND=">=dev-lang/mono-2
gtk? ( >=dev-dotnet/gtk-sharp-2.0:2 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare()
{
epatch "${FILESDIR}/gmcs.patch"
# eautoreconf
## fails with the message "./mautil/Makefile.am:40: error: 'pkglibdir' is not a legitimate directory for 'SCRIPTS'"
# "${S}/autogen.sh" || die
## file doesn't exist
}
src_configure() {
econf $(use_enable gtk gui)
}
src_compile() {
emake -j1 #nowarn
}
src_install() {
emake -j1 DESTDIR="${D}" install #nowarn
mono_multilib_comply
}
|