blob: f3550bb258558a42d670309bb10ce12b749c4982 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haxml/haxml-1.12.ebuild,v 1.10 2007/12/13 00:47:17 dcoutts Exp $
inherit ghc-package fixheadtails
MY_PN=HaXml
MY_P=${MY_PN}-${PV}
DESCRIPTION="Haskell utilities for parsing, filtering, transforming and generating XML documents"
HOMEPAGE="http://www.haskell.org/HaXml/"
SRC_URI="http://www.haskell.org/HaXml/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc"
# actually, >=ghc-5.02 should be ok
# hugs and nhc98 are ok too, somebody might want to add support for them
DEPEND=">=dev-lang/ghc-6.0
!>=dev-lang/ghc-6.6
doc? ( >=dev-haskell/haddock-0.6-r2 )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
ht_fix_file "${S}/configure"
}
src_compile() {
./configure --prefix="${D}/usr/bin" \
|| die "./configure failed"
# we only support ghc currently; overrides auto-detection
echo ghc > "${S}/obj/compilers"
emake -j1 || die "make failed"
# create documentation if requested
if use doc; then
emake -j1 haddock || die "make doc failed"
fi
# prepare installation of the pkg.conf-file
if $(ghc-cabal); then
ghc-setup-pkg
$(ghc-getghcpkg) -f "${S}/$(ghc-localpkgconf)" --force register "${FILESDIR}/${MY_P}.cabal"
else
ghc-setup-pkg "${S}/obj/ghc/pkg.conf"
fi
# make sure the libdir is correct
ghc-fixlibpath '$libdir'
}
src_install() {
# fix so it installs into image dir
echo "${D}/$(ghc-libdir) > "${S}/obj/ghc/ghclibdir"
echo "${D}/$(ghc-libdir)/imports > "${S}/obj/ghc/ghcincdir"
# make sure all installation directories are there
mkdir -p "${D}/$(ghc-libdir)/imports"
emake -j1 install-filesonly || die "make install failed"
if use doc; then
dohtml -r docs/*
dodoc docs/icfp99.dvi docs/icfp99.ps.gz
fi
ghc-install-pkg
}
|