Install this version:
emerge -a =sci-mathematics/proverif-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-mathematics/proverif-9999
Or alternatively:
emerge --autounmask-write -a =sci-mathematics/proverif-9999
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo elisp-common findlib
DESCRIPTION="Cryptographic protocol verifier in the formal model"
HOMEPAGE="https://bblanche.gitlabpages.inria.fr/proverif/
https://gitlab.inria.fr/bblanche/proverif/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.inria.fr/bblanche/${PN}.git"
S="${WORKDIR}/${P}/${PN}"
else
SRC_URI="https://gitlab.inria.fr/bblanche/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
S="${WORKDIR}/${PN}-v${PV}/${PN}"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2+"
SLOT="0"
IUSE="emacs"
RDEPEND="
dev-lang/ocaml:=[ocamlopt]
emacs? ( >=app-editors/emacs-25:* )
"
DEPEND="
${RDEPEND}
"
DOCS=( CHANGES README docs/dev docs/manual )
SITEFILE="50${PN}-gentoo.el"
src_compile() {
edo sh ./build -nointeract
if use emacs ; then
cd "${S}/emacs" || die
elisp-compile *.el
fi
}
src_test() {
edo sh ./test
}
src_install() {
findlib_src_preinst
exeinto /usr/bin
doexe proverif
doexe proveriftotex
if use emacs ; then
elisp-install "${PN}" "${S}/emacs"/*.el{,c}
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
einstalldocs
}
Manage flags for this package:
euse -i <flag> -p sci-mathematics/proverif |
euse -E <flag> -p sci-mathematics/proverif |
euse -D <flag> -p sci-mathematics/proverif
dev-lang/ocaml:=[ocamlopt] emacs? ( >=app-editors/emacs-25:* )
dev-lang/ocaml:=[ocamlopt] emacs? ( >=app-editors/emacs-25:* )