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/ess: ChangeLog ess-5.12-r1.ebuild
Date: Sun, 30 Jan 2011 11:59:43
Message-Id: 20110130115933.DB7CF2004E@flycatcher.gentoo.org
1 ulm 11/01/30 11:59:33
2
3 Modified: ChangeLog
4 Added: ess-5.12-r1.ebuild
5 Log:
6 Don't call prepalldocs, it is no longer needed with EAPI 4.
7
8 (Portage version: 2.1.9.35/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.74 app-emacs/ess/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ess/ChangeLog?rev=1.74&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ess/ChangeLog?rev=1.74&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ess/ChangeLog?r1=1.73&r2=1.74
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emacs/ess/ChangeLog,v
20 retrieving revision 1.73
21 retrieving revision 1.74
22 diff -u -r1.73 -r1.74
23 --- ChangeLog 8 Jan 2011 00:52:08 -0000 1.73
24 +++ ChangeLog 30 Jan 2011 11:59:33 -0000 1.74
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emacs/ess
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ChangeLog,v 1.73 2011/01/08 00:52:08 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ChangeLog,v 1.74 2011/01/30 11:59:33 ulm Exp $
30 +
31 +*ess-5.12-r1 (30 Jan 2011)
32 +
33 + 30 Jan 2011; Ulrich Mueller <ulm@g.o> +ess-5.12-r1.ebuild:
34 + Don't call prepalldocs, it is no longer needed with EAPI 4.
35
36 08 Jan 2011; Brent Baude <ranger@g.o> ess-5.12.ebuild:
37 Marking ess-5.12 ppc for bug 348198
38
39
40
41 1.1 app-emacs/ess/ess-5.12-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ess/ess-5.12-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ess/ess-5.12-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ess-5.12-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.12-r1.ebuild,v 1.1 2011/01/30 11:59:33 ulm Exp $
51
52 EAPI=4
53
54 inherit elisp
55
56 DESCRIPTION="Emacs Speaks Statistics"
57 HOMEPAGE="http://ess.r-project.org/"
58 SRC_URI="http://ess.r-project.org/downloads/ess/${P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
63 IUSE=""
64
65 DEPEND="app-text/texi2html
66 virtual/latex-base"
67 RDEPEND=""
68
69 SITEFILE="50${PN}-gentoo.el"
70
71 # This is NOT redundant, elisp.eclass redefines src_compile.
72 src_compile() {
73 emake
74 }
75
76 src_install() {
77 emake PREFIX="${ED}/usr" \
78 INFODIR="${ED}/usr/share/info" \
79 LISPDIR="${ED}${SITELISP}/ess" \
80 DOCDIR="${ED}/usr/share/doc/${PF}" \
81 install
82
83 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
84
85 # Most documentation is installed by the package's build system.
86 rm -f "${ED}${SITELISP}/ess/lisp/ChangeLog"
87 dodoc ChangeLog *NEWS doc/{TODO,ess-intro.pdf}
88 newdoc lisp/ChangeLog ChangeLog-lisp
89 }
90
91 pkg_postinst() {
92 elisp-site-regen
93 elog "Please see /usr/share/doc/${PF} for the complete documentation."
94 elog "Usage hints are in ${SITELISP}/${PN}/ess-site.el ."
95 }