mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools findlib toolchain-funcs
|
|
|
|
DESCRIPTION="Deductive proof of ACSL contracts (WP) plugin for frama-c"
|
|
HOMEPAGE="https://frama-c.com"
|
|
NAME="Chromium"
|
|
SRC_URI="https://frama-c.com/download/frama-c-${PV}-${NAME}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="coq gtk +ocamlopt"
|
|
RESTRICT="strip"
|
|
|
|
RDEPEND="~sci-mathematics/frama-c-${PV}:=[gtk?,ocamlopt?]
|
|
~sci-mathematics/frama-c-qed-${PV}:=[gtk?,ocamlopt?]
|
|
~sci-mathematics/frama-c-rtegen-${PV}:=[ocamlopt?]
|
|
>=sci-mathematics/why3-1.4.0"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="coq? ( >=sci-mathematics/coq-8.12.0
|
|
<sci-mathematics/coq-8.14.0 )"
|
|
|
|
S="${WORKDIR}/frama-c-${PV}-${NAME}/src/plugins/wp"
|
|
|
|
src_prepare() {
|
|
export FRAMAC_SHARE="${ESYSROOT}/usr/share/frama-c"
|
|
export FRAMAC_LIBDIR="${EPREFIX}/usr/$(get_libdir)/frama-c"
|
|
export ENABLE_GUI="$(usex gtk yes no)"
|
|
eautoconf
|
|
eapply_user
|
|
}
|
|
|
|
src_configure() {
|
|
export ENABLE_QED=yes
|
|
export ENABLE_RTEGEN=yes
|
|
econf --enable-wp \
|
|
$(use_enable coq wp-coq)
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export AR
|
|
emake FRAMAC_SHARE="${FRAMAC_SHARE}" FRAMAC_LIBDIR="${FRAMAC_LIBDIR}" ENABLE_GUI="${ENABLE_GUI}"
|
|
}
|
|
|
|
src_install() {
|
|
emake FRAMAC_SHARE="${FRAMAC_SHARE}" FRAMAC_LIBDIR="${FRAMAC_LIBDIR}" ENABLE_GUI="${ENABLE_GUI}" DESTDIR="${ED}" install
|
|
}
|