blob: 5b084316f520f534139f8e84a00ef0e0330ee01e (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/imaxima/imaxima-1.0-r2.ebuild,v 1.7 2013/01/02 21:03:31 ulm Exp $
EAPI=3
inherit elisp
MY_P="${PN}-imath-${PV/_}"
DESCRIPTION="Imaxima enables graphical output in Maxima sessions with emacs"
HOMEPAGE="http://sites.google.com/site/imaximaimath/"
SRC_URI="http://members3.jcom.home.ne.jp/imaxima/Site/Download_and_Install_files/${MY_P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="examples"
DEPEND=""
RDEPEND="virtual/latex-base
app-text/ghostscript-gpl
dev-tex/mh
<sci-mathematics/maxima-5.29"
S="${WORKDIR}/${MY_P}"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
# Remove broken Info file (will be recreated)
rm imaxima.info
}
src_configure() {
econf --with-lispdir="${EPREFIX}${SITELISP}/${PN}"
}
# This is NOT redundant, elisp.eclass redefines src_compile
src_compile() {
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc ChangeLog NEWS README || die
if use examples; then
docinto imath-example
dodoc imath-example/*.txt || die
dohtml -r imath-example/. || die
fi
}
|