blob: e94c56789e5571b964e35281f9f6b9e1194b7929 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit elisp
DESCRIPTION="sci-mathematics/pari emacs mode"
HOMEPAGE="http://iml.univ-mrs.fr/~ramare/ServeurPerso/GP-PARI/"
SRC_URI="http://iml.univ-mrs.fr/~ramare/ServeurPerso/GP-PARI/latest-pari-distrib/${P}.tar.gz"
S="${WORKDIR}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="sci-mathematics/pari"
DEPEND="${RDEPEND}"
SITEFILE="64${PN}-gentoo.el"
DOCS="README CHANGES"
PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
src_prepare() {
default
if [ -f /usr/share/pari/pari.cfg ]; then
cp /usr/share/pari/pari.cfg . || die
elif [ -f /usr/share/pari/pari.cfg.bz2 ]; then
cp /usr/share/pari/pari.cfg.bz2 . || die
bunzip2 pari.cfg.bz2 || die
else
die "pari.cfg not found"
fi
}
src_compile() {
emake pari-conf.el
emake elc
}
|