diff options
author | Duncan Coutts <dcoutts@gentoo.org> | 2005-10-04 15:07:02 +0000 |
---|---|---|
committer | Duncan Coutts <dcoutts@gentoo.org> | 2005-10-04 15:07:02 +0000 |
commit | 9bfa69b3714e1433d62b5af5d77d7c1e34290b37 (patch) | |
tree | 346a456b2ea826f44131eac4a0f7db90612314f5 /dev-lang/ghc | |
parent | Version bumped. Cleanup ebuild. (diff) | |
download | gentoo-2-9bfa69b3714e1433d62b5af5d77d7c1e34290b37.tar.gz gentoo-2-9bfa69b3714e1433d62b5af5d77d7c1e34290b37.tar.bz2 gentoo-2-9bfa69b3714e1433d62b5af5d77d7c1e34290b37.zip |
Add ~sparc to KEYWORDS and enable GHCi on sparc.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-lang/ghc')
-rw-r--r-- | dev-lang/ghc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.4.1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-lang/ghc/ChangeLog b/dev-lang/ghc/ChangeLog index 40b3f3030f26..2d92df534e18 100644 --- a/dev-lang/ghc/ChangeLog +++ b/dev-lang/ghc/ChangeLog @@ -1,6 +1,9 @@ # 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.67 2005/09/24 00:06:38 dcoutts Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.68 2005/10/04 15:07:02 dcoutts Exp $ + + 04 Oct 2005; <duncan@gentoo.org> ghc-6.4.1.ebuild: + Add ~sparc to KEYWORDS and enable GHCi on sparc. 23 Sep 2005; <duncan@gentoo.org> ghc-6.4.1.ebuild: Disabled java USE flag due to bug #106992 diff --git a/dev-lang/ghc/ghc-6.4.1.ebuild b/dev-lang/ghc/ghc-6.4.1.ebuild index 657bd37e86e0..18232317c678 100644 --- a/dev-lang/ghc/ghc-6.4.1.ebuild +++ b/dev-lang/ghc/ghc-6.4.1.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.4.1.ebuild,v 1.2 2005/09/24 00:06:38 dcoutts Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.4.1.ebuild,v 1.3 2005/10/04 15:07:02 dcoutts Exp $ # We abandon virtual/ghc in favor of || dependencies. # Here's a brief explanation of the new bootstrap logic: @@ -35,7 +35,7 @@ SRC_URI="http://www.haskell.org/ghc/dist/${EXTRA_SRC_URI}/${MY_P}-src.tar.bz2" LICENSE="as-is" SLOT="0" # re-add ~ppc64 once dependencies are fulfilled -KEYWORDS="-alpha ~amd64 ~x86" +KEYWORDS="-alpha ~amd64 ~x86 ~sparc" S="${WORKDIR}/${MY_P}" @@ -150,7 +150,7 @@ src_compile() { echo "ArSupportsInput:=" >> mk/build.mk # Required for some architectures, because they don't support ghc fully ... - use ppc || use ppc64 && echo "SplitObjs=NO" >> mk/build.mk + use ppc || use ppc64 || use sparc && echo "SplitObjs=NO" >> mk/build.mk use ppc64 && echo "GhcWithInterpreter=NO" >> mk/build.mk econf ${myconf} || die "econf failed" |