diff options
author | 2004-08-17 23:59:30 +0000 | |
---|---|---|
committer | 2004-08-17 23:59:30 +0000 | |
commit | 34060931d0ee20f19c97cee91f40c1d393003e7d (patch) | |
tree | b18e0e8a647abc1f2dfe3c8c017f5ff08830698d /dev-dotnet/mono/mono-1.0.1-r1.ebuild | |
parent | Mask new 1.0.1-r2 mono ebuild that has NPTL support. (diff) | |
download | gentoo-2-34060931d0ee20f19c97cee91f40c1d393003e7d.tar.gz gentoo-2-34060931d0ee20f19c97cee91f40c1d393003e7d.tar.bz2 gentoo-2-34060931d0ee20f19c97cee91f40c1d393003e7d.zip |
Two new versions. -r1 has NPTL support hanked, -r2 has the NPTL suppor and is package.masked. See bug #54603
Diffstat (limited to 'dev-dotnet/mono/mono-1.0.1-r1.ebuild')
-rw-r--r-- | dev-dotnet/mono/mono-1.0.1-r1.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/dev-dotnet/mono/mono-1.0.1-r1.ebuild b/dev-dotnet/mono/mono-1.0.1-r1.ebuild new file mode 100644 index 000000000000..2f524241a8f8 --- /dev/null +++ b/dev-dotnet/mono/mono-1.0.1-r1.ebuild @@ -0,0 +1,63 @@ +# 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-1.0.1-r1.ebuild,v 1.1 2004/08/17 23:59:30 latexer Exp $ + +inherit eutils mono flag-o-matic debug + +DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter" +HOMEPAGE="http://www.go-mono.com/" +SRC_URI="http://www.go-mono.com/archive/${PV}/${P}.tar.gz" + +LICENSE="GPL-2 | LGPL-2 | X11" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND="virtual/libc + >=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_compile() { + strip-flags + + if have_NPTL + then + eerror "mono currently has bug in garbage collection when" + eerror "using a NPTL enabled glibc. Please see bug #54603" + eerror "on bugs.gentoo.org for details. You can use the" + eerror "package.masked mono-1.0.1-r2 release if you need NPTL" + eerror "but you have been warned of the problems." + die "NPTL glibc not support by this release" + fi + + econf || die + emake -j1 || die "MONO compilation failure" +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc AUTHORS ChangeLog NEWS README + docinto docs + dodoc docs/* + docinto libgc + dodoc libgc/ChangeLog + + # 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 +} |