blob: 39b6ad272cd4ddc9d6c27906d14e9b50e3614ef0 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-1.07.ebuild,v 1.2 2004/01/05 21:32:10 aliz 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="~x86"
DEPEND=">=dev-lang/ocaml-3.07"
libdir=/usr/lib/hevea
bindir=/usr/bin
src_compile() {
make LIBDIR=$libdir BINDIR=$bindir || die
}
src_install() {
dodir $libdir
dodir $bindir
make BINDIR=${D}/$bindir LIBDIR=${D}/$libdir install || die
insinto /etc/env.d
doins ${FILESDIR}/99hevea
dodoc README CHANGES LICENSE
}
|