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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eclipse-sdk/eclipse-sdk-2.1.3-r5.ebuild,v 1.11 2005/03/23 16:16:48 seemant Exp $
inherit eutils
At="eclipse-sourceBuild-srcIncluded-2.1.3.zip"
DESCRIPTION="Eclipse Tools Platform"
HOMEPAGE="http://www.eclipse.org/"
SRC_URI="http://download.eclipse.org/downloads/drops/R-2.1.3-200403101828/${At}
http://dev.gentoo.org/~karltk/projects/eclipse/distfiles/eclipse-sdk-2.1.3_00-refactor-rename.patch.gz"
IUSE="gnome gtk jikes kde motif mozilla"
SLOT="2"
LICENSE="CPL-1.0"
KEYWORDS="x86 ppc sparc"
RDEPEND=">=virtual/jdk-1.3
gtk? ( >=x11-libs/gtk+-2.2.4 )
!gtk? ( kde? ( kde-base/kdelibs x11-libs/openmotif )
!kde? ( motif? ( x11-libs/openmotif )
!motif? ( >=x11-libs/gtk+-2.2.4 )
)
)
gnome? ( =gnome-base/gnome-vfs-2* )
mozilla? ( www-client/mozilla )
jikes? ( >=dev-java/jikes-1.19 )
"
DEPEND="${RDEPEND}
>=dev-java/ant-1.5.3
>=sys-apps/findutils-4.1.7
>=app-shells/tcsh-6.11
app-arch/unzip
app-arch/zip"
pkg_setup() {
set_dirs
use gtk && use_gtk='true' || use_gtk='false'
use motif && use_motif='true' || use_motif='false'
# If gtk+ enabled, disable motif
${use_gtk} && use_motif='false'
# If neither enabled, default to gtk+
if ! ( ${use_gtk} || ${use_motif} ) ; then
if use kde ; then
use_motif='true'
else
use_gtk='true'
fi
fi
}
set_dirs() {
gtk_launcher_src_dir="plugins/platform-launcher/library/gtk"
motif_launch_src_dir="plugins/platform-launcher/library/motif"
gtk_swt_src_dir="plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library"
motif_swt_src_dir="plugins/org.eclipse.swt/Eclipse SWT PI/motif/library"
core_src_dir="plugins/org.eclipse.core.resources.linux/src"
case $ARCH in
sparc)
gtk_swt_dest_dir="plugins/org.eclipse.swt.gtk/os/linux/sparc"
motif_swt_dest_dir="plugins/org.eclipse.swt.motif/os/linux/sparc"
core_dest_dir="plugins/org.eclipse.core.resources.linux/os/linux/sparc"
;;
x86)
gtk_swt_dest_dir="plugins/org.eclipse.swt.gtk/os/linux/x86"
motif_swt_dest_dir="plugins/org.eclipse.swt.motif/os/linux/x86"
core_dest_dir="plugins/org.eclipse.core.resources.linux/os/linux/x86"
;;
ppc)
gtk_swt_dest_dir="plugins/org.eclipse.swt.gtk/os/linux/ppc"
motif_swt_dest_dir="plugins/org.eclipse.swt.motif/os/linux/ppc"
core_dest_dir="plugins/org.eclipse.core.resources.linux/os/linux/ppc/"
;;
esac
}
src_unpack() {
mkdir ${S}
cd ${S}
echo "foo: ${AA}"
echo "bar: ${A}"
unpack ${At}
epatch ${DISTDIR}/eclipse-sdk-2.1.3_00-refactor-rename.patch.gz
# epatch ${FILESDIR}/00-refactor_rename.patch
epatch ${FILESDIR}/01-distribute_ant_target-2.1.patch
if use kde ; then
epatch ${FILESDIR}/02-konqueror_help_browser-2.1.patch
fi
# Turn off verbose mode and on errors in all build.xml files
for x in $(find . -type f -name "build.xml") ; do
sed -i -r \
-e 's/failonerror="[^"]+"/failonerror="true"/' \
-e 's/verbose="[^"]+"/verbose="false"/' $x
done
# Clean up all pre-built code
ant -q -Dws=gtk -Dos=linux clean
ant -q -Dws=motif -Dos=linux clean
find ${S} -name '*.so' -exec rm -f {} \;
find ${S} -name '*.so.*' -exec rm -f {} \;
find ${S} -type f -name 'eclipse' -exec rm {} \;
rm -f eclipse
if ${use_gtk} ; then
einfo "Fixing gtk+ build scripts"
# Move around some source code that should have been handled by the build system
cd ${S}/"${gtk_swt_src_dir}" || die "Directory ${gtk_swt_src_dir} not found"
cp ${S}/plugins/org.eclipse.swt/Eclipse\ SWT/common/library/* .
# Configure libraries for GNOME and GTK+
if use gnome ; then
gnome_lib=`pkg-config --libs gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0 | sed -e "s:-pthread:-lpthread:" -e "s:-Wl,--export:--export:"`
fi
gthread_lib=`pkg-config --libs gtk+-2.0 gthread-2.0 | sed -e "s:-pthread:-lpthread:" -e "s:-Wl,--export:--export:"`
sed -e "s:/bluebird/teamswt/swt-builddir/ive:$JAVA_HOME:" \
-e "s:JAVA_JNI=\$(IVE_HOME)/bin/include:JAVA_JNI=\$(IVE_HOME)/include:" \
-e "s:\`pkg-config --libs gthread-2.0\`:${gthread_lib}:" \
-e "s:\`pkg-config --libs gnome-vfs-2.0\`:${gnome_lib}:" \
-e "s:-I\$(JAVA_JNI):-I\$(JAVA_JNI) -I\$(JAVA_JNI)/linux:" \
-i make_gtk.mak
# Extra patching if the gtk+ installed is 2.4 or newer
# for users with the 2.3 series, they should upgrade, dunno which 2.3.x all this
# stuff broke in anyway.
if pkg-config --atleast-version 2.4 gtk+-2.0 ; then
einfo "Applying gtk+-2.4 patches"
sed -r \
-e "s:#define GTK_DISABLE_DEPRECATED::g" \
-i swt.c
fi
fi
if ${use_motif} ; then
einfo "Fixing motif build scripts"
# Some fixups for the motif compilation
cd ${S}/"${motif_swt_src_dir}"
cp ${S}/plugins/org.eclipse.swt/Eclipse\ SWT/common/library/* .
sed -e "s:/bluebird/teamswt/swt-builddir/ive/bin:$JAVA_HOME:" \
-e "s:-I\$(JAVA_HOME)/include:-I\$(JAVA_HOME)/include -I\$(JAVA_HOME)/include/linux:" \
-e "s:/bluebird/teamswt/swt-builddir/motif21:/usr/X11R6:" \
-e "s:\`pkg-config --libs gthread-2.0\`:${gthread_lib}:" \
-e "s:\`pkg-config --libs gnome-vfs-2.0\`:${gnome_lib}:" \
-e "s:/usr/lib/qt3:/usr/qt/3:" \
-e "s:-lkdecore:-L\`kde-config --prefix\`/lib -lkdecore:" \
-e "s:-I/usr/include/kde:-I\`kde-config --prefix\`/include:" \
-i make_linux.mak
fi
# Patch in package version into the build info
cd ${S}
find -type f -name about.mappings -exec sed -e "s/@build@/Gentoo Linux ${PF}/" -i \{\} \;
}
build_gtk_frontend() {
einfo "Building gtk+ SWT"
# Build the eclipse gtk binary
cd ${S}/plugins/platform-launcher/library/gtk
tcsh -f build.csh -output eclipse-gtk -arch $ARCH || die "Failed to build eclipse-gtk"
cd ${S}/"${gtk_swt_src_dir}"
make -f make_gtk.mak make_swt || die "Failed to build platform-independent SWT support"
# move the *.so files to the right path so eclipse can find them
mkdir -p ${S}/"${gtk_swt_dest_dir}"
mv *.so ${S}/"${gtk_swt_dest_dir}"
}
build_motif_frontend() {
einfo "Building Motif SWT"
# Build eclipse motif binary
cd ${S}/plugins/platform-launcher/library/motif
tcsh -f build.csh -output eclipse-motif -arch $ARCH || die "Failed to build eclipse-motif"
cd ${S}/"${motif_swt_src_dir}"
make -f make_linux.mak make_swt || die "Failed to build Motif support"
if use kde ; then
make -f make_linux.mak make_kde || die "Failed to build KDE support"
fi
# move the *.so files to the right path so eclipse can find them
mkdir -p ${S}/"${motif_swt_dest_dir}"
mv *.so ${S}/"${motif_swt_dest_dir}"
}
src_compile() {
addwrite "/proc/self/maps"
# Figure out correct boot classpath
if [ ! -z "`java-config --java-version | grep IBM`" ] ; then
# IBM JRE
einfo "Using the IBM JDK"
# We must _not_ add xml.jar, here, as that breaks the compilation!
ant_extra_opts="-Dbootclasspath=$(java-config --jdk-home)/jre/lib/core.jar:$(java-config --jdk-home)/jre/lib/graphics.jar"
else
# Sun derived JREs (Blackdown, Sun)
ant_extra_opts="-Dbootclasspath=$(java-config --jdk-home)/jre/lib/rt.jar"
fi
# karltk: jikes doesn't work as a compiler for Eclipse currently
# if use jikes ; then
# ant_extra_opts="${ant_extra_opts} -Dbuild.compiler=jikes"
# fi
export ANT_OPTS=-Xmx768m
# Build resources
einfo "Building resources.core plugin"
cd ${core_src_dir}
make JDK_INCLUDE="`java-config -O`/include -I`java-config -O`/include/linux" || die "Failed to build resource.core plugin"
mkdir -p ${S}/"${core_dest_dir}"
mv *.so ${S}/"${core_dest_dir}"
einfo "Building selected platform"
cd ${S}
${use_gtk} && build_gtk_frontend
${use_motif} && build_motif_frontend
einfo "Building java code"
# karltk: Do we really need to rebuild all of this if both motif and
# gtk are specified?
cd ${S}
if ( ${use_gtk} || ! ( ${use_gtk} || ${use_motif} || use kde ) ); then
einfo "Building platform suited for the GTK+ frontend"
ant -q \
-buildfile build.xml \
-Dos=linux \
-Dws=gtk \
-DinstallArch=$ARCH \
${ant_extra_opts} compile distribute || die "Failed to compile java code (gtk+)"
fi
if ${use_motif} ; then
einfo "Building platform suited for the Motif frontend"
ant -q \
-buildfile build.xml \
-Dos=linux \
-Dws=motif \
-DinstallArch=$ARCH \
${ant_extra_opts} compile distribute || die "Failed to compile java code (Motif)"
fi
cat ${FILESDIR}/eclipse-${SLOT}.desktop | \
sed -e "s/@PV@/${PV}/" \
> eclipse-${SLOT}.desktop
}
src_install() {
eclipse_dir="/usr/lib/eclipse-${SLOT}"
# Create basic directories
dodir ${eclipse_dir}
einfo "Installing features and plugins"
find features \
-name "*.bin.dist.zip" \
-exec unzip -q -o \{\} -d ${D}/${eclipse_dir} \;
# Install launchers and native code
exeinto ${eclipse_dir}
if ${use_gtk} ; then
einfo "Installing eclipse-gtk binary"
doexe plugins/platform-launcher/library/gtk/eclipse-gtk || die "Failed to install eclipse-gtk"
fi
if ${use_motif} ; then
einfo "Installing eclipse-motif binary"
doexe plugins/platform-launcher/library/motif/eclipse-motif || die "Failed to install eclipse-motif"
fi
# Installing misc files
insinto ${eclipse_dir}
doins plugins/org.eclipse.platform/.eclipseproduct || die "Missing .eclipseproduct"
doins plugins/org.eclipse.platform/{startup.jar,splash.bmp} || die "Missing startup,jar or splash.bmp"
doins plugins/platform-launcher/bin/linux/gtk/icon.xpm || die "Missing icon.xpm"
doins plugins/org.eclipse.platform/install.ini || die "Missing install.ini"
# Install startup script
exeinto /usr/bin
doexe ${FILESDIR}/eclipse-${SLOT}
# Install GNOME .desktop file
if use gnome ; then
insinto /usr/share/gnome/apps/Development
doins eclipse-${SLOT}.desktop
fi
# Install KDE .desktop file
if use kde ; then
# karltk: should check for available kde version(s)
insinto /usr/kde/3.2/share/applnk/Applications/
doins eclipse-${SLOT}.desktop
fi
doman ${FILESDIR}/eclipse.1
}
|