diff options
author | Duncan Coutts <dcoutts@gentoo.org> | 2005-05-20 15:04:18 +0000 |
---|---|---|
committer | Duncan Coutts <dcoutts@gentoo.org> | 2005-05-20 15:04:18 +0000 |
commit | 900cfeba5f166c89366a0f80477fbdf6b19d54ca (patch) | |
tree | e4185792f77d4895f1a302250712009d9b3dabf0 /dev-lang/ghc | |
parent | Added ~sparc to KEYWORDS. (diff) | |
download | gentoo-2-900cfeba5f166c89366a0f80477fbdf6b19d54ca.tar.gz gentoo-2-900cfeba5f166c89366a0f80477fbdf6b19d54ca.tar.bz2 gentoo-2-900cfeba5f166c89366a0f80477fbdf6b19d54ca.zip |
Add ~sparc to KEYWORDS and disable GHCi support on sparc since it does not work reliably.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-lang/ghc')
-rw-r--r-- | dev-lang/ghc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.2.2.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/dev-lang/ghc/ChangeLog b/dev-lang/ghc/ChangeLog index 92edd5372f25..28f3387aa41f 100644 --- a/dev-lang/ghc/ChangeLog +++ b/dev-lang/ghc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/ghc # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.60 2005/05/11 21:53:11 kosmikus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.61 2005/05/20 15:04:18 dcoutts Exp $ + + 20 May 2005; <duncan@gentoo.org> ghc-6.2.2.ebuild: + Add ~sparc to KEYWORDS and disable GHCi support on sparc since it does not + work reliably. 11 May 2005; Andres Loeh <kosmikus@gentoo.org> ghc-6.4.ebuild: Removing ~ppc64 from ghc-6.4 again (hopefully temporarily), see comment #24 diff --git a/dev-lang/ghc/ghc-6.2.2.ebuild b/dev-lang/ghc/ghc-6.2.2.ebuild index c0ee8f5120c5..02d6f28f664c 100644 --- a/dev-lang/ghc/ghc-6.2.2.ebuild +++ b/dev-lang/ghc/ghc-6.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2.2.ebuild,v 1.13 2005/04/09 20:49:50 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2.2.ebuild,v 1.14 2005/05/20 15:04:18 dcoutts Exp $ # Brief explanation of the bootstrap logic: # @@ -25,7 +25,7 @@ SRC_URI="http://www.haskell.org/ghc/dist/${PV}/ghc-${PV}-src.tar.bz2" LICENSE="as-is" SLOT="0" -KEYWORDS="x86 ppc -alpha ~amd64 -sparc" +KEYWORDS="x86 ppc -alpha ~amd64 ~sparc" PROVIDE="virtual/ghc" @@ -119,9 +119,9 @@ src_compile() { echo "ArSupportsInput:=" >> mk/build.mk # Required for some architectures, because they don't support ghc fully ... - use ppc || use amd64 && echo "SplitObjs=NO" >> mk/build.mk + use ppc || use amd64 || use sparc && echo "SplitObjs=NO" >> mk/build.mk use amd64 && echo "GhcUnregisterised=YES" >> mk/build.mk - use amd64 && echo "GhcWithInterpreter=NO" >> mk/build.mk + use amd64 || use sparc && echo "GhcWithInterpreter=NO" >> mk/build.mk # unset SGML_CATALOG_FILES because documentation installation # breaks otherwise ... |