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: ChangeLog org-mode-7.8.03-r1.ebuild org-mode-7.8.02.ebuild org-mode-7.8.03.ebuild
Date: Thu, 05 Jan 2012 07:31:57
Message-Id: 20120105073147.13BA12004B@flycatcher.gentoo.org
1 ulm 12/01/05 07:31:45
2
3 Modified: ChangeLog
4 Added: org-mode-7.8.03-r1.ebuild
5 Removed: org-mode-7.8.02.ebuild org-mode-7.8.03.ebuild
6 Log:
7 Fix typo in site-init file, bug 397721. Remove old.
8
9 (Portage version: 2.1.10.44/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.140 app-emacs/org-mode/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/ChangeLog?rev=1.140&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/ChangeLog?rev=1.140&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/ChangeLog?r1=1.139&r2=1.140
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v
21 retrieving revision 1.139
22 retrieving revision 1.140
23 diff -u -r1.139 -r1.140
24 --- ChangeLog 4 Jan 2012 18:11:36 -0000 1.139
25 +++ ChangeLog 5 Jan 2012 07:31:45 -0000 1.140
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-emacs/org-mode
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.139 2012/01/04 18:11:36 phajdan.jr Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.140 2012/01/05 07:31:45 ulm Exp $
31 +
32 +*org-mode-7.8.03-r1 (05 Jan 2012)
33 +
34 + 05 Jan 2012; Ulrich Mueller <ulm@g.o> -org-mode-7.8.02.ebuild,
35 + -org-mode-7.8.03.ebuild, +org-mode-7.8.03-r1.ebuild,
36 + files/50org-mode-gentoo-7.8.03.el:
37 + Fix typo in site-init file, bug 397721. Remove old.
38
39 04 Jan 2012; Pawel Hajdan jr <phajdan.jr@g.o> org-mode-7.7.ebuild:
40 x86 stable wrt bug #396001
41
42
43
44 1.1 app-emacs/org-mode/org-mode-7.8.03-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/org-mode-7.8.03-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/org-mode/org-mode-7.8.03-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: org-mode-7.8.03-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-7.8.03-r1.ebuild,v 1.1 2012/01/05 07:31:45 ulm Exp $
54
55 EAPI=4
56 NEED_EMACS=22
57
58 inherit elisp
59
60 DESCRIPTION="An Emacs mode for notes and project planning"
61 HOMEPAGE="http://www.orgmode.org/"
62 SRC_URI="http://orgmode.org/org-${PV}.tar.gz"
63
64 LICENSE="GPL-3 FDL-1.3 contrib? ( GPL-2 MIT as-is )"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-macos"
67 IUSE="contrib"
68
69 S="${WORKDIR}/org-${PV}"
70 ELISP_PATCHES="${P}-Makefile.patch"
71 # Remove autoload file to make sure that it is regenerated with
72 # the right Emacs version.
73 ELISP_REMOVE="lisp/org-install.el"
74 SITEFILE="50${PN}-gentoo-${PV}.el"
75
76 src_compile() {
77 emake datadir="${SITEETC}/${PN}"
78 }
79
80 src_install() {
81 emake \
82 prefix="${ED}/usr" \
83 lispdir="${ED}${SITELISP}/${PN}" \
84 datadir="${ED}${SITEETC}/${PN}" \
85 infodir="${ED}/usr/share/info" \
86 install
87
88 cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}"
89
90 if use contrib; then
91 elisp-install ${PN}/contrib contrib/lisp/*org*.el || die
92 insinto /usr/share/doc/${PF}/contrib
93 doins -r contrib/README contrib/babel contrib/odt contrib/scripts
94 find "${ED}/usr/share/doc/${PF}/contrib" -type f -name '.*' \
95 -exec rm -f '{}' '+'
96 # add the contrib subdirectory to load-path
97 sed -ie 's:\(.*@SITELISP@\)\(.*\):&\n\1/contrib\2:' \
98 "${T}/${SITEFILE}" || die
99 fi
100
101 elisp-site-file-install "${T}/${SITEFILE}" || die
102 doinfo doc/org
103 dodoc README doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf
104 }