diff options
Diffstat (limited to 'dev-lang/mono/mono-1.1.5-r1.ebuild')
-rw-r--r-- | dev-lang/mono/mono-1.1.5-r1.ebuild | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/dev-lang/mono/mono-1.1.5-r1.ebuild b/dev-lang/mono/mono-1.1.5-r1.ebuild new file mode 100644 index 000000000000..ec3ec3c5f312 --- /dev/null +++ b/dev-lang/mono/mono-1.1.5-r1.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-1.1.5-r1.ebuild,v 1.1 2005/03/31 02:27:56 latexer Exp $ + +inherit eutils mono flag-o-matic + +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="nptl icu" + +DEPEND="virtual/libc + >=dev-libs/glib-2.0 + !<dev-dotnet/pnet-0.6.12 + nptl? ( >=sys-devel/gcc-3.3.5-r1 ) + icu? ( >=dev-libs/icu-2.6.2 ) + ppc? ( + >=sys-devel/gcc-3.2.3-r4 + >=sys-libs/glibc-2.3.3_pre20040420 + )" +RDEPEND="${DEPEND} + dev-util/pkgconfig + dev-libs/libxml2" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s: -fexceptions::" ${S}/libgc/configure.host || die + + # Fix munging of Unix paths + epatch ${FILESDIR}/${P}-pathfix.diff || die + + # Fix for linking to ICU + epatch ${FILESDIR}/${P}-icu-linking.diff || die + + # Various fixes from SVN. + epatch ${FILESDIR}/${P}-r42108.diff || die + epatch ${FILESDIR}/${P}-r42122.diff || die + + # Ugly sed to replace windows path with *nix equivalent + for file in $(find ${S}/mcs/nunit20 -name AssemblyInfo.cs) + do + sed -i "s:\.\.\\\\\\\\:../:g" "${file}" + done + + # Fix MONO_CFG_DIR for signing + sed -i \ + "s:^\t\(MONO_PATH.*)\):\tMONO_CFG_DIR='${D}/etc/' \1:" \ + ${S}/mcs/build/library.make || die + + libtoolize --copy --force || die "libtoolize failed" + aclocal || die "aclocal failed" + autoconf || die "autoconf failed" + automake || die "automake failed" +} + +src_compile() { + strip-flags + + local myconf="--with-preview=yes" + # This will be the setup when this hopefully goes into the tree + #local myconf="--with-sigaltstack=yes" + if use nptl && have_NPTL + then + myconf="${myconf} --with-tls=__thread" + else + myconf="${myconf} --with-tls=pthread" + fi + + econf ${myconf} $(use_with icu) || die + emake -j1 || die "MONO compilation failure" +} + + +src_install() { + make DESTDIR=${D} install || die + + # Fix incorrect path to makecert EXE file + sed -i "s:makecert.exe:MakeCert.exe:" ${D}/usr/bin/makecert || die + + # monoresgen script is broken. It should be symlink to /usr/bin/resgen + rm ${D}/usr/bin/monoresgen || die + dosym /usr/bin/resgen /usr/bin/monoresgen + + dodoc AUTHORS ChangeLog NEWS README + docinto docs + dodoc docs/* + docinto libgc + dodoc libgc/ChangeLog +} |