# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit findlib eutils autotools DESCRIPTION="A project to provide curses/ncurses bindings for the Objective Caml language (formerly called Text Mode Kit [TMK])" HOMEPAGE="http://www.nongnu.org/ocaml-tmk/" SRC_URI="https://download.savannah.nongnu.org/releases/ocaml-tmk/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0/${PV}" KEYWORDS="~amd64" IUSE="+ocamlopt doc unicode" DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt] \ sys-libs/ncurses[unicode?]" RDEPEND="${DEPEND}" S="${WORKDIR}/${P}" DOCS="CHANGES ncurses.txt" src_prepare() { default eautoreconf } src_configure() { econf $(use_enable unicode widec ) } src_compile() { emake all $(usex ocamlopt opt ) use doc && emake htdoc && HTML_DOCS="doc/curses/html/*" } src_install() { findlib_src_install einstalldocs }