diff options
Diffstat (limited to 'dev-util/mono-debugger/mono-debugger-2.8.1.ebuild')
-rw-r--r-- | dev-util/mono-debugger/mono-debugger-2.8.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-util/mono-debugger/mono-debugger-2.8.1.ebuild b/dev-util/mono-debugger/mono-debugger-2.8.1.ebuild new file mode 100644 index 000000000000..ba2766903793 --- /dev/null +++ b/dev-util/mono-debugger/mono-debugger-2.8.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/mono-debugger-2.8.1.ebuild,v 1.1 2010/11/26 11:06:48 pacho Exp $ + +# bah, tests fail. Needs to be fixed ... +RESTRICT="test" + +EAPI=2 + +PATCHLEVEL=1 + +inherit go-mono mono autotools flag-o-matic eutils + +DESCRIPTION="Debugger for .NET managed and unmanaged applications" +HOMEPAGE="http://www.mono-project.com/" + +LICENSE="GPL-2 MIT" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +#Bundles jay +# Binutils is needed for libbfd +RDEPEND="!!=dev-lang/mono-2.2 + sys-devel/binutils + dev-libs/glib:2" +DEPEND="${RDEPEND} + !dev-lang/mercury" + +src_prepare() { + go-mono_src_prepare + epatch "${FILESDIR}/${PN}-2.8-system-bfd.patch" + eautoreconf +} + +src_configure() { + # Let's go for extra safety to avoid runtime errors, until + # upstream applies it. + append-ldflags -Wl,--no-undefined + + go-mono_src_configure \ + --disable-static +} + +src_compile() { + emake -j1 || die "Failed to build" +} |