summaryrefslogtreecommitdiff
blob: 9505588b8c4824107c8aa2a95ed25340a857b196 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/missingh/missingh-0.16.0.ebuild,v 1.4 2007/10/31 13:08:35 dcoutts Exp $

CABAL_FEATURES="lib profile haddock"
inherit base haskell-cabal

DESCRIPTION="Collection of Haskell-related utilities"
HOMEPAGE="http://software.complete.org/missingh"
SRC_URI="http://software.complete.org/missingh/static/download_area/0.16/missingh_${PV}.tar.gz"

LICENSE="GPL-2" # mixed licence, mostly GPL
KEYWORDS="~amd64 ~x86"
IUSE=""
SLOT="0"

S="${WORKDIR}/missingh"

DEPEND=">=dev-lang/ghc-6.4.2
		>=dev-haskell/mtl-1.0
		>=dev-haskell/quickcheck-1.0
		>=dev-haskell/hunit-1.1
		>=dev-haskell/network-1.0"

src_unpack() {
	base_src_unpack

	# removes warning with later versions of cabal
	sed -i -e "s/HS-Source-Dir/HS-Source-Dirs/" "${S}/MissingH.cabal"

	# change -O2 to -O
	sed -i -e "s/GHC-Options: -O2/GHC-Options: -O/" "${S}/MissingH.cabal"

	# rexex module got it's onw package in 6.6 but before that it was in base
	# so don't dep on the regex-compat package with ghc-6.4.x
	if ! version_is_at_least "6.6" "$(ghc-version)"; then
		sed -i -e "s/regex-compat,//" "${S}/MissingH.cabal"
	fi
}

src_install() {
	cabal_src_install
	dodoc README COPYRIGHT
}