blob: 0e6c5fdf4bf21d4f51cbc2dcdf58e8595e9fdc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2007 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.1-r13.ebuild,v 1.12 2007/10/12 02:37:36 wltjr Exp $
inherit eutils java-pkg-2 java-ant-2
MY_PN=${PN##*-}
DESCRIPTION="Eclipse Compiler for Java"
HOMEPAGE="http://www.eclipse.org/"
SRC_URI="mirror://gentoo/${P}-gentoo-r2.tar.bz2"
LICENSE="EPL-1.0"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
SLOT="3.1"
IUSE="doc"
RDEPEND=">=virtual/jre-1.4
dev-java/ant-core"
DEPEND="${RDEPEND}
>=virtual/jdk-1.4"
src_compile() {
java-ant_rewrite-classpath "${S}/build.xml"
eant -Dgentoo.classpath=$(java-pkg_getjars ant-core) jar $(use_doc)
}
src_install() {
java-pkg_dojar build/${MY_PN}.jar || die "ecj.jar not installable"
dodoc README
use doc && java-pkg_dojavadoc build/doc/api
exeinto /usr/bin
doexe ${MY_PN}-${SLOT}
insinto /usr/share/java-config-2/compiler
newins "${FILESDIR}"/compiler-settings-${SLOT} ecj-${SLOT}
}
|