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