summaryrefslogtreecommitdiff
blob: d5a97d174292852481a2c0ef448f4f1c68cfb1b1 (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
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

H=fe8b9fccb3690178be7fc455202c941c4c674ac3

inherit wrapper elisp

DESCRIPTION="A generic interface for proof assistants"
HOMEPAGE="https://proofgeneral.github.io/"
SRC_URI="https://github.com/ProofGeneral/PG/archive/${H}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/PG-${H}"

LICENSE="GPL-2+ GPL-2 GPL-3+ HPND CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="amd64 ppc x86"

PATCHES=(
	"${FILESDIR}"/${PN}-4.4-desktop.patch
	"${FILESDIR}"/${PN}-4.5-paths.patch
)
DOCS=( AUTHORS BUGS CHANGES COMPATIBILITY FAQ.md INSTALL README.md )
SITEFILE="50${PN}-gentoo.el"

src_prepare() {
	elisp_src_prepare

	sed -e "s|@EPREFIX@|${EPREFIX}|" \
		-e "s|@SITEETC@|${EPREFIX}${SITEETC}/${PN}|" \
		-i generic/proof-site.el || die
}

src_compile() {
	emake compile doc.info
}

src_install() {
	emake install-elisp install-bin install-desktop \
		PREFIX="${ED}"/usr \
		ELISP="${ED}${SITELISP}"/${PN} \
		DEST_ELISP="${EPREFIX}${SITELISP}"/${PN}
	elisp-site-file-install "${FILESDIR}/${SITEFILE}"

	# move images out of elisp dir
	mkdir -p "${ED}${SITEETC}"/${PN}/ || die
	mv "${ED}${SITELISP}"/${PN}/images "${ED}${SITEETC}"/${PN}/ || die

	# Create missing script, loosely translated from 4.4 version
	make_wrapper ${PN} "${EMACS} \
		-eval '(load \"${SITELISP}/${PN}/generic/proof-site.el\")' \
		-f proofgeneral \
		-f proof-splash-display-screen"

	doinfo doc/*.info*
	doman doc/proofgeneral.1
	einstalldocs
}