Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/org-mode/
Date: Sun, 27 Nov 2016 12:26:45
Message-Id: 1480249594.2bcef4197e17a40976bfa07a870794dd251fee69.ulm@gentoo
1 commit: 2bcef4197e17a40976bfa07a870794dd251fee69
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 27 12:22:02 2016 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 27 12:26:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bcef419
7
8 app-emacs/org-mode: Remove old.
9
10 Package-Manager: portage-2.3.2
11
12 app-emacs/org-mode/org-mode-8.3.2.ebuild | 54 --------------------------------
13 1 file changed, 54 deletions(-)
14
15 diff --git a/app-emacs/org-mode/org-mode-8.3.2.ebuild b/app-emacs/org-mode/org-mode-8.3.2.ebuild
16 deleted file mode 100644
17 index 88250cb..00000000
18 --- a/app-emacs/org-mode/org-mode-8.3.2.ebuild
19 +++ /dev/null
20 @@ -1,54 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -inherit elisp
28 -
29 -DESCRIPTION="An Emacs mode for notes and project planning"
30 -HOMEPAGE="http://www.orgmode.org/"
31 -SRC_URI="http://orgmode.org/org-${PV}.tar.gz"
32 -
33 -LICENSE="GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open )"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-macos"
36 -IUSE="contrib doc odt-schema"
37 -RESTRICT="test"
38 -
39 -DEPEND="doc? ( virtual/texi2dvi )"
40 -
41 -S="${WORKDIR}/org-${PV}"
42 -SITEFILE="50${PN}-gentoo.el"
43 -
44 -src_compile() {
45 - emake datadir="${EPREFIX}${SITEETC}/${PN}"
46 - use doc && emake pdf card
47 -}
48 -
49 -src_install() {
50 - emake \
51 - DESTDIR="${D}" \
52 - ETCDIRS="styles $(use odt-schema && echo schema)" \
53 - lispdir="${EPREFIX}${SITELISP}/${PN}" \
54 - datadir="${EPREFIX}${SITEETC}/${PN}" \
55 - infodir="${EPREFIX}/usr/share/info" \
56 - install
57 -
58 - cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}" || die
59 -
60 - if use contrib; then
61 - elisp-install ${PN}/contrib contrib/lisp/{org,ob,ox}*.el
62 - insinto /usr/share/doc/${PF}/contrib
63 - doins -r contrib/README contrib/scripts
64 - find "${ED}/usr/share/doc/${PF}/contrib" -type f -name '.*' \
65 - -exec rm -f '{}' '+'
66 - # add the contrib subdirectory to load-path
67 - sed -i -e 's:\(.*@SITELISP@\)\(.*\):&\n\1/contrib\2:' \
68 - "${T}/${SITEFILE}" || die
69 - fi
70 -
71 - elisp-site-file-install "${T}/${SITEFILE}"
72 - dodoc README doc/library-of-babel.org doc/orgcard.txt etc/ORG-NEWS
73 - use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf
74 -}