You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
# Copyright 1999-2008 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-3.3.0-r1.ebuild,v 1.6 2008/03/22 00:54:20 maekke Exp $
|
|
|
|
inherit java-pkg-2
|
|
|
|
MY_PN="ecj"
|
|
DMF="R-${PV}-200706251500"
|
|
S="${WORKDIR}"
|
|
|
|
DESCRIPTION="Ant Compiler Adapter for Eclipse Java Compiler"
|
|
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 ppc ppc64 x86"
|
|
SLOT="3.3"
|
|
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
|
|
sys-apps/findutils"
|
|
|
|
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
|
|
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
|
|
newins "${FILESDIR}/compiler-settings-${SLOT}" ecj-${SLOT}
|
|
}
|