# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Standard ML optimizing compiler and libraries" SRC_URI="http://mlton.org/pages/Download/attachments/${P}-1.src.tgz" HOMEPAGE="http://www.mlton.org" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc" DEPEND="virtual/libc dev-libs/gmp dev-lang/mlton-bin" src_compile() { # Does not support parallel make emake -j1 || die } src_install() { emake DESTDIR=${D} install-no-docs if use doc; then make DESTDIR=${D} TDOC=${D}/usr/share/doc/${P} install-docs else cd doc && dodoc changelog license/* fi }