blob: 4a7c308a7ce577b82d35f1979e6521b1bd6f2927 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/cabal-1.2.3.0.ebuild,v 1.8 2008/10/18 18:01:34 nixnut Exp $
CABAL_FEATURES="bootstrap profile lib"
inherit base haskell-cabal
# Resolve cyclic dep between filepath and Cabal by using a private copy of
# filepath when building Cabal.
FP_PN=filepath
FP_PV=1.1.0.0
FP_P=${FP_PN}-${FP_PV}
DESCRIPTION="Haskell Common Architecture for Building Applications and Libraries"
HOMEPAGE="http://haskell.org/cabal"
SRC_URI="http://haskell.org/cabal/release/${P}/${P}.tar.gz
http://hackage.haskell.org/packages/archive/${FP_PN}/${FP_PV}/${FP_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86"
IUSE="doc"
RESTRICT="test"
DEPEND=">=dev-lang/ghc-6.2"
CABAL_CORE_LIB_GHC_PV="6.8.2"
src_unpack() {
base_src_unpack
# We're using the private copy of filepath:
sed -i -e 's/Build-Depends: filepath//' \
-e '/Other-Modules:/a \
System.FilePath System.FilePath.Posix System.FilePath.Windows' \
"${S}/Cabal.cabal"
# Note: do not replace spaces with tabs on the line above, it'll break
# things. You'll just have to put up with the repoman warning.
echo " Hs-Source-Dirs: ., ../${FP_P}" >> "${S}/Cabal.cabal"
}
src_compile() {
if ! cabal-is-dummy-lib; then
einfo "Bootstrapping Cabal..."
$(ghc-getghc) -i -i. -i"${WORKDIR}/${FP_P}" -cpp --make Setup.lhs \
-o setup || die "compiling Setup.lhs failed"
cabal-configure
cabal-build
fi
}
src_install() {
cabal_src_install
# documentation (install directly)
if use doc; then
dohtml -r doc/users-guide
dohtml -r doc/API
dohtml -r doc/pkg-spec-html
dodoc doc/pkg-spec.pdf
fi
dodoc changelog README releaseNotes TODO
}
|