blob: 53c6ab1fc4f30b67a9f309514fc9a02df0c1221b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-1.08.ebuild,v 1.4 2008/01/02 22:21:37 aballier Exp $
IUSE=""
DESCRIPTION="HeVeA is a quite complete and fast LaTeX to HTML translator"
HOMEPAGE="http://pauillac.inria.fr/~maranget/hevea/"
SRC_URI="ftp://ftp.inria.fr/INRIA/moscova/hevea/${P}.tar.gz"
LICENSE="QPL"
SLOT="0"
KEYWORDS="~sparc ~amd64 ~ppc ~x86"
DEPEND=">=dev-lang/ocaml-3.07"
src_compile() {
make PREFIX=/usr || die
}
src_install() {
make PREFIX="${D}"/usr install || die
doenvd "${FILESDIR}"/99hevea
dodoc README CHANGES
}
|