2013-07-25 01:33:06 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-12-09 22:34:53 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-07-25 01:33:06 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ml/js_of_ocaml/js_of_ocaml-1.3.2.ebuild,v 1.2 2013/07/23 17:42:30 aballier Exp $
|
2012-12-09 22:34:53 +04:00
|
|
|
|
2013-07-25 01:33:06 +04:00
|
|
|
EAPI=5
|
2012-12-09 22:34:53 +04:00
|
|
|
|
|
|
|
inherit findlib
|
|
|
|
|
|
|
|
DESCRIPTION="A compiler from OCaml bytecode to javascript"
|
|
|
|
HOMEPAGE="http://ocsigen.org/js_of_ocaml/"
|
|
|
|
SRC_URI="http://www.ocsigen.org/download/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2.1-with-linking-exception"
|
2013-07-25 01:33:06 +04:00
|
|
|
SLOT="0/${PV}"
|
2012-12-09 22:34:53 +04:00
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="+ocamlopt doc +deriving-ocsigen"
|
|
|
|
|
2013-07-25 01:33:06 +04:00
|
|
|
DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
|
|
|
|
>=dev-ml/lwt-2.3.0:=
|
|
|
|
deriving-ocsigen? ( >=dev-ml/deriving-ocsigen-0.3:= )"
|
2012-12-09 22:34:53 +04:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
use ocamlopt || echo "BEST := byte" >> Makefile.conf
|
|
|
|
use deriving-ocsigen || echo "DERIVING :=" >> Makefile.conf
|
|
|
|
echo "BINDIR := ${ED}/usr/bin" >> Makefile.conf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake
|
|
|
|
use doc && emake doc
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
findlib_src_preinst
|
|
|
|
emake install
|
|
|
|
dodoc CHANGES README
|
|
|
|
use doc && dohtml -r doc/api-html
|
|
|
|
}
|