diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2015-02-10 18:51:46 +0000 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2015-02-10 18:51:46 +0000 |
commit | 7db42a45dfc5b030ad40a40cb1fb43e23b11d04a (patch) | |
tree | 7e2c83df226838af8381ef108209d9fa473d32c7 /dev-java/ant-eclipse-ecj | |
parent | Initial import (bug #260029). (diff) | |
download | gentoo-2-7db42a45dfc5b030ad40a40cb1fb43e23b11d04a.tar.gz gentoo-2-7db42a45dfc5b030ad40a40cb1fb43e23b11d04a.tar.bz2 gentoo-2-7db42a45dfc5b030ad40a40cb1fb43e23b11d04a.zip |
dev-java/ant-eclipse-ecj: removed obsolete ebuild
(Portage version: 2.2.16/cvs/Linux x86_64, signed Manifest commit with key CFE47E2F)
Diffstat (limited to 'dev-java/ant-eclipse-ecj')
-rw-r--r-- | dev-java/ant-eclipse-ecj/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/ant-eclipse-ecj/ant-eclipse-ecj-4.2.ebuild | 52 |
2 files changed, 6 insertions, 54 deletions
diff --git a/dev-java/ant-eclipse-ecj/ChangeLog b/dev-java/ant-eclipse-ecj/ChangeLog index 54a3bb05ba86..5bff0dd8dac1 100644 --- a/dev-java/ant-eclipse-ecj/ChangeLog +++ b/dev-java/ant-eclipse-ecj/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/ant-eclipse-ecj -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog,v 1.46 2014/11/29 13:35:52 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog,v 1.47 2015/02/10 18:51:46 fordfrog Exp $ + + 10 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> + -ant-eclipse-ecj-4.2.ebuild: + removed obsolete ebuild 29 Nov 2014; Agostino Sarubbo <ago@gentoo.org> ant-eclipse-ecj-4.4.1.ebuild: Stable for ppc64, wrt bug #519590 diff --git a/dev-java/ant-eclipse-ecj/ant-eclipse-ecj-4.2.ebuild b/dev-java/ant-eclipse-ecj/ant-eclipse-ecj-4.2.ebuild deleted file mode 100644 index 2ebcd6c579e4..000000000000 --- a/dev-java/ant-eclipse-ecj/ant-eclipse-ecj-4.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-eclipse-ecj/ant-eclipse-ecj-4.2.ebuild,v 1.2 2012/10/17 09:08:04 ottxor Exp $ - -EAPI=4 - -inherit java-pkg-2 - -DMF="R-${PV}-201206081400" -S="${WORKDIR}" - -DESCRIPTION="Ant Compiler Adapter for Eclipse Java Compiler" -HOMEPAGE="http://www.eclipse.org/" -SRC_URI="http://download.eclipse.org/eclipse/downloads/drops4/${DMF/.0}/ecjsrc-${PV}.jar" - -LICENSE="EPL-1.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" -SLOT="4.2" -IUSE="" - -RDEPEND=">=virtual/jre-1.4 - ~dev-java/eclipse-ecj-${PV} - >=dev-java/ant-core-1.7" -DEPEND="${RDEPEND} - app-arch/unzip - >=virtual/jdk-1.4" - -src_unpack() { - unpack ${A} - mkdir -p src/org/eclipse/jdt/{core,internal} - cp org/eclipse/jdt/core/JDTCompilerAdapter.java \ - src/org/eclipse/jdt/core || die - cp -r org/eclipse/jdt/internal/antadapter \ - src/org/eclipse/jdt/internal || die - rm -fr about* org -} - -src_compile() { - cd src - java-pkg_filter-compiler jikes - ejavac -classpath "$(java-pkg_getjars ant-core,eclipse-ecj-${SLOT})" \ - $(find org/ -name '*.java') || die "ejavac failed!" - find org/ -name '*.class' -o -name '*.properties' | \ - xargs jar cf "${S}/${PN}.jar" || die "jar failed!" -} - -src_install() { - java-pkg_dojar ${PN}.jar - insinto /usr/share/java-config-2/compiler - doins "${FILESDIR}/ecj-${SLOT}" - sed -i "s/^JAVAC=/&${EPREFIX}:" /usr/share/java-config-2/compiler/ecj-${SLOT} -} |