mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
Having frama-c[gtk] can cause problems if there are plugins compiled with [-gtk]. It can also cause runtime issues. Closes: https://bugs.gentoo.org/817314 Closes: https://bugs.gentoo.org/817365 Signed-off-by: François-Xavier Carton <fx.carton91@gmail.com>
53 lines
1.4 KiB
Bash
53 lines
1.4 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="Vanadium"
|
|
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
|
|
<sci-mathematics/why3-1.5.0"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="coq? ( >=sci-mathematics/coq-8.12.0
|
|
<sci-mathematics/coq-8.13.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
|
|
}
|