blob: 7ac94c15ec19adca3165a117b96f0806ae007d47 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/cabal-0.5.ebuild,v 1.2 2005/03/18 23:34:54 kosmikus Exp $
inherit ghc-package
DESCRIPTION="Haskell Common Architecture for Building Applications and Libraries"
HOMEPAGE="http://haskell.org/cabal"
SRC_URI="http://haskell.org/cabal/release/${P}.tgz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="${DEPEND}
>=virtual/ghc-6.2"
S="${WORKDIR}/${PN}"
# The following functions exist because they are likely to be extracted
# to an eclass when other Cabal-based packages are added to Portage.
cabal-configure() {
./setup configure \
--ghc --prefix=/usr \
--with-compiler="$(ghc-getghc)" \
--with-hc-pkg="$(ghc-getghcpkg)" \
"$@" || die "setup configure failed"
}
cabal-build() {
./setup build \
|| die "setup build failed"
}
cabal-copy() {
./setup copy \
--copy-prefix="${D}/usr" \
|| die "setup copy failed"
}
cabal-pkg() {
./setup register \
--gen-script \
|| die "setup register failed"
if ghc-cabal; then
# ghc supports Cabal; however, ghc-6.4 ships a slightly
# broken version, which we fix here
sed -i "s|update *$|update .installed-pkg-config|" register.sh
fi
# we want to manually build ghci-libs, so we remove the flag;
# instead, we force the issue and write to the local config file
# rather than the global one (which would cause an access violation
# at this point anyway)
sed -i "s|--auto-ghci-libs\(.*\)$|--force \1 -f\\\\|" \
register.sh
echo "${S}/$(ghc-localpkgconf)" >> register.sh
ghc-setup-pkg
./register.sh
ghc-install-pkg
}
src_compile() {
# bootstrap: build setup
make HC="$(ghc-getghc)" setup || die "make setup failed"
# cabal-style configure and compile
cabal-configure
cabal-build
}
src_install() {
cabal-copy
ghc-makeghcilib ${D}/usr/lib/Cabal-${PV}/libHSCabal-${PV}.a
cabal-pkg
# documentation (install directly; generation seems broken to me atm)
dohtml -r doc/users-guide
if use doc; then
dohtml -r doc/API
dohtml -r doc/pkg-spec-html
dodoc doc/pkg-spec.pdf
fi
dodoc changelog copyright README releaseNotes TODO
}
|