summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2021-11-26 14:15:43 +0100
committerUlrich Müller <ulm@gentoo.org>2021-11-26 14:15:43 +0100
commitf5cef88122a9815f01273eb48f02592f199f86d4 (patch)
tree1aaa98bc76f950291b8da034d4287324293e342d
parentapp-emacs/org-mode: Update EGIT_REPO_URI (diff)
downloademacs-f5cef88122a9815f01273eb48f02592f199f86d4.tar.gz
emacs-f5cef88122a9815f01273eb48f02592f199f86d4.tar.bz2
emacs-f5cef88122a9815f01273eb48f02592f199f86d4.zip
app-emacs/org-mode: Live ebuild moved to gentoo repository
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--app-emacs/org-mode/files/50org-mode-gentoo.el2
-rw-r--r--app-emacs/org-mode/metadata.xml28
-rw-r--r--app-emacs/org-mode/org-mode-9999.ebuild67
3 files changed, 0 insertions, 97 deletions
diff --git a/app-emacs/org-mode/files/50org-mode-gentoo.el b/app-emacs/org-mode/files/50org-mode-gentoo.el
deleted file mode 100644
index 431f52c..0000000
--- a/app-emacs/org-mode/files/50org-mode-gentoo.el
+++ /dev/null
@@ -1,2 +0,0 @@
-(add-to-list 'load-path "@SITELISP@")
-(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
diff --git a/app-emacs/org-mode/metadata.xml b/app-emacs/org-mode/metadata.xml
deleted file mode 100644
index 4f54f87..0000000
--- a/app-emacs/org-mode/metadata.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>gnu-emacs@gentoo.org</email>
- <name>Gentoo GNU Emacs project</name>
-</maintainer>
-<longdescription>
- Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
- project planning with a fast and effective plain-text system.
-
- Org-mode develops organizational tasks around NOTES files that contain
- information about projects as plain text. Org-mode is implemented on top of
- outline-mode, which makes it possible to keep the content of large files
- well structured. Visibility cycling and structure editing help to work with
- the tree. Tables are easily created with a built-in table editor. Org-mode
- supports ToDo items, deadlines, time stamps, and scheduling. It dynamically
- compiles entries into an agenda. Plain text URL-like links connect to
- websites, emails, Usenet messages, BBDB entries, and any files related to
- the projects. For printing and sharing of notes, an Org-mode file can be
- exported as a structured ASCII file, HTML, and LaTeX.
-</longdescription>
-<use>
- <flag name='contrib'>Install user-contributed files</flag>
- <flag name='odt-schema'>Install non-free schema files
- for OpenDocument Text exporter</flag>
-</use>
-</pkgmetadata>
diff --git a/app-emacs/org-mode/org-mode-9999.ebuild b/app-emacs/org-mode/org-mode-9999.ebuild
deleted file mode 100644
index 001559a..0000000
--- a/app-emacs/org-mode/org-mode-9999.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-NEED_EMACS=24
-
-inherit elisp readme.gentoo-r1
-
-if [[ ${PV} == 9999 ]]; then
- EGIT_REPO_URI="https://git.savannah.gnu.org/git/emacs/${PN}.git"
- EGIT_CHECKOUT_DIR="${WORKDIR}/org"
- inherit git-r3
- S="${WORKDIR}/org"
-else
- SRC_URI="https://orgmode.org/org-${PV}.tar.gz"
- S="${WORKDIR}/org-${PV}"
-fi
-
-DESCRIPTION="An Emacs mode for notes and project planning"
-HOMEPAGE="https://www.orgmode.org/"
-
-LICENSE="GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open )"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="contrib doc odt-schema"
-RESTRICT="test"
-
-BDEPEND="doc? ( virtual/texi2dvi )"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
- emake datadir="${EPREFIX}${SITEETC}/${PN}"
- use doc && emake pdf card
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- ETCDIRS="styles $(use odt-schema && echo schema)" \
- lispdir="${EPREFIX}${SITELISP}/${PN}" \
- datadir="${EPREFIX}${SITEETC}/${PN}" \
- infodir="${EPREFIX}/usr/share/info" \
- install
-
- cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}" || die
-
- if use contrib; then
- elisp-install ${PN}/contrib contrib/lisp/{org,ob,ox}*.el
- ( docinto contrib; dodoc -r contrib/README contrib/scripts )
- find "${ED}/usr/share/doc/${PF}/contrib" -type f -name '.*' \
- -exec rm -f '{}' '+'
- # add the contrib subdirectory to load-path
- sed -i -e 's:\(.*@SITELISP@\)\(.*\):&\n\1/contrib\2:' \
- "${T}/${SITEFILE}" || die
- fi
-
- elisp-site-file-install "${T}/${SITEFILE}"
- dodoc README etc/ORG-NEWS
- use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf
-
- DOC_CONTENTS="Org mode has a large variety of run-time dependencies,
- so you may have to install one or more additional packages.
- A non-exhaustive list of these dependencies may be found at
- <http://orgmode.org/worg/org-dependencies.html>."
- readme.gentoo_create_doc
-}