blob: 24a6582d4eab15ebb40f105a6756791c7b1a2743 (
plain)
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
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="git@github.com:haubi/parity.git https://github.com/haubi/parity.git"
DEPEND="dev-util/confix"
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
KEYWORDS=""
fi
DESCRIPTION="A POSIX to native Win32 Cross-Compiler Tool (requires Visual Studio)"
HOMEPAGE="https://github.com/haubi/parity"
parity-vcarchs() { echo x86 ; }
parity-vcvers() { echo 7_0 7_1 8_0 9_0 10_0 11_0 12_0 14_0 15_0 ; }
LICENSE="LGPL-3"
SLOT="0"
IUSE="$(
for a in $(parity-vcarchs); do echo "+vc_${a}"; done
for v in $(parity-vcvers); do echo "+vc${v}"; done
)"
if [[ ${PV} == 9999 ]]; then
src_prepare() {
confix --bootstrap || die
default
}
fi
parity-enabled-vcarchs() {
local enabled= a
for a in $(parity-vcarchs) ; do
if use vc_${a} ; then
enabled+=",${a}"
fi
done
echo ${enabled#,}
}
parity-enabled-vcvers() {
local enabled= v
for v in $(parity-vcvers) ; do
if use vc${v} ; then
enabled+=",${v/_/.}"
fi
done
echo ${enabled#,}
}
src_configure() {
local myconf=(
--enable-msvc-archs="$(parity-enabled-vcarchs)"
--enable-msvc-versions="$(parity-enabled-vcvers)"
--disable-default-msvc-version
)
econf "${myconf[@]}"
}
pkg_postinst() {
if [[ -n ${ROOT%/} ]] ; then
einfo "To enable all available MSVC versions, on the target machine please run:"
einfo " '${EPREFIX}/usr/bin/parity-setup' --enable-all"
else
"${EPREFIX}"/usr/bin/parity-setup --enable-all
fi
}
|