forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spark-2017.ebuild
61 lines (50 loc) · 1.56 KB
/
spark-2017.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs multiprocessing
MYP=${PN}-gpl-${PV}
DESCRIPTION="Software development for high-reliability applications."
HOMEPAGE="http://libre.adacore.com"
SRC_URI="http://mirrors.cdn.adacore.com/art/591c4777c7a447af2deed05e
-> ${MYP}-src.tar.gz
http://mirrors.cdn.adacore.com/art/591adbb4c7a4473fcc4532a3
-> gnat-gpl-2017-src.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-lang/gnat-gpl:6.3.0
>=dev-ada/gnatcoll-2017[gnat_2017,projects]
|| ( dev-ada/gnatcoll[shared] dev-ada/gnatcoll[static] )
sci-mathematics/alt-ergo
sci-mathematics/why3-for-spark"
DEPEND="${RDEPEND}
dev-ada/gprbuild[gnat_2017]"
S="${WORKDIR}"/${MYP}-src
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_prepare() {
ln -sf "${WORKDIR}"/gnat-gpl-2017-src/src/ada gnat2why/gnat_src || die
GCC_PV=6.3.0
sed -i \
-e "s:gnatmake:gnatmake-${GCC_PV}:g" \
-e "s:gnatls:gnatls-${GCC_PV}:g" \
Makefile \
gnat2why/Makefile || die
default
}
src_compile() {
emake gnat2why gnatprove
}
src_install() {
emake INSTALLDIR="${D}"/usr install
einstalldocs
dosym ../../../lib64/why3/why3server /usr/libexec/spark/bin/why3server
dobin install/bin/gnatprove
mv install/share/doc/spark/* "${D}"/usr/share/doc/${PF} || die
exeinto /usr/libexec/spark/bin
doexe install/bin/gnat2why
doexe install/bin/spark_memcached_wrapper
doexe install/bin/spark_report
doexe install/bin/spark_codepeer_wrapper
mv "${D}"/usr/bin/target.atp "${D}"/usr/libexec/spark/bin || die
}