diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-08-18 17:58:51 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-08-18 17:58:51 +0000 |
commit | a08809e171e160822b95ff5c0bee910ad939c153 (patch) | |
tree | ccb45acd178931029094cf93f9bf3cecfe9397bc /app-doc/elisp-manual | |
parent | ppc64/ppc stable wrt #379511 (diff) | |
download | gentoo-2-a08809e171e160822b95ff5c0bee910ad939c153.tar.gz gentoo-2-a08809e171e160822b95ff5c0bee910ad939c153.tar.bz2 gentoo-2-a08809e171e160822b95ff5c0bee910ad939c153.zip |
Version bump. This corresponds to Emacs 23.3.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'app-doc/elisp-manual')
-rw-r--r-- | app-doc/elisp-manual/ChangeLog | 10 | ||||
-rw-r--r-- | app-doc/elisp-manual/elisp-manual-23.3.ebuild | 32 | ||||
-rw-r--r-- | app-doc/elisp-manual/files/elisp-manual-23.3-direntry.patch | 19 |
3 files changed, 60 insertions, 1 deletions
diff --git a/app-doc/elisp-manual/ChangeLog b/app-doc/elisp-manual/ChangeLog index 5e75517ae13a..e84cfd49579f 100644 --- a/app-doc/elisp-manual/ChangeLog +++ b/app-doc/elisp-manual/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-doc/elisp-manual # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/elisp-manual/ChangeLog,v 1.30 2011/02/12 18:56:37 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/elisp-manual/ChangeLog,v 1.31 2011/08/18 17:58:51 ulm Exp $ + +*elisp-manual-23.3 (18 Aug 2011) + + 18 Aug 2011; Ulrich Mueller <ulm@gentoo.org> +elisp-manual-23.3.ebuild, + +files/elisp-manual-23.3-direntry.patch: + Version bump. This corresponds to Emacs 23.3, and is actually an upgrade. + Drop separate version number of the Lisp manual, because it was not increased + through three upstream releases. Use corresponding Emacs version instead. 12 Feb 2011; Christian Faulhammer <fauli@gentoo.org> -elisp-manual-23.3.0.ebuild: diff --git a/app-doc/elisp-manual/elisp-manual-23.3.ebuild b/app-doc/elisp-manual/elisp-manual-23.3.ebuild new file mode 100644 index 000000000000..fe515b73b87e --- /dev/null +++ b/app-doc/elisp-manual/elisp-manual-23.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/elisp-manual/elisp-manual-23.3.ebuild,v 1.1 2011/08/18 17:58:51 ulm Exp $ + +EAPI=4 + +inherit eutils + +DESCRIPTION="The GNU Emacs Lisp Reference Manual" +HOMEPAGE="http://www.gnu.org/software/emacs/manual/" +# taken from doc/lispref/ of emacs-23.3 +SRC_URI="mirror://gentoo/${P}.tar.xz" + +LICENSE="FDL-1.3" +SLOT="23" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +S="${WORKDIR}/lispref" + +src_prepare() { + epatch "${FILESDIR}/${P}-direntry.patch" +} + +src_compile() { + makeinfo elisp.texi || die "makeinfo failed" +} + +src_install() { + doinfo elisp23.info* + dodoc ChangeLog README +} diff --git a/app-doc/elisp-manual/files/elisp-manual-23.3-direntry.patch b/app-doc/elisp-manual/files/elisp-manual-23.3-direntry.patch new file mode 100644 index 000000000000..7abcf8fe62ad --- /dev/null +++ b/app-doc/elisp-manual/files/elisp-manual-23.3-direntry.patch @@ -0,0 +1,19 @@ +--- lispref-orig/elisp.texi ++++ lispref/elisp.texi +@@ -1,6 +1,6 @@ + \input texinfo @c -*-texinfo-*- + @c %**start of header +-@setfilename elisp ++@setfilename elisp23.info + @settitle GNU Emacs Lisp Reference Manual + @c %**end of header + +@@ -65,7 +65,7 @@ + + @dircategory GNU Emacs Lisp + @direntry +-* Elisp: (elisp). The Emacs Lisp Reference Manual. ++* Elisp 23: (elisp23). The Emacs Lisp Reference Manual for Emacs 23. + @end direntry + + @titlepage |