# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 MY_PV="${PV/_p/pl}" MY_P="${PN}-${MY_PV}" inherit check-reqs desktop dune edo DESCRIPTION="Proof assistant written in O'Caml" HOMEPAGE="http://coq.inria.fr/ https://github.com/coq/coq/" SRC_URI="https://github.com/coq/coq/archive/V${MY_PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${MY_P}" LICENSE="LGPL-2.1" SLOT="0/${PV}" KEYWORDS="amd64 ~arm64 ~x86" IUSE="debug doc gui +ocamlopt test" # TODO: Lots of failing tests. Maybe investigate later. # RESTRICT="!test? ( test )" RESTRICT="test" RDEPEND=" dev-ml/num:= dev-ml/zarith:= gui? ( >=dev-ml/lablgtk-3.1.2:3=[sourceview,ocamlopt?] >=dev-ml/lablgtk-sourceview-3.1.2:3=[ocamlopt?] ) " DEPEND=" ${RDEPEND} " BDEPEND=" dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) /ocaml/ but # Coq wants /usr// ; symlink those directories local sym for sym in "${DUNE_PACKAGES[@]}" ; do dosym "${ocamlc_where}/${sym}" "/usr/$(get_libdir)/${sym}" done einstalldocs }