You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-doc/elisp-manual/elisp-manual-23.4.ebuild

35 lines
762 B

# Copyright 1999-2012 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.4.ebuild,v 1.1 2012/05/15 17:44:31 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-${PV}
SRC_URI="mirror://gentoo/${P}.tar.xz"
LICENSE="FDL-1.3"
SLOT="23"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="app-arch/xz-utils"
S="${WORKDIR}/lispref"
src_prepare() {
epatch "${FILESDIR}/${PN}-23.3-direntry.patch"
}
src_compile() {
makeinfo elisp.texi || die "makeinfo failed"
}
src_install() {
doinfo elisp23.info*
dodoc ChangeLog README
}