blob: 02efc1bdd5819f1145623392dca2f72ed954067e (
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-2006 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.1 2006/06/25 01:16:06 nichoj Exp $
inherit eutils java-pkg-2 java-ant-2
MY_PN=${PN##*-}
DESCRIPTION="Eclipse Compiler for Java"
HOMEPAGE="http://www.eclipse.org/"
SRC_URI="http://dev.gentoo.org/~karltk/projects/java/distfiles/${P}-gentoo-r2.tar.bz2"
LICENSE="EPL-1.0"
KEYWORDS="~amd64 ~x86"
SLOT="3.1"
IUSE="doc"
RDEPEND=">=virtual/jre-1.4"
DEPEND="${RDEPEND}
>=virtual/jdk-1.4
dev-java/ant-core"
src_compile() {
eant jar $(use_doc)
}
src_install() {
java-pkg_dojar build/${MY_PN}.jar || die "ecj.jar not installable"
dodoc README
use doc && java-pkg_dohtml -r build/doc/api
exeinto /usr/bin
doexe ${MY_PN}-${SLOT}
insinto /usr/share/java-config-2/compiler
newins ${FILESDIR}/compiler-settings-${SLOT} ecj-${SLOT}
}
|