blob: fb9c207a040db2c1ffb6726000c6a3721e8b4530 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/eclipse-core/eclipse-core-3.2_pre2.ebuild,v 1.1 2005/10/01 23:49:18 compnerd Exp $
inherit java-pkg
MY_DMF="S-3.2M2-200509231000"
MY_VERSION="3.2M2"
DESCRIPTION="Core Runtime Utilities for Eclipse"
HOMEPAGE="http://www.eclipse.org/"
SRC_URI="http://download.eclipse.org/downloads/drops/${MY_DMF}/eclipse-RCP-SDK-${MY_VERSION}-linux-gtk.tar.gz"
LICENSE="CPL-1.0 LGPL-2.1 MPL-1.1"
SLOT="3"
KEYWORDS="~x86"
IUSE="doc"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
=dev-java/eclipse-osgi-3*
dev-java/ant-core
app-arch/unzip"
BASE="org.eclipse.rcp.source_3.1.0"
CORE_RUNTIME_PLUGIN="org.eclipse.core.runtime_3.1.0"
CORE_COMMANDS_PLUGIN="org.eclipse.core.commands_3.2.0"
CORE_EXPRESSIONS_PLUGIN="org.eclipse.core.expressions_3.1.0"
src_unpack() {
unpack ${A}
mkdir ${S}
# The eclipse sources are in a messy layout
local srcdir="${WORKDIR}/eclipse/plugins/${BASE}/src"
# Pull out the sources
mkdir -p ${S}/${CORE_RUNTIME_PLUGIN}/src
unzip ${srcdir}/${CORE_RUNTIME_PLUGIN}/src.zip \
-d ${S}/${CORE_RUNTIME_PLUGIN}/src/ &> /dev/null || die "Unable to extract sources"
cp ${FILESDIR}/build.xml ${S}/${CORE_RUNTIME_PLUGIN}
mkdir -p ${S}/${CORE_COMMANDS_PLUGIN}/src
unzip ${srcdir}/${CORE_COMMANDS_PLUGIN}/src.zip \
-d ${S}/${CORE_COMMANDS_PLUGIN}/src/ &> /dev/null || die "Unable to extract sources"
cp ${FILESDIR}/build.xml ${S}/${CORE_COMMANDS_PLUGIN}
mkdir -p ${S}/${CORE_EXPRESSIONS_PLUGIN}/src
unzip ${srcdir}/${CORE_EXPRESSIONS_PLUGIN}/src.zip \
-d ${S}/${CORE_EXPRESSIONS_PLUGIN}/src/ &> /dev/null || die "Unable to extract sources"
cp ${FILESDIR}/build.xml ${S}/${CORE_EXPRESSIONS_PLUGIN}
}
src_compile() {
local targets="jar"
use doc && targets="${targets} javadoc"
cd ${S}/${CORE_RUNTIME_PLUGIN}
ant -Dproject.name="org.eclipse.core.runtime" \
-Dpackage.name="org.eclipse.core.runtime.*" \
-Dclasspath=$(java-config -p eclipse-osgi-3) \
${targets} || die "Unable to build CORE_RUNTIME"
local runtime=${S}/${CORE_RUNTIME_PLUGIN}/dist/org.eclipse.core.runtime.jar
cd ${S}/${CORE_COMMANDS_PLUGIN}
ant -Dproject.name="org.eclipse.core.commands" \
-Dpackage.name="org.eclipse.core.commands.*" \
-Dclasspath=$(java-config -p eclipse-osgi-3):${runtime} \
${targets} || die "Unable to build CORE_COMMANDS"
cd ${S}/${CORE_EXPRESSIONS_PLUGIN}
ant -Dproject.name="org.eclipse.core.expressions" \
-Dpackage.name="org.eclipse.core.expressions.*" \
-Dclasspath=$(java-config -p eclipse-osgi-3):${runtime} \
${targets} || die "Unable to build CORE_EXPRESSIONS"
}
src_install() {
java-pkg_dojar ${S}/${CORE_RUNTIME_PLUGIN}/dist/org.eclipse.core.runtime.jar
java-pkg_dojar ${S}/${CORE_COMMANDS_PLUGIN}/dist/org.eclipse.core.commands.jar
java-pkg_dojar ${S}/${CORE_EXPRESSIONS_PLUGIN}/dist/org.eclipse.core.expressions.jar
if use doc ; then
java-pkg_dohtml ${S}/${CORE_RUNTIME}/dist/docs/*
java-pkg_dohtml ${S}/${CORE_COMMANDS_PLUGIN}/dist/docs/*
java-pkg_dohtml ${S}/${CORE_EXPRESSIONS_PLUGIN}/dist/docs/*
fi
}
|