diff options
author | 2014-03-05 18:14:04 +0000 | |
---|---|---|
committer | 2014-03-05 18:14:04 +0000 | |
commit | 3ffc17d4489d2a483a4b28059e3235512cfc0843 (patch) | |
tree | 26d2080ee4ad88aaa9237994ac1b7bed116d510b /app-emacs/jde | |
parent | Remove old. (diff) | |
download | gentoo-2-3ffc17d4489d2a483a4b28059e3235512cfc0843.tar.gz gentoo-2-3ffc17d4489d2a483a4b28059e3235512cfc0843.tar.bz2 gentoo-2-3ffc17d4489d2a483a4b28059e3235512cfc0843.zip |
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs/jde')
-rw-r--r-- | app-emacs/jde/ChangeLog | 5 | ||||
-rw-r--r-- | app-emacs/jde/jde-2.4.0.1.ebuild | 70 |
2 files changed, 4 insertions, 71 deletions
diff --git a/app-emacs/jde/ChangeLog b/app-emacs/jde/ChangeLog index 2864623c708d..f25dd181f088 100644 --- a/app-emacs/jde/ChangeLog +++ b/app-emacs/jde/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/jde # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v 1.50 2014/03/05 15:17:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v 1.51 2014/03/05 18:14:04 ulm Exp $ + + 05 Mar 2014; Ulrich Müller <ulm@gentoo.org> -jde-2.4.0.1.ebuild: + Remove old. 05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> jde-2.4.1.ebuild: Stable for ppc, wrt bug #502988 diff --git a/app-emacs/jde/jde-2.4.0.1.ebuild b/app-emacs/jde/jde-2.4.0.1.ebuild deleted file mode 100644 index f9b87295dd0b..000000000000 --- a/app-emacs/jde/jde-2.4.0.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.4.0.1.ebuild,v 1.4 2010/10/14 15:01:21 ranger Exp $ - -EAPI=3 - -WANT_ANT_TASKS="ant-nodeps ant-contrib" -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 elisp eutils - -DESCRIPTION="Java Development Environment for Emacs" -HOMEPAGE="http://jdee.sourceforge.net/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" - -DEPEND=">=virtual/jdk-1.3 - app-emacs/elib - >=app-emacs/cedet-1.0_beta3 - dev-java/bsh - dev-java/junit:0 - dev-util/checkstyle" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}" -SITEFILE="70${PN}-gentoo.el" - -src_prepare() { - epatch "${FILESDIR}/${P}-fix-paths-gentoo.patch" - epatch "${FILESDIR}/${P}-classpath-gentoo.patch" - - local bshjar csjar - bshjar=$(java-pkg_getjar --build-only bsh bsh.jar) || die - csjar=$(java-pkg_getjar --build-only checkstyle checkstyle.jar) || die - sed -e "s:@BSH_JAR@:${bshjar}:;s:@CHECKSTYLE_JAR@:${csjar}:" \ - -e "s:@PF@:${PF}:" "${FILESDIR}/${SITEFILE}" >"${SITEFILE}" || die - - cd java/lib || die - java-pkg_jar-from --build-only checkstyle checkstyle.jar checkstyle-all.jar - java-pkg_jar-from junit - java-pkg_jar-from bsh -} - -src_compile() { - eant bindist \ - -Dcedet.dir="${EPREFIX}${SITELISP}/cedet" \ - -Delib.dir="${EPREFIX}${SITELISP}/elib" - - use doc && eant source-doc -} - -src_install() { - java-pkg_dojar dist/jdee-${PV}/java/lib/jde.jar - insinto "${JAVA_PKG_SHAREPATH}" - doins -r java/bsh-commands || die - - use source && java-pkg_dosrc java/src/* - use doc && java-pkg_dojavadoc dist/jdee-${PV}/doc/java/api - - elisp-install ${PN} dist/jdee-${PV}/lisp/*.{el,elc} || die - elisp-site-file-install "${SITEFILE}" || die - - dobin dist/jdee-${PV}/lisp/jtags || die - - dohtml -r doc/html/* || die -} |