diff options
author | 2008-07-21 22:07:25 +0000 | |
---|---|---|
committer | 2008-07-21 22:07:25 +0000 | |
commit | 32ff6cf4d88161ecdc93f1c4fa13263d7bc93615 (patch) | |
tree | 11213a32a8f8aea411a1c24e232c3f06ad5f6b69 /dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild | |
parent | Initial addition. Thanks to Chewi <chewi@aura-online.co.uk> for the work. (diff) | |
download | historical-32ff6cf4d88161ecdc93f1c4fa13263d7bc93615.tar.gz historical-32ff6cf4d88161ecdc93f1c4fa13263d7bc93615.tar.bz2 historical-32ff6cf4d88161ecdc93f1c4fa13263d7bc93615.zip |
Add app-admin/eselect-ecj support.
Package-Manager: portage-2.2_rc1/cvs/Linux 2.6.26-gentoo i686
Diffstat (limited to 'dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild')
-rw-r--r-- | dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild b/dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild new file mode 100644 index 000000000000..6eb097273a66 --- /dev/null +++ b/dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/eclipse-ecj/eclipse-ecj-3.3.0-r3.ebuild,v 1.1 2008/07/21 22:07:25 betelgeuse Exp $ + +inherit eutils java-pkg-2 + +MY_PN="ecj" +DMF="R-${PV}-200706251500" +S="${WORKDIR}" + +DESCRIPTION="Eclipse Compiler for Java" +HOMEPAGE="http://www.eclipse.org/" +SRC_URI="http://download.eclipse.org/eclipse/downloads/drops/${DMF/.0}/${MY_PN}src.zip" + +LICENSE="EPL-1.0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +SLOT="3.3" +IUSE="" + +COMMON_DEPEND="app-admin/eselect-ecj" +RDEPEND=">=virtual/jre-1.4 + ${COMMON_DEPEND}" +DEPEND=">=virtual/jdk-1.4 + sys-apps/findutils + app-arch/unzip + ${COMMON_DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + + # own package + rm -f org/eclipse/jdt/core/JDTCompilerAdapter.java + rm -fr org/eclipse/jdt/internal/antadapter + + # what the heck...?! java6 + rm -fr org/eclipse/jdt/internal/compiler/tool/ \ + org/eclipse/jdt/internal/compiler/apt/ + + # gcj feature + epatch "${FILESDIR}"/${P}-gcj.patch +} + +src_compile() { + local javac="javac" java="java" jar="jar" + + mkdir -p bootstrap + cp -a org bootstrap + + einfo "bootstrapping ${MY_PN} with javac" + + cd "${S}"/bootstrap + ${javac} $(find org/ -name '*.java') || die "${MY_PN} bootstrap failed!" + + find org/ -name '*.class' -o -name '*.properties' -o -name '*.rsc' | \ + xargs ${jar} cf ${MY_PN}.jar + + einfo "build ${MY_PN} with bootstrapped ${MY_PN}" + + cd "${S}" + ${java} -classpath bootstrap/${MY_PN}.jar \ + org.eclipse.jdt.internal.compiler.batch.Main -encoding ISO-8859-1 org \ + || die "${MY_PN} build failed!" + find org/ -name '*.class' -o -name '*.properties' -o -name '*.rsc' | \ + xargs ${jar} cf ${MY_PN}.jar +} + +src_install() { + java-pkg_dojar ${MY_PN}.jar + java-pkg_dolauncher ${MY_PN}-${SLOT} --main \ + org.eclipse.jdt.internal.compiler.batch.Main +} + +pkg_postinst() { + einfo "To get the Compiler Adapter of ECJ for ANT..." + einfo " # emerge ant-eclipse-ecj" + echo + einfo "To select between slots of ECJ..." + einfo " # eselect ecj" + + eselect ecj update ecj-${SLOT} +} + +pkg_postrm() { + eselect ecj update +} |