blob: a6741b6bb0765a73781a1d0982a72d8dea468208 (
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils elisp-common flag-o-matic multilib prefix toolchain-funcs versionator
MY_PN=Singular
MY_PV=$(replace_all_version_separators '.')
# Consistency is different...
MY_DIR2=$(get_version_component_range 1-3 ${PV})
MY_DIR=$(replace_all_version_separators '-' ${MY_DIR2})
# This is where the share tarball unpacks to
MY_SHARE_DIR="${WORKDIR}"/share/
DESCRIPTION="Computer algebra system for polynomial computations"
HOMEPAGE="https://www.singular.uni-kl.de/"
SRC_URI="https://www.mathematik.uni-kl.de/ftp/pub/Math/${MY_PN}/SOURCES/${MY_DIR}/${PN}-${MY_PV}.tar.gz
https://www.mathematik.uni-kl.de/ftp/pub/Math/${MY_PN}/SOURCES/${MY_DIR}/${PN}-${MY_PV}-share.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-linux"
IUSE="boost doc emacs examples python +readline"
RDEPEND="dev-libs/gmp:0
>=dev-libs/ntl-5.5.1
emacs? ( >=app-editors/emacs-23.1:* )
sci-mathematics/flint
sci-mathematics/4ti2
sci-libs/cddlib"
DEPEND="${RDEPEND}
dev-lang/perl
boost? ( dev-libs/boost )
readline? ( sys-libs/readline )"
SITEFILE=60${PN}-gentoo.el
S="${WORKDIR}/${PN}-${MY_DIR2}"
pkg_setup() {
append-flags "-fPIC"
append-ldflags "-fPIC"
tc-export AR CC CPP CXX
}
src_prepare() {
# Need to do something about resources later...
# epatch "${FILESDIR}"/${PN}-4.0.0-gentoo.patch
# omalloc's old configure will fail if ar is not exactly 'ar'.
epatch "${FILESDIR}"/${PN}-4.0.0-fix-omalloc-ar-detection.patch
epatch "${FILESDIR}"/${PN}-4.0.2-ntl8-compat.patch
# autoreconf everything since otherwise it assumes autmake-1.13 is installed
eautoreconf
}
src_configure() {
econf --with-gmp \
--with-ntl \
--with-flint \
--enable-gfanlib \
--disable-debug \
--disable-doc \
--enable-factory \
--enable-libfac \
--enable-IntegerProgramming \
$(use_with python python embed) \
$(use_with boost Boost) \
$(use_enable emacs) \
$(use_with readline) || die "configure failed"
}
src_compile() {
emake
if use emacs; then
cd "${MY_SHARE_DIR}"singular/emacs/
elisp-compile *.el || die "elisp-compile failed"
fi
}
# src_install() {
# dodoc README
# # execs and libraries
# cd "${S}"/build/bin
# dobin ${MY_PN}* gen_test change_cost solve_IP toric_ideal LLL
# insinto /usr/$(get_libdir)/${PN}
# doins *.so
#
# dosym ${MY_PN}-${MY_DIR} /usr/bin/${MY_PN}
#
# # stuff from the share tar ball
# cd "${WORKDIR}"/${MY_PN}/${MY_SHARE_DIR}
# insinto /usr/share/${PN}
# doins -r LIB
# if use examples; then
# insinto /usr/share/doc/${PF}
# doins -r examples
# fi
# if use doc; then
# dohtml -r html/*
# insinto /usr/share/${PN}
# doins doc/singular.idx
# cp info/${PN}.hlp info/${PN}.info &&
# doinfo info/${PN}.info \
# || die "failed to install info files"
# fi
# if use emacs; then
# elisp-install ${PN} emacs/*.el emacs/*.elc emacs/.emacs* \
# || die "elisp-install failed"
# elisp-site-file-install "${FILESDIR}/${SITEFILE}"
# fi
# }
pkg_postinst() {
einfo "The authors ask you to register as a SINGULAR user."
einfo "Please check the license file for details."
if use emacs; then
echo
ewarn "Please note that the ESingular emacs wrapper has been"
ewarn "removed in favor of full fledged singular support within"
ewarn "Gentoo's emacs infrastructure; i.e. just fire up emacs"
ewarn "and you should be good to go! See bug #193411 for more info."
echo
fi
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|