blob: fcc7d0237d4ff6dc9e6ec9a0b7261a7930547a8c (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ecb/ecb-2.40.ebuild,v 1.4 2009/07/16 16:40:22 nixnut Exp $
inherit elisp eutils
DESCRIPTION="Source code browser for Emacs"
HOMEPAGE="http://ecb.sourceforge.net/"
SRC_URI="mirror://sourceforge/ecb/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="java"
DEPEND=">=app-emacs/cedet-1.0_pre6
java? ( app-emacs/jde )"
RDEPEND="${DEPEND}"
SITEFILE="71${PN}-gentoo.el"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-2.32-gentoo.patch"
sed -i -e "s:@PF@:${PF}:" ecb-help.el || die "sed failed"
}
src_compile() {
local loadpath=""
if use java; then
loadpath="${SITELISP}/elib ${SITELISP}/jde ${SITELISP}/jde/lisp"
fi
emake CEDET="${SITELISP}/cedet" LOADPATH="${loadpath}" \
|| die "emake failed"
}
src_install() {
elisp_src_install
insinto "${SITEETC}/${PN}"
doins -r ecb-images || die
doinfo info-help/ecb.info* || die
dohtml html-help/*.html || die
dodoc NEWS README RELEASE_NOTES || die
}
pkg_postinst() {
elisp-site-regen
elog "ECB is now autoloaded in site-gentoo.el. Add the line"
elog " (require 'ecb)"
elog "to your ~/.emacs file to enable all features on Emacs startup."
}
|