mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
46 lines
1.1 KiB
Bash
46 lines
1.1 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="Security slicing 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="+ocamlopt"
|
|
RESTRICT="strip"
|
|
|
|
RDEPEND="~sci-mathematics/frama-c-${PV}:=[gtk,ocamlopt?]
|
|
~sci-mathematics/frama-c-eva-${PV}:=[gtk,ocamlopt?]
|
|
~sci-mathematics/frama-c-pdg-${PV}:=[ocamlopt?]
|
|
~sci-mathematics/frama-c-slicing-${PV}:=[gtk,ocamlopt?]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/frama-c-${PV}-${NAME}/src/plugins/security_slicing"
|
|
|
|
src_prepare() {
|
|
export FRAMAC_SHARE="${ESYSROOT}/usr/share/frama-c"
|
|
export FRAMAC_LIBDIR="${EPREFIX}/usr/$(get_libdir)/frama-c"
|
|
eautoconf
|
|
eapply_user
|
|
}
|
|
|
|
src_configure() {
|
|
econf --enable-security-slicing
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export AR
|
|
emake FRAMAC_SHARE="${FRAMAC_SHARE}" FRAMAC_LIBDIR="${FRAMAC_LIBDIR}"
|
|
}
|
|
|
|
src_install() {
|
|
emake FRAMAC_SHARE="${FRAMAC_SHARE}" FRAMAC_LIBDIR="${FRAMAC_LIBDIR}" DESTDIR="${ED}" install
|
|
}
|