blob: 1cac76a7f40fd6ce8bc9de93b8b4de65be3faf12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/edb/edb-1.25.ebuild,v 1.1 2005/09/04 01:51:43 mkennedy Exp $
inherit eutils elisp
DESCRIPTION="EDB, The Emacs Database"
HOMEPAGE="http://www.glug.org/people/ttn/software/edb/"
SRC_URI="http://www.glug.org/people/ttn/software/edb/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~sparc ~amd64 ~ppc"
IUSE=""
DEPEND="virtual/emacs"
SITEFILE="50edb-gentoo.el"
S=${WORKDIR}/${P}
src_compile() {
econf || die
make || die # parallelism not supported
}
src_install() {
elisp-install ${PN} *.{el,elc}
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dodoc AUTHORS BUGS COPYING HACKING NEWS PLANS README TODO
doinfo edb*info
cp -R examples tests ${D}/usr/share/doc/${PF}/
}
|