blob: 3c2af5787dd4230d1a216a3c39d6dcd4554cb90b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/mono-0.97.ebuild,v 1.2 2004/06/28 16:05:06 latexer Exp $
inherit eutils mono flag-o-matic
strip-flags
IUSE="nptl"
DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter"
SRC_URI="http://www.go-mono.com/archive/rc/${P}.tar.gz"
HOMEPAGE="http://www.go-mono.com/"
LICENSE="GPL-2 | LGPL-2 | X11"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
DEPEND="virtual/glibc
>=dev-libs/glib-2.0
>=dev-libs/icu-2.6.1
!dev-dotnet/pnet
ppc? ( >=sys-devel/gcc-3.2.3-r4 )
ppc? ( >=sys-libs/glibc-2.3.3_pre20040420 )"
RDEPEND="${DEPEND}
dev-util/pkgconfig
dev-libs/libxml2"
src_unpack() {
unpack ${A}
# Make it use the included mono for installing. Problems with DESTDIR.
sed -i -e "s:\$(DESTDIR)\$(bindir)/mono:\$(mono_runtime):g" \
${S}/runtime/net_1_1/Makefile.in
}
src_compile() {
local myconf=""
if use nptl && have_NPTL
then
myconf="${myconf} --with-nptl=yes"
else
myconf="${myconf} --with-nptl=no"
fi
econf ${myconf} || die
MAKEOPTS="${MAKEOPTS} -j1" emake || die "MONO compilation failure"
}
src_install () {
cd ${S}
make DESTDIR=${D} install || die
# einstall || die
dodoc AUTHORS ChangeLog COPYING.LIB NEWS README
docinto docs
dodoc docs/*
# install mono's logo
insopts -m0644
insinto /usr/share/pixmaps/mono
doins MonoIcon.png ScalableMonoIcon.svg
# init script
exeinto /etc/init.d ; newexe ${FILESDIR}/dotnet.init dotnet
insinto /etc/conf.d ; newins ${FILESDIR}/dotnet.conf dotnet
}
pkg_postinst() {
echo
einfo "If you want to avoid typing '<runtime> program.exe'"
einfo "you can configure your runtime in /etc/conf.d/dotnet"
einfo "Use /etc/init.d/dotnet to register your runtime"
echo
}
|