diff options
author | 2011-03-20 19:01:41 +0000 | |
---|---|---|
committer | 2011-03-20 19:01:41 +0000 | |
commit | 577f8bdf0f8daf7d7035edeb5df599f897f45445 (patch) | |
tree | b09fa559bc0f2b6165d0794911b46d41ee73b110 /dev-lang/mono | |
parent | Mask clustering support until new sys-cluster/cman is pushed. (diff) | |
download | gentoo-2-577f8bdf0f8daf7d7035edeb5df599f897f45445.tar.gz gentoo-2-577f8bdf0f8daf7d7035edeb5df599f897f45445.tar.bz2 gentoo-2-577f8bdf0f8daf7d7035edeb5df599f897f45445.zip |
Fix building on ppc (bug #359515 by Brent Baude).
(Portage version: 2.1.9.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/mono')
-rw-r--r-- | dev-lang/mono/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/mono/mono-2.10.1-r1.ebuild | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog index a7311270f563..7361c0bd6a72 100644 --- a/dev-lang/mono/ChangeLog +++ b/dev-lang/mono/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/mono # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.214 2011/03/05 17:31:59 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.215 2011/03/20 19:01:41 pacho Exp $ + + 20 Mar 2011; Pacho Ramos <pacho@gentoo.org> mono-2.10.1-r1.ebuild: + Fix building on ppc (bug #359515 by Brent Baude). 05 Mar 2011; Pacho Ramos <pacho@gentoo.org> mono-2.10.1-r1.ebuild: Drop again unneeded depend. diff --git a/dev-lang/mono/mono-2.10.1-r1.ebuild b/dev-lang/mono/mono-2.10.1-r1.ebuild index bf4e9313d53d..a34addab659a 100644 --- a/dev-lang/mono/mono-2.10.1-r1.ebuild +++ b/dev-lang/mono/mono-2.10.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-2.10.1-r1.ebuild,v 1.3 2011/03/05 17:31:59 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-2.10.1-r1.ebuild,v 1.4 2011/03/20 19:01:41 pacho Exp $ EAPI="2" @@ -91,7 +91,11 @@ src_configure() { # # --with-profile4 needs to be always enabled since it's used by default # and, otherwise, problems like bug #340641 appear. + # + # sgen fails on ppc, bug #359515 + local myconf="" + use ppc && myconf="${myconf} --with-sgen=no" go-mono_src_configure \ --enable-static \ --disable-quiet-build \ @@ -101,7 +105,8 @@ src_configure() { --without-ikvm-native \ --with-jit \ --disable-dtrace \ - --with-profile4 + --with-profile4 \ + ${myconf} } src_test() { |