blob: d834aaed49e1cc1fb9bdf89220c1e918824bc13b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild,v 1.8 2005/07/01 18:14:57 mkennedy Exp $
inherit elisp eutils
IUSE=""
MY_P="AspectJForEmacs-${PV/_beta/b}"
DESCRIPTION="AspectJ support for GNU Emacs java-mode and JDEE"
HOMEPAGE="http://aspectj4emacs.sourceforge.net/"
SRC_URI="http://aspectj4emacs.sourceforge.net/${MY_P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="app-emacs/jde
=dev-java/aspectj-1.1*"
DEPEND="${RDEPEND}
app-arch/unzip
>=sys-apps/sed-4"
S="${WORKDIR}/${MY_P}"
SITEFILE=80aspectj4emacs-gentoo.el
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PF}-compile-log-gentoo.patch
epatch ${FILESDIR}/${PF}-browse-url-new-window-gentoo.patch
cd ${S}
cp */*.el .
sed -i "s,@build.version.short@,${PV},g" *.el
}
src_compile() {
elisp-comp *.el || die
}
src_install() {
elisp_src_install
for subdir in ajdee aspectj-mode; do
insinto /usr/share/doc/${PF}/${subdir}
doins `find ${subdir} -type f ! -name \*.el`
dosym /usr/share/doc/${PF}/html/${subdir}.html \
/usr/share/emacs/site-lisp/${PN}/${subdir}.html
done
dohtml *.html *.gif
}
|