blob: fef26cddee7915b44fb5231ba24f198c86a8597d (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Poly/ML is a full implementation of Standard ML"
HOMEPAGE="https://www.polyml.org"
SRC_URI="https://github.com/polyml/polyml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="X +gmp portable"
RDEPEND="
dev-libs/libffi:=
X? ( x11-libs/motif:0 )
gmp? ( >=dev-libs/gmp-5:= )
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-5.8.2-configure.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
local myconf=(
--enable-shared
--with-pic=pic-only
$(use_enable !portable native-codegeneration)
$(use_with X x)
$(use_with gmp)
)
econf "${myconf[@]}"
}
src_test() {
emake tests
}
src_install() {
default
rm "${D}"/usr/lib*/libpolyml.la || die
}
|