blob: 2c613fa65391fd9b279ac6364697cdb8b9f4f6be (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-2.0.1-r1.ebuild,v 1.3 2009/03/27 15:50:10 ranger Exp $
EAPI=2
inherit base eutils flag-o-matic multilib
DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter"
HOMEPAGE="http://www.go-mono.com"
SRC_URI="ftp://ftp.novell.com/pub/mono/sources/mono/${P}.tar.bz2"
LICENSE="|| ( GPL-2 LGPL-2 X11 )"
SLOT="0"
KEYWORDS="~amd64 ppc ~sparc ~x86 ~x86-fbsd"
IUSE="minimal"
RDEPEND="!<dev-dotnet/pnet-0.6.12
dev-libs/glib:2
!minimal? ( =dev-dotnet/libgdiplus-${PV%.*}* )
ia64? ( sys-libs/libunwind )"
DEPEND="${RDEPEND}
sys-devel/bc
>=dev-util/pkgconfig-0.19"
PDEPEND="dev-dotnet/pe-format"
RESTRICT="test"
#Threading and mimeicon patches from Fedora CVS. Muine patch from Novell. Pointer conversions patch from Debian.
PATCHES=( "${FILESDIR}/${PN}-biginteger_overflow.diff"
"${FILESDIR}/${PN}-2.0-ppc-threading.patch"
"${FILESDIR}/${PN}-2.0-mimeicon.patch"
"${FILESDIR}/${P}-fix-wsdl-troubles-with-muine.patch"
"${FILESDIR}/${P}-fix_implicit_pointer_conversions.patch"
"${FILESDIR}/${PN}-2.0-fix-headless.patch" )
src_configure() {
# mono's build system is finiky, strip the flags
strip-flags
#Remove this at your own peril. Mono will barf in unexpected ways.
append-flags -fno-strict-aliasing
econf --disable-dependency-tracking \
--without-moonlight \
--with-preview=yes \
--with-glib=system \
--with-gc=included \
--with-libgdiplus=$( use !minimal && printf "installed" || printf "no" ) \
--with-ikvm-native=no \
--with-jit=yes
# dev-dotnet/ikvm provides ikvm-native
}
src_compile() {
emake -j1 EXTERNAL_MCS=false EXTERNAL_MONO=false
if [[ "$?" -ne "0" ]]; then
ewarn "If you are using any hardening features such as"
ewarn "PIE+SSP/SELinux/grsec/PAX then most probably this is the reason"
ewarn "why build has failed. In this case turn any active security"
ewarn "enhancements off and try emerging the package again"
die
fi
}
src_test() {
vecho ">>> Test phase [check]: ${CATEGORY}/${PF}"
mkdir -p "${T}/home/mono" || die "mkdir home failed"
export HOME="${T}/home/mono"
export XDG_CONFIG_HOME="${T}/home/mono"
export XDG_DATA_HOME="${T}/home/mono"
if ! LC_ALL=C emake -j1 check; then
hasq test $FEATURES && die "Make check failed. See above for details."
hasq test $FEATURES || eerror "Make check failed. See above for details."
fi
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README
docinto docs
dodoc docs/*
docinto libgc
dodoc libgc/ChangeLog
}
|