blob: 32e70d0dd17dc9bca7e872a1b0d5f093bf58a81f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/frown/frown-0.6.1-r1.ebuild,v 1.5 2006/03/01 19:35:12 hansmi Exp $
CABAL_FEATURES="bin"
inherit haskell-cabal
DESCRIPTION="A parser generator for Haskell"
HOMEPAGE="http://www.informatik.uni-bonn.de/~ralf/frown/"
SRC_URI="http://www.informatik.uni-bonn.de/~ralf/frown/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=">=virtual/ghc-6.2.2"
RDEPEND=""
S="${WORKDIR}/Frown-${PV}"
src_unpack() {
unpack ${A}
# enabling optimisation is strongly recommended
echo "ghc-options: -O" >> ${S}/frown.cabal
}
src_install() {
cabal_src_install
dohtml -r Manual/html
dodoc COPYRIGHT Manual/Manual.ps
}
|