diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-10-27 05:53:50 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-10-27 05:53:50 +0000 |
commit | 27df767bd180fef31bb144cca33919f6faaca047 (patch) | |
tree | cd7a06515a27f35c809ddf7b703b26c954e9c430 /app-emacs/org-mode | |
parent | Use the correct DESCRIPTION (fixes bug #342183, thanks to Juho Rosqvist for r... (diff) | |
download | gentoo-2-27df767bd180fef31bb144cca33919f6faaca047.tar.gz gentoo-2-27df767bd180fef31bb144cca33919f6faaca047.tar.bz2 gentoo-2-27df767bd180fef31bb144cca33919f6faaca047.zip |
Install GNU Info file without .info extension. Install orgguide.pdf.
(Portage version: 2.1.9.21/cvs/Linux x86_64)
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-7.01h-r1.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/app-emacs/org-mode/ChangeLog b/app-emacs/org-mode/ChangeLog index 31fc59d1415f..7016961c9d11 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-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.114 2010/10/14 17:01:12 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.115 2010/10/27 05:53:50 ulm Exp $ + +*org-mode-7.01h-r1 (27 Oct 2010) + + 27 Oct 2010; Ulrich Mueller <ulm@gentoo.org> +org-mode-7.01h-r1.ebuild: + Install GNU Info file without .info extension. Install orgguide.pdf. 14 Oct 2010; Ulrich Mueller <ulm@gentoo.org> -org-mode-6.33f.ebuild: Remove old. diff --git a/app-emacs/org-mode/org-mode-7.01h-r1.ebuild b/app-emacs/org-mode/org-mode-7.01h-r1.ebuild new file mode 100644 index 000000000000..ebb17e984944 --- /dev/null +++ b/app-emacs/org-mode/org-mode-7.01h-r1.ebuild @@ -0,0 +1,41 @@ +# 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.01h-r1.ebuild,v 1.1 2010/10/27 05:53:50 ulm 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 + + doinfo doc/org || die "doinfo failed" + dodoc README Changes.org doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf \ + || die + newdoc contrib/README README.contrib || die +} |