summaryrefslogtreecommitdiff
blob: 75f56549389dcce7586d2ad28aeecbe3c2c26e55 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/hdoc-0.8.3.ebuild,v 1.2 2005/01/01 18:04:54 eradicator Exp $

DESCRIPTION="A documentation generator for Haskell"

HOMEPAGE="http://www.fmi.uni-passau.de/~groessli/hdoc/"

LICENSE="GPL-2"

IUSE=""
SLOT="0"
KEYWORDS="~x86"

DEPEND="virtual/ghc"
RDEPEND="virtual/libc"

SRC_URI="http://www.fmi.uni-passau.de/~groessli/hdoc/${P}.tar.gz"

src_compile() {
	econf --with-compiler=ghc || die "econf failed"
	emake || die "emake failed"
}

src_install () {
	# DESTDIR does not work, but only bindir is used ...
	make bindir=${D}/usr/bin install || die "installation failed"
	dodoc docs/hdoc.pdf
}