blob: d759c0bd83ca2477318a1151f3238d0f58e85596 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-2.0.1-r1.ebuild,v 1.3 2005/07/09 20:28:17 agriffis Exp $
#
# USE variable summary:
# doc - Build extra documenation from DocBook sources,
# in HTML format.
# java - Build the above docs as PostScript as well.
inherit base eutils ghc-package
IUSE="doc java"
DESCRIPTION="A lexical analyser generator for Haskell"
SRC_URI="http://www.haskell.org/alex/dist/${P}-src.tar.gz"
HOMEPAGE="http://www.haskell.org/alex"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
LICENSE="as-is"
DEPEND=">=virtual/ghc-6.2
doc? ( ~app-text/docbook-xml-dtd-4.2
app-text/docbook-xsl-stylesheets
>=dev-libs/libxslt-1.1.2
java? ( >=dev-java/fop-0.20.5 ) )"
RDEPEND=""
src_compile() {
einfo "$(get_libdir)"
local mydoc
econf || die "econf failed"
# determine what to do with documentation
if use doc; then
mydoc="html"
if use java; then
mydoc="${mydoc} ps"
fi
else
mydoc=""
# needed to prevent haddock from being called
echo NO_HADDOCK_DOCS=YES >> mk/build.mk
fi
echo XMLDocWays="${mydoc}" >> mk/build.mk
emake -j1 || die "make failed"
}
src_install() {
local insttarget
insttarget="install"
use doc && insttarget="${insttarget} install-docs"
emake -j1 ${insttarget} \
prefix="${D}/usr" \
datadir="${D}/usr/share/doc/${PF}" \
infodir="${D}/usr/share/info" \
mandir="${D}/usr/share/man" \
libdir0="${D}/usr/$(get_libdir)" \
|| die "make ${insttarget} failed"
cd ${S}/haddock
dodoc README
}
|