# 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.6-r1.ebuild,v 1.1 2005/04/14 23:34:13 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 !=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-dotnet/libgdiplus-1.1.4 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}/${PN}-1.1.5-pathfix.diff || die # Fix for linking to ICU epatch ${FILESDIR}/${PN}-1.1.5-icu-linking.diff || die # fix from SVN. epatch ${FILESDIR}/${PN}-1.1.5-r42108.diff || die # Fix amd64 bug #88041 epatch ${FILESDIR}/${PN}-1.1.6-r42300.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" 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 }