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