blob: c8cfe3261447bc4521ff51895d4267deb5577c09 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/cabal-1.1.3-r1.ebuild,v 1.3 2006/03/13 11:32:38 jer Exp $
CABAL_FEATURES="bootstrap lib"
inherit haskell-cabal eutils base
DESCRIPTION="Haskell Common Architecture for Building Applications and Libraries"
HOMEPAGE="http://haskell.org/cabal"
SRC_URI="http://haskell.org/cabal/release/rc/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"
DEPEND=">=virtual/ghc-6.2"
MY_PV="${PV/_pre*/}"
S="${WORKDIR}/${PN}"
src_unpack() {
base_src_unpack
# Grrr, Cabal build-depends on the util package which is one of the old
# hslibs packages. Exposing util breaks lots of things. Fortunately cabal
# doesn't actually use anything fro util so we can remove it. A patch has
# been sent upstream so remove this hack on the next cabal iteration.
# Update: Seems that solving this upstream causes problems on Windows, so
# this hack will remain for now.
if $(ghc-cabal); then
sed -i 's/Build-Depends: base, util/Build-Depends: base/' ${S}/Cabal.cabal
else
sed -i 's/Build-Depends: base, util/Build-Depends: base, unix/' ${S}/Cabal.cabal
fi
# patch to make installed packages be exposed by default with
# ghc 6.2.2 (which is Cabal's default with ghc 6.4.1)
cd ${S}
epatch "${FILESDIR}/${PN}-1.1.3-ghc622.patch"
}
src_compile() {
if ghc-cabal; then
make setup HC="$(ghc-getghc) -ignore-package Cabal"
else
make setup HC="$(ghc-getghc)"
fi
cabal-configure
cabal-build
}
src_install() {
cabal_src_install
# 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
}
pkg_postinst () {
if ghc-cabal && ghc-package-exists "Cabal-1.0"; then
ebegin "Unregistering ghc's built-in cabal "
$(ghc-getghcpkg) unregister "Cabal-1.0" > /dev/null
eend $?
fi
ghc-package_pkg_postinst
}
|