# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit mono eutils fdo-mime DESCRIPTION="Free .NET development environment" HOMEPAGE="http://monodevelop.com/" SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="boo debugger java nemerle asp mozilla" DEPEND=">=dev-dotnet/gtksourceview-sharp-0.10 mozilla? ( >=dev-dotnet/gecko-sharp-0.10 ) >=dev-lang/mono-1.1.10 >=dev-util/monodoc-1.0 >=dev-dotnet/gtk-sharp-2.4.2 >=dev-dotnet/gnomevfs-sharp-2.4.0 >=dev-dotnet/gnome-sharp-2.4.0 >=dev-dotnet/gconf-sharp-2.4.0 >=dev-dotnet/gtkhtml-sharp-2.4.0 >=dev-dotnet/glade-sharp-2.4.0 >=dev-dotnet/vte-sharp-2.4.0 debugger? ( dev-dotnet/monodebugger ) asp? ( dev-dotnet/xsp ) nemerle? ( >=dev-lang/nemerle-0.9.3 ) boo? ( >=dev-lang/boo-0.7.5 ) java? ( || ( >=dev-dotnet/ikvm-bin-0.14 >=dev-dotnet/ikvm-0.14.0.1-r1 ) )" RDEPEND="${DEPEND}" pkg_setup() { if use debugger; then echo ewarn 'The USE="debugger" flag install Mono Debugger (dev-dotnet/monodebugger),' ewarn 'but the software is subject to API changes soften because is still a relative' ewarn 'young project, so can happen that the configure process fail due an:' echo ewarn '-The debugger add-in is not currently supported due to the API changes being done in the Mono debugger-' echo ewarn 'Unfortunately there is not a real solution to the problem, until the mono devels will stop' ewarn 'the API changes. As a temporarely workaround set USE="-debugger"' echo ebeep 5 fi } src_compile() { # ATTENTION: monodevelop do not compile with 'make -j2' or more # parallel job, so we need to filter it to -j1 conf="$(use_enable boo) \ $(use_enable java) \ $(use_enable nemerle) \ --enable-nunit \ --enable-versioncontrol \ --disable-update-mimedb \ --disable-update-desktopdb " if use debugger; then conf="${conf} $(use_enable debugger)" fi econf ${conf} || die "configure failed" emake -j1 || die "make failed" } src_install () { emake DESTDIR="${D}" install || die "make install failed" dodoc ChangeLog README } pkg_postinst() { fdo-mime_desktop_database_update fdo-mime_mime_database_update }