diff options
author | Ulrich Müller <ulm@gentoo.org> | 2013-11-02 10:26:02 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2013-11-02 10:26:02 +0000 |
commit | 71cc277e67b0b10dc44b1f21a1f423b97a1877f0 (patch) | |
tree | 065c547598805e0a897efe190e471f400164185e /app-emacs/org-mode | |
parent | Add new meta that contain also the freshly added packages. (diff) | |
download | gentoo-2-71cc277e67b0b10dc44b1f21a1f423b97a1877f0.tar.gz gentoo-2-71cc277e67b0b10dc44b1f21a1f423b97a1877f0.tar.bz2 gentoo-2-71cc277e67b0b10dc44b1f21a1f423b97a1877f0.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs/org-mode')
-rw-r--r-- | app-emacs/org-mode/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/org-mode/org-mode-8.2.1.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/app-emacs/org-mode/ChangeLog b/app-emacs/org-mode/ChangeLog index f8e589a76cf1..e28d616d5bd6 100644 --- a/app-emacs/org-mode/ChangeLog +++ b/app-emacs/org-mode/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/org-mode # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.159 2013/09/23 17:53:53 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.160 2013/11/02 10:26:02 ulm Exp $ + +*org-mode-8.2.1 (02 Nov 2013) + + 02 Nov 2013; Ulrich Müller <ulm@gentoo.org> +org-mode-8.2.1.ebuild: + Version bump. *org-mode-8.2 (23 Sep 2013) diff --git a/app-emacs/org-mode/org-mode-8.2.1.ebuild b/app-emacs/org-mode/org-mode-8.2.1.ebuild new file mode 100644 index 000000000000..c4849260bf1d --- /dev/null +++ b/app-emacs/org-mode/org-mode-8.2.1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-8.2.1.ebuild,v 1.1 2013/11/02 10:26:02 ulm Exp $ + +EAPI=5 +NEED_EMACS=23 + +inherit elisp + +DESCRIPTION="An Emacs mode for notes and project planning" +HOMEPAGE="http://www.orgmode.org/" +SRC_URI="http://orgmode.org/org-${PV}.tar.gz" + +LICENSE="GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-macos" +IUSE="contrib doc odt-schema" +RESTRICT="test" + +DEPEND="doc? ( virtual/texi2dvi )" + +S="${WORKDIR}/org-${PV}" +SITEFILE="50${PN}-gentoo-8.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}" + + if use contrib; then + elisp-install ${PN}/contrib contrib/lisp/{org,ob,ox}*.el + insinto /usr/share/doc/${PF}/contrib + doins -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 doc/library-of-babel.org doc/orgcard.txt etc/ORG-NEWS + use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf +} |