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/org-mode: org-mode-7.02.ebuild ChangeLog org-mode-7.01h.ebuild
Date: Fri, 29 Oct 2010 13:13:56
Message-Id: 20101029131350.C4EF720051@flycatcher.gentoo.org
1 ulm 10/10/29 13:13:50
2
3 Modified: ChangeLog
4 Added: org-mode-7.02.ebuild
5 Removed: org-mode-7.01h.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.1.9.21/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.116 app-emacs/org-mode/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/ChangeLog?rev=1.116&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/ChangeLog?rev=1.116&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/ChangeLog?r1=1.115&r2=1.116
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v
21 retrieving revision 1.115
22 retrieving revision 1.116
23 diff -u -r1.115 -r1.116
24 --- ChangeLog 27 Oct 2010 05:53:50 -0000 1.115
25 +++ ChangeLog 29 Oct 2010 13:13:50 -0000 1.116
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-emacs/org-mode
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.115 2010/10/27 05:53:50 ulm Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.116 2010/10/29 13:13:50 ulm Exp $
31 +
32 +*org-mode-7.02 (29 Oct 2010)
33 +
34 + 29 Oct 2010; Ulrich Mueller <ulm@g.o> -org-mode-7.01h.ebuild,
35 + +org-mode-7.02.ebuild:
36 + Version bump.
37
38 *org-mode-7.01h-r1 (27 Oct 2010)
39
40
41
42
43 1.1 app-emacs/org-mode/org-mode-7.02.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/org-mode-7.02.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/org-mode-7.02.ebuild?rev=1.1&content-type=text/plain
47
48 Index: org-mode-7.02.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-7.02.ebuild,v 1.1 2010/10/29 13:13:50 ulm Exp $
53
54 NEED_EMACS=22
55
56 inherit elisp
57
58 DESCRIPTION="An Emacs mode for notes and project planning"
59 HOMEPAGE="http://www.orgmode.org/"
60 SRC_URI="http://orgmode.org/org-${PV}.tar.gz"
61
62 LICENSE="GPL-3 FDL-1.3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
65 IUSE=""
66
67 S="${WORKDIR}/org-${PV}"
68 SITEFILE="50${PN}-gentoo.el"
69
70 src_compile() {
71 # remove autoload file to make sure that it is regenerated with
72 # the right Emacs version
73 rm -f lisp/org-install.el
74 emake || die
75 }
76
77 src_install() {
78 emake \
79 prefix="${D}/usr" \
80 lispdir="${D}${SITELISP}/${PN}" \
81 infodir="${D}/usr/share/info" \
82 install || die
83
84 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
85
86 doinfo doc/org || die "doinfo failed"
87 dodoc README Changes.org doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf \
88 || die
89 newdoc contrib/README README.contrib || die
90 }