blob: b4ad1a479461c15ec1515af79c25b20b24517345 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/imaxima/imaxima-0.94b.ebuild,v 1.1 2006/10/31 11:32:29 je_fro Exp $
inherit eutils elisp
MY_P="${PN}-imath-${PV}"
DESCRIPTION="Imaxima enables graphical output in Maxima sessions with emacs"
HOMEPAGE="http://members3.jcom.home.ne.jp/imaxima/Site/Welcome.html"
SRC_URI="http://members3.jcom.home.ne.jp/imaxima/Site/Download%20and%20Install_files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE=""
DEPEND="virtual/emacs
virtual/tetex
virtual/ghostscript
|| ( >=dev-tex/breqn-0.94 app-text/texlive )
>=sci-mathematics/maxima-5.10.0"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-imaxima.el.patch
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
elisp-site-file-install ${FILESDIR}/50imaxima-gentoo.el
dodoc ChangeLog NEWS README
docinto imath-example
dodoc imath-example/*.txt
}
|