blob: 7251998a56efb81e8c5223ae294f180e9b24e52b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/cabal-1.6.0.2.ebuild,v 1.2 2009/03/09 04:21:20 mr_bones_ Exp $
CABAL_FEATURES="bootstrap lib profile"
inherit haskell-cabal eutils
MY_PN="Cabal"
MY_P="${MY_PN}-${PV}"
# 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.1
FP_P=${FP_PN}-${FP_PV}
DESCRIPTION="A framework for packaging Haskell software"
HOMEPAGE="http://www.haskell.org/cabal/"
SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz
http://hackage.haskell.org/packages/archive/${FP_PN}/${FP_PV}/${FP_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"
DEPEND=">=dev-lang/ghc-6.4"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
# We're using the private copy of filepath:
sed -i -e 's/Build-Depends: filepath >= 1 && < 1.2//' \
-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.hs \
-o setup || die "compiling Setup.hs failed"
cabal-configure
cabal-build
fi
}
|