blob: 18230984cbec8149329a8e67db61bbe6a4135199 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit elisp readme.gentoo-r1
DESCRIPTION="Emacs Speaks Statistics"
HOMEPAGE="https://ess.r-project.org/
https://github.com/emacs-ess/ESS/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/emacs-ess/${PN^^}.git"
else
SRC_URI="https://github.com/emacs-ess/${PN^^}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${PN^^}-${PV}"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
fi
LICENSE="GPL-2+ GPL-3+ Texinfo-manual"
SLOT="0"
BDEPEND="
app-text/texi2html
dev-texlive/texlive-fontsextra
dev-texlive/texlive-latex
dev-texlive/texlive-latexextra
dev-texlive/texlive-mathscience
dev-texlive/texlive-plaingeneric
virtual/latex-base
"
DOCS=( ChangeLog NEWS ONEWS README
doc/html/{ess,news,readme}.html doc/{ess,readme}.pdf )
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
elisp_src_prepare
sed -e "s|font-lock-reference-face|font-lock-constant-face|g" \
-i lisp/*.el || die
}
src_compile() {
local -x BYTECOMPFLAGS="-L lisp -L lisp/obsolete"
elisp-compile lisp/*.el lisp/obsolete/*.el
emake autoloads
emake -C doc all html pdf
}
src_test() {
elisp-test-ert . -L lisp -L test -l test/ess-test.el
}
src_install() {
# Version >=18 doesn't install *.el files any more #685978
elisp-install "${PN}" lisp/*.{el,elc} lisp/obsolete/*.{el,elc}
elisp-make-site-file "${SITEFILE}" "${PN}" "(load \"ess-autoloads\" nil t)"
insinto "${SITEETC}/${PN}"
doins -r etc/*
doinfo ./doc/info/ess.info
local DOC_CONTENTS="\
Please see /usr/share/doc/${PF} for the complete documentation."
readme.gentoo_create_doc
einstalldocs
}
|