diff options
author | 2009-02-27 21:10:20 +0000 | |
---|---|---|
committer | 2009-02-27 21:10:20 +0000 | |
commit | a67a4940e67212aec7d2ce71e6c0dc3fa67d6776 (patch) | |
tree | 55309f4a2561eb39bd74e1581eaf8a253da5d881 /app-doc/elisp-manual/elisp-manual-22.3.ebuild | |
parent | Reorder eclass variables. (diff) | |
download | emacs-a67a4940e67212aec7d2ce71e6c0dc3fa67d6776.tar.gz emacs-a67a4940e67212aec7d2ce71e6c0dc3fa67d6776.tar.bz2 emacs-a67a4940e67212aec7d2ce71e6c0dc3fa67d6776.zip |
Stand-alone Elisp manual for Emacs 22.
svn path=/emacs-overlay/; revision=1290
Diffstat (limited to 'app-doc/elisp-manual/elisp-manual-22.3.ebuild')
-rw-r--r-- | app-doc/elisp-manual/elisp-manual-22.3.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app-doc/elisp-manual/elisp-manual-22.3.ebuild b/app-doc/elisp-manual/elisp-manual-22.3.ebuild new file mode 100644 index 0000000..49f7e17 --- /dev/null +++ b/app-doc/elisp-manual/elisp-manual-22.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils + +DESCRIPTION="The GNU Emacs Lisp Reference Manual" +HOMEPAGE="http://www.gnu.org/software/emacs/manual/" +SRC_URI="mirror://gnu/emacs/emacs-${PV}.tar.gz" + +LICENSE="FDL-1.2" +SLOT="22" +KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86" +IUSE="" + +S="${WORKDIR}/emacs-${PV}/lispref" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-direntry.patch" +} + +src_compile() { + makeinfo elisp.texi || die "makeinfo failed" +} + +src_install() { + doinfo elisp22.info* || die "doinfo failed" + dodoc ChangeLog README +} |