Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/ess: ess-5.3.11.ebuild ChangeLog
Date: Thu, 29 Jan 2009 01:44:05
Message-Id: E1LSLwp-0006zm-Jw@stork.gentoo.org
1 fauli 09/01/29 01:44:03
2
3 Modified: ChangeLog
4 Added: ess-5.3.11.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 i686)
8
9 Revision Changes Path
10 1.40 app-emacs/ess/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ess/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ess/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ess/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/ess/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 30 Dec 2008 23:30:37 -0000 1.39
23 +++ ChangeLog 29 Jan 2009 01:44:03 -0000 1.40
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emacs/ess
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ChangeLog,v 1.39 2008/12/30 23:30:37 ulm Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ChangeLog,v 1.40 2009/01/29 01:44:03 fauli Exp $
30 +
31 +*ess-5.3.11 (29 Jan 2009)
32 +
33 + 29 Jan 2009; Christian Faulhammer <fauli@g.o> +ess-5.3.11.ebuild:
34 + version bump
35
36 *ess-5.3.10 (30 Dec 2008)
37
38
39
40
41 1.1 app-emacs/ess/ess-5.3.11.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ess/ess-5.3.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ess/ess-5.3.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ess-5.3.11.ebuild
47 ===================================================================
48 # Copyright 1999-2009 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.3.11.ebuild,v 1.1 2009/01/29 01:44:03 fauli Exp $
51
52 inherit elisp
53
54 DESCRIPTION="Emacs Speaks Statistics"
55 HOMEPAGE="http://ess.r-project.org/"
56 SRC_URI="http://ess.r-project.org/downloads/ess/${P}.tgz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="app-text/texi2html
64 virtual/latex-base"
65 RDEPEND=""
66
67 SITEFILE="50${PN}-gentoo.el"
68
69 src_compile() {
70 emake || die "emake failed"
71 }
72
73 src_install() {
74 # Install all elisp sources; the Makefile installs only part of them.
75 # This has to go before emake install, see bug 205156 comment 3.
76 elisp-install ${PN} lisp/ess*.el || die
77
78 # make install fails to create some directories
79 dodir /usr/share/doc/${PF}/{html,refcard}
80
81 emake PREFIX="${D}/usr" \
82 INFODIR="${D}/usr/share/info" \
83 LISPDIR="${D}${SITELISP}/ess" \
84 DOCDIR="${D}/usr/share/doc/${PF}" \
85 install || die "emake install failed"
86
87 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
88
89 # Most documentation is installed by the package's build system
90 dodoc ChangeLog doc/{NEWS,TODO,ess-intro.pdf} || die "dodoc failed"
91 newdoc lisp/ChangeLog ChangeLog-lisp || die "newdoc failed"
92 prepalldocs
93 }
94
95 pkg_postinst() {
96 elisp-site-regen
97 elog "Please see /usr/share/doc/${PF} for the complete documentation."
98 elog "Usage hints are in ${SITELISP}/${PN}/ess-site.el ."
99 }