From 04229674316b171286b42c59a29a3661ce4d08ab Mon Sep 17 00:00:00 2001 From: René Neumann Date: Fri, 17 Feb 2012 19:02:56 +0100 Subject: Mlton --- dev-lang/mlton/mlton-20100608.ebuild | 58 ++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 dev-lang/mlton/mlton-20100608.ebuild (limited to 'dev-lang/mlton/mlton-20100608.ebuild') diff --git a/dev-lang/mlton/mlton-20100608.ebuild b/dev-lang/mlton/mlton-20100608.ebuild new file mode 100644 index 0000000..41c31dd --- /dev/null +++ b/dev-lang/mlton/mlton-20100608.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mlton/mlton-20070826-r1.ebuild,v 1.2 2010/07/11 22:01:52 hwoarang Exp $ + +inherit eutils + +DESCRIPTION="Standard ML optimizing compiler and libraries" +BASE_URI="http://mlton.org/pages/Download/attachments/" +SRC_URI="!binary? ( ${BASE_URI}/${P}-1.src.tgz ) + binary? ( amd64? ( ${BASE_URI}/${P}-1.amd64-linux.static.tgz ) + x86? ( ${BASE_URI}/${P}-1.x86-linux.static.tgz ) )" + +HOMEPAGE="http://www.mlton.org" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +IUSE="binary doc" + +DEPEND="dev-libs/gmp + doc? ( virtual/latex-base )" + +QA_PRESTRIPPED=" + usr/bin/mlnlffigen + usr/bin/mllex + usr/bin/mlprof + usr/bin/mlyacc + usr/lib/mlton/mlton-compile" + +src_compile() { + if use !binary; then + has_version dev-lang/mlton || die "emerge with binary use flag first" + + # Fix location in which to install man pages + sed -i 's@^MAN_PREFIX_EXTRA :=.*@MAN_PREFIX_EXTRA := /share@' \ + Makefile || die 'sed Makefile failed' + + # Does not support parallel make + emake -j1 all-no-docs || die + if use doc; then + export VARTEXFONTS="${T}/fonts" + emake docs || die "failed to create documentation" + fi + fi +} + +src_install() { + if use binary; then + # Fix location in which to install man pages + mv "${WORKDIR}/usr/man" "${WORKDIR}/usr/share" || die "mv man failed" + + mv "${WORKDIR}/usr" "${D}" || die "mv failed" + else + emake DESTDIR="${D}" install-no-docs || die + if use doc; then emake DESTDIR="${D}" TDOC="${D}"/usr/share/doc/${P} install-docs || die; fi + fi +} -- cgit v1.2.3-54-g00ecf