# 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 }