blob: 9806d2645954f2934f2eacbb8f06ac32464f1547 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools elisp-common flag-o-matic
MY_PN=Singular
MY_PV=$(ver_rs 3 '')
# Consistency is different...
MY_DIR2=$(ver_cut 1-3 ${PV})
MY_DIR=$(ver_rs 1- '-' ${MY_DIR2})
DESCRIPTION="Computer algebra system for polynomial computations"
HOMEPAGE="https://www.singular.uni-kl.de/ https://github.com/Singular/Singular"
SRC_URI="ftp://jim.mathematik.uni-kl.de/pub/Math/${MY_PN}/SOURCES/${MY_DIR}/${PN}-${MY_PV}.tar.gz"
S="${WORKDIR}/${PN}-${MY_DIR2}"
LICENSE="BSD GPL-2 GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~riscv ~x86 ~x86-linux"
IUSE="emacs examples julia polymake +readline static-libs"
RDEPEND="
dev-lang/perl
dev-libs/gmp:0
dev-libs/ntl:=
sci-libs/cddlib
sci-mathematics/flint
emacs? ( >=app-editors/emacs-23.1:* )
julia? ( dev-lang/julia )
polymake? ( sci-mathematics/polymake )
readline? ( sys-libs/readline )
"
DEPEND="${RDEPEND}"
SITEFILE=60${PN}-gentoo.el
PATCHES=(
"${FILESDIR}/${PN}-4.2.1-htmldoc.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
# Needed to avoid segfaults in the test suite until
#
# https://github.com/Singular/Singular/issues/1105
#
# makes its way into a release.
append-cxxflags $(test-flags-CXX -fno-delete-null-pointer-checks)
local myconf=(
--disable-debug
--disable-doc
--disable-optimizationflags
--disable-pyobject-module
--disable-python
--disable-python-module
--disable-python_module
--enable-factory
--enable-gfanlib
--enable-libfac
--with-flint
--with-gmp
--with-libparse
--with-ntl
--without-python
--without-pythonmodule
$(use_enable emacs)
$(use_enable julia)
$(use_enable polymake polymake-module)
$(use_enable static-libs static)
$(use_with readline)
)
econf "${myconf[@]}"
}
src_compile() {
default
if use emacs; then
pushd "${S}"/emacs
elisp-compile *.el || die "elisp-compile failed"
popd
fi
}
src_install() {
# Do not compress singular's info file (singular.hlp)
# some consumer of that file do not know how to deal with compression
docompress -x /usr/share/info
default
dosym Singular /usr/bin/"${PN}"
# purge .la file
find "${ED}" -name '*.la' -delete || die
}
src_test() {
# SINGULAR_PROCS_DIR need to be set to "" otherwise plugins from
# an already installed version of singular may be used and cause segfault
# See https://github.com/Singular/Sources/issues/980
SINGULAR_PROCS_DIR="" emake check
}
pkg_postinst() {
einfo "Additional functionality can be enabled by installing"
einfo "sci-mathematics/4ti2"
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|