diff options
author | 2004-10-21 15:15:43 +0000 | |
---|---|---|
committer | 2004-10-21 15:15:43 +0000 | |
commit | 65cb7149530002958d1407483530ec4ede290491 (patch) | |
tree | 122b7627a326d5c570b017a283211ea4c2de1fb7 /dev-haskell/happy/happy-1.14.ebuild | |
parent | install build_icon.sh #68399 by chico76 (Manifest recommit) (diff) | |
download | gentoo-2-65cb7149530002958d1407483530ec4ede290491.tar.gz gentoo-2-65cb7149530002958d1407483530ec4ede290491.tar.bz2 gentoo-2-65cb7149530002958d1407483530ec4ede290491.zip |
patched for gcc-3.4
Diffstat (limited to 'dev-haskell/happy/happy-1.14.ebuild')
-rw-r--r-- | dev-haskell/happy/happy-1.14.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev-haskell/happy/happy-1.14.ebuild b/dev-haskell/happy/happy-1.14.ebuild index c66f48124507..6001bd760647 100644 --- a/dev-haskell/happy/happy-1.14.ebuild +++ b/dev-haskell/happy/happy-1.14.ebuild @@ -1,30 +1,30 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/happy/happy-1.14.ebuild,v 1.3 2004/06/24 22:15:05 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/happy/happy-1.14.ebuild,v 1.4 2004/10/21 15:15:43 kosmikus Exp $ DESCRIPTION="A yacc-like parser generator for Haskell" HOMEPAGE="http://haskell.org/happy/" SRC_URI="http://haskell.cs.yale.edu/happy/dist/${PV}/${P}-src.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="x86" IUSE="" DEPEND="virtual/ghc" RDEPEND="" +inherit base eutils + src_unpack() { - unpack ${A} + base_src_unpack + epatch "${FILESDIR}/${P}-gcc3.4.patch" } src_compile() { - econf || die - - # "emake" does not work reliably. Probably due to the classic - # dependency problem in make with parallel builds. - make || die + econf || die "configure failed" + emake -j1 || die "make failed" } src_install() { - einstall || die + einstall || die "installation failed" } |