diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2010-07-21 07:00:01 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2010-07-21 07:00:01 +0000 |
commit | 395283dff28a8253bb79b965f0b0891dd86c07d9 (patch) | |
tree | 1a8cc7c7b80ef8602cc2444b34d9c5f74fd36f93 /app-emacs | |
parent | Initial import. New dependency of dev-ruby/mini_magick (diff) | |
download | gentoo-2-395283dff28a8253bb79b965f0b0891dd86c07d9.tar.gz gentoo-2-395283dff28a8253bb79b965f0b0891dd86c07d9.tar.bz2 gentoo-2-395283dff28a8253bb79b965f0b0891dd86c07d9.zip |
version bump, drop compatability with GNU Emacs 21, version 22 is the lowest workiorking with this; revamp ebuild a little bit
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/org-mode/ChangeLog | 9 | ||||
-rw-r--r-- | app-emacs/org-mode/org-mode-7.01f.ebuild | 42 |
2 files changed, 50 insertions, 1 deletions
diff --git a/app-emacs/org-mode/ChangeLog b/app-emacs/org-mode/ChangeLog index bb2bd51b1095..bd58b942fe31 100644 --- a/app-emacs/org-mode/ChangeLog +++ b/app-emacs/org-mode/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emacs/org-mode # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.103 2010/05/15 16:54:01 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.104 2010/07/21 07:00:01 fauli Exp $ + +*org-mode-7.01f (21 Jul 2010) + + 21 Jul 2010; Christian Faulhammer <fauli@gentoo.org> + +org-mode-7.01f.ebuild: + version bump, drop compatability with GNU Emacs 21, version 22 is the + lowest workiorking with this; revamp ebuild a little bit *org-mode-6.36c (15 May 2010) diff --git a/app-emacs/org-mode/org-mode-7.01f.ebuild b/app-emacs/org-mode/org-mode-7.01f.ebuild new file mode 100644 index 000000000000..b554d46a3a1a --- /dev/null +++ b/app-emacs/org-mode/org-mode-7.01f.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-7.01f.ebuild,v 1.1 2010/07/21 07:00:01 fauli Exp $ + +NEED_EMACS=22 + +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" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +IUSE="" + +S="${WORKDIR}/org-${PV}" +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + # remove autoload file to make sure that it is regenerated with + # the right Emacs version + rm -f lisp/org-install.el + emake || die +} + +src_install() { + emake \ + prefix="${D}/usr" \ + lispdir="${D}${SITELISP}/${PN}" \ + infodir="${D}/usr/share/info" \ + install || die + + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + + mv doc/org doc/org.info + doinfo doc/org.info || die "doinfo failed" + dodoc README Changes.org doc/org.pdf doc/orgcard.pdf \ + || die + newdoc contrib/README README.contrib || die +} |