Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/imaxima: ChangeLog imaxima-1.0-r2.ebuild imaxima-1.0-r1.ebuild
Date: Sat, 27 Feb 2010 22:12:15
Message-Id: E1NlUtR-0000SZ-IZ@stork.gentoo.org
1 ulm 10/02/27 22:12:13
2
3 Modified: ChangeLog
4 Added: imaxima-1.0-r2.ebuild
5 Removed: imaxima-1.0-r1.ebuild
6 Log:
7 Fix GNU Info file.
8 (Portage version: 2.2_rc63/cvs/Linux i686)
9
10 Revision Changes Path
11 1.33 app-emacs/imaxima/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/imaxima/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/imaxima/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/imaxima/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emacs/imaxima/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 31 Jan 2010 12:34:37 -0000 1.32
24 +++ ChangeLog 27 Feb 2010 22:12:13 -0000 1.33
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-emacs/imaxima
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/imaxima/ChangeLog,v 1.32 2010/01/31 12:34:37 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/imaxima/ChangeLog,v 1.33 2010/02/27 22:12:13 ulm Exp $
30 +
31 +*imaxima-1.0-r2 (27 Feb 2010)
32 +
33 + 27 Feb 2010; Ulrich Mueller <ulm@g.o> -imaxima-1.0-r1.ebuild,
34 + +imaxima-1.0-r2.ebuild:
35 + Fix GNU Info file.
36
37 *imaxima-1.0-r1 (31 Jan 2010)
38
39
40
41
42 1.1 app-emacs/imaxima/imaxima-1.0-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/imaxima/imaxima-1.0-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/imaxima/imaxima-1.0-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: imaxima-1.0-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emacs/imaxima/imaxima-1.0-r2.ebuild,v 1.1 2010/02/27 22:12:13 ulm Exp $
52
53 EAPI=3
54
55 inherit elisp
56
57 MY_P="${PN}-imath-${PV/_}"
58 DESCRIPTION="Imaxima enables graphical output in Maxima sessions with emacs"
59 HOMEPAGE="http://sites.google.com/site/imaximaimath/"
60 SRC_URI="http://members3.jcom.home.ne.jp/imaxima/Site/Download_and_Install_files/${MY_P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
65 IUSE="examples"
66
67 DEPEND=""
68 RDEPEND="virtual/latex-base
69 app-text/ghostscript-gpl
70 dev-tex/mh
71 sci-mathematics/maxima"
72
73 S="${WORKDIR}/${MY_P}"
74 SITEFILE="50${PN}-gentoo.el"
75
76 src_prepare() {
77 # Remove broken Info file (will be recreated)
78 rm imaxima.info
79 }
80
81 src_configure() {
82 econf --with-lispdir="${EPREFIX}${SITELISP}/${PN}"
83 }
84
85 # This is NOT redundant, elisp.eclass redefines src_compile
86 src_compile() {
87 emake || die "emake failed"
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
93 dodoc ChangeLog NEWS README || die
94
95 if use examples; then
96 docinto imath-example
97 dodoc imath-example/*.txt || die
98 dohtml -r imath-example/. || die
99 fi
100 }