37 lines
789 B
Bash
37 lines
789 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit elisp
|
|
|
|
DESCRIPTION="EDB, The Emacs Database"
|
|
HOMEPAGE="http://www.gnuvola.org/software/edb/
|
|
http://www.emacswiki.org/emacs/EmacsDataBase"
|
|
SRC_URI="http://www.gnuvola.org/software/edb/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+ Texinfo-manual"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
|
|
|
ELISP_PATCHES="${P}-skram-path.patch"
|
|
SITEFILE="50${PN}-gentoo.el"
|
|
|
|
src_configure() {
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
emake -j1
|
|
}
|
|
|
|
src_install() {
|
|
emake -j1 \
|
|
sitelisp="${ED}${SITELISP}" \
|
|
infodir="${ED}/usr/share/info" \
|
|
install
|
|
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
|
|
dodoc AUTHORS BUGS ChangeLog HACKING NEWS README THANKS TODO doc/refcard.ps
|
|
dodoc -r examples
|
|
}
|