blob: 66aabb18c630d54c4dc6ec5936d2f103099d40f1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.3.5-r1.ebuild,v 1.3 2006/05/21 09:33:11 blubb Exp $
inherit elisp eutils
DESCRIPTION="Java Development Environment for Emacs"
HOMEPAGE="http://jdee.sunsite.dk/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="virtual/emacs
>=virtual/jdk-1.3
app-emacs/elib
>=app-emacs/cedet-1.0_beta3"
SITEFILE=70jde-gentoo.el
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}-cedet-version-adjust-gentoo.patch
}
src_compile() {
cd ${S}/lisp
cat >jde-compile-script-init <<EOF
(load "${SITELISP}/cedet/common/cedet")
(add-to-list 'load-path "$PWD")
EOF
emacs -batch -l jde-compile-script-init -f batch-byte-compile *.el
}
src_install() {
dodir ${SITELISP}/${PN}
cp -r java ${D}/${SITELISP}/${PN}/
dodir /usr/share/doc/${P}
cp -r doc/* ${D}/usr/share/doc/${P}/
cd ${S}/lisp
elisp-install ${PN}/lisp *.el *.elc *.bnf
cp ${FILESDIR}/${PV}-${SITEFILE} ${S}/${SITEFILE}; elisp-site-file-install ${S}/${SITEFILE}
dodoc ChangeLog ReleaseNotes.txt
find ${D} -type f -print0 |xargs -0 chmod 644
exeinto /usr/bin
doexe jtags*
}
|