blob: 3204df5cfc9d99482a60823e5934524e643bebb1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/proofgeneral/proofgeneral-3.4.ebuild,v 1.6 2004/06/24 22:20:35 agriffis Exp $
SIMPLE_ELISP='nil'
inherit elisp
MY_PN="ProofGeneral"
DESCRIPTION="Proof General is a generic interface for proof assistants"
HOMEPAGE="http://proofgeneral.inf.ed.ac.uk/"
SRC_URI="http://proofgeneral.inf.ed.ac.uk/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND="virtual/emacs"
S="${WORKDIR}/${MY_PN}"
SITEFILE=50proofgeneral-gentoo.el
src_compile() {
einfo "Byte compilation not supported yet (see the INSTALL file)"
}
src_install() {
for dir in etc generic lego coq isa isar plastic demoisa hol98 phox twelf acl2
do
cd $dir
elisp-install ${PN}/$dir *
cd ..
done
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dohtml doc/*.html doc/*.jpg
doinfo doc/*.info*
dobin bin/*
dodoc README* TODO AUTHORS BUGS CHANGES FAQ INSTALL REGISTER
}
pkg_postinst() {
elisp-site-regen
einfo "Please register your use of Proof General on the web at:"
einfo " http://proofgeneral.inf.ed.ac.uk/register "
einfo "(see the REGISTER file for more information)"
}
pkg_postrm() {
elisp-site-regen
}
|