diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-07-27 17:59:23 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-07-27 17:59:23 +0000 |
commit | 69c349c94f051cef71b2441bd4d8fd9732003a93 (patch) | |
tree | f184691c5d0f006c4451f5fc3d33d9090e0e0727 /app-emacs/jde/jde-2.3.4_beta5.ebuild | |
parent | Stable on x86 and sparc wrt #57886 (diff) | |
download | historical-69c349c94f051cef71b2441bd4d8fd9732003a93.tar.gz historical-69c349c94f051cef71b2441bd4d8fd9732003a93.tar.bz2 historical-69c349c94f051cef71b2441bd4d8fd9732003a93.zip |
*** empty log message ***
Diffstat (limited to 'app-emacs/jde/jde-2.3.4_beta5.ebuild')
-rw-r--r-- | app-emacs/jde/jde-2.3.4_beta5.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app-emacs/jde/jde-2.3.4_beta5.ebuild b/app-emacs/jde/jde-2.3.4_beta5.ebuild new file mode 100644 index 000000000000..a64ef79c7d77 --- /dev/null +++ b/app-emacs/jde/jde-2.3.4_beta5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.3.4_beta5.ebuild,v 1.1 2004/07/27 17:59:23 mkennedy Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="Java Development Environment for Emacs" +HOMEPAGE="http://jdee.sunsite.dk/" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/emacs + >=virtual/jdk-1.3 + app-emacs/elib + >=app-emacs/cedet-1.0_beta3" + +S=${WORKDIR}/${P/_beta/beta} + +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 + + elisp-site-file-install ${FILESDIR}/70jde-gentoo.el + exeinto /usr/bin + doexe jtags* + dodoc ChangeLog ReleaseNotes.txt +} |