A new version of hevea 1.08 is out. I have written a new ebuild using the
previous one (1.07). It is my first ebuild, so i think a developper should
verify it.
Reproducible: Always
Steps to Reproduce:
Actual Results:
Install of hevea 1.08
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 ppc ~amd64"
DEPEND=">=dev-lang/ocaml-3.07"
prefix=/usr
src_compile() {
make PREFIX=$prefix || die
}
src_install() {
dodir $libdir
dodir $bindir
make PREFIX=${D}/$prefix install || die
insinto /etc/env.d
doins ${FILESDIR}/99hevea
dodoc README CHANGES LICENSE
}