Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/jde: jde-2.3.5.1-r1.ebuild ChangeLog
Date: Mon, 02 Mar 2009 23:03:42
Message-Id: E1LeH93-0000zt-Qc@stork.gentoo.org
1 ulm 09/03/02 23:01:57
2
3 Modified: ChangeLog
4 Added: jde-2.3.5.1-r1.ebuild
5 Log:
6 Fix byte compilation with current Emacs. Clean up src_install() function.
7 (Portage version: 2.2_rc23/cvs/Linux i686)
8
9 Revision Changes Path
10 1.31 app-emacs/jde/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 2 Mar 2009 21:40:12 -0000 1.30
23 +++ ChangeLog 2 Mar 2009 23:01:57 -0000 1.31
24 @@ -1,8 +1,13 @@
25 # ChangeLog for app-emacs/jde
26 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v 1.30 2009/03/02 21:40:12 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v 1.31 2009/03/02 23:01:57 ulm Exp $
29
30 - 02 Mar 2009; Ulrich Mueller <ulm@g.o> jde-2.3.5.1.ebuild:
31 +*jde-2.3.5.1-r1 (02 Mar 2009)
32 +
33 + 02 Mar 2009; Ulrich Mueller <ulm@g.o>
34 + +files/jde-2.3.5.1-fix-efc.patch, jde-2.3.5.1.ebuild,
35 + +jde-2.3.5.1-r1.ebuild:
36 + Fix byte compilation with current Emacs. Clean up src_install() function.
37 Add some "die" commands.
38
39 01 May 2008; Ulrich Mueller <ulm@g.o> -files/2.3.5-70jde-gentoo.el,
40
41
42
43 1.1 app-emacs/jde/jde-2.3.5.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/jde-2.3.5.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/jde-2.3.5.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: jde-2.3.5.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.3.5.1-r1.ebuild,v 1.1 2009/03/02 23:01:57 ulm Exp $
53
54 inherit elisp eutils
55
56 DESCRIPTION="Java Development Environment for Emacs"
57 HOMEPAGE="http://jdee.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/jdee/${P}.tar.gz"
59
60 LICENSE="GPL-2 LGPL-2.1 Apache-1.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 DEPEND="app-emacs/elib
66 >=app-emacs/cedet-1.0_beta3"
67 RDEPEND="${DEPEND}
68 >=virtual/jdk-1.3"
69
70 SITEFILE="70${PN}-gentoo.el"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}/${P}-fix-efc.patch"
76 }
77
78 src_compile() {
79 cd lisp
80 cat >jde-compile-script-init <<-EOF
81 (load "${SITELISP}/cedet/common/cedet")
82 (add-to-list 'load-path "${S}/lisp")
83 (require 'jde)
84 EOF
85 emacs -batch -l jde-compile-script-init -f batch-byte-compile *.el \
86 || die "batch-byte-compile failed"
87 }
88
89 src_install() {
90 elisp-install ${PN}/lisp lisp/*.{el,elc,bnf} || die
91 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
92
93 dobin lisp/jtags* || die "dobin failed"
94
95 # this should be installed outside of SITELISP
96 insinto ${SITELISP}/${PN}
97 doins -r java || die "doins failed"
98
99 dohtml -r doc/html/* || die "dohtml failed"
100 dodoc lisp/ChangeLog lisp/ReleaseNotes.txt
101 }