diff options
author | 2004-04-14 12:03:12 +0000 | |
---|---|---|
committer | 2004-04-14 12:03:12 +0000 | |
commit | 684af3aa39d2cc2b1aa824f949cbd9c7ee46ca57 (patch) | |
tree | d452571154f0412beda67fe7f8cb7fe2ae0f5634 /dev-haskell/happy/happy-1.14.ebuild | |
parent | QA removed surperflous S= (Manifest recommit) (diff) | |
download | gentoo-2-684af3aa39d2cc2b1aa824f949cbd9c7ee46ca57.tar.gz gentoo-2-684af3aa39d2cc2b1aa824f949cbd9c7ee46ca57.tar.bz2 gentoo-2-684af3aa39d2cc2b1aa824f949cbd9c7ee46ca57.zip |
new happy version
Diffstat (limited to 'dev-haskell/happy/happy-1.14.ebuild')
-rw-r--r-- | dev-haskell/happy/happy-1.14.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-haskell/happy/happy-1.14.ebuild b/dev-haskell/happy/happy-1.14.ebuild new file mode 100644 index 000000000000..cfa670b6defb --- /dev/null +++ b/dev-haskell/happy/happy-1.14.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/04/14 12:03:12 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" +IUSE="" + +DEPEND="virtual/ghc" +RDEPEND="" + +src_unpack() { + unpack ${A} +} + +src_compile() { + econf || die + + # "emake" does not work reliably. Probably due to the classic + # dependency problem in make with parallel builds. + make || die +} + +src_install() { + einstall || die +} |