Dash:
[t2.git] / package / java / eclipse / eclipse.conf
blob43d9a5c80b8f2e9686ec7b58a452a69df488128c
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/eclipse/eclipse.conf
3 # Copyright (C) 2004 - 2021 The T2 SDE Project
4
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License version 2.
10 # --- T2-COPYRIGHT-NOTE-END ---
12 if [ $prefix_auto -eq 1 ]; then
13         prefix=opt/eclipse
14         set_confopt
17 # Arch conversion from t2 to the one used by eclipse.
18 ECLIPSE_ARCH=$arch
19 case "$ECLIPSE_ARCH" in
20     x86-64)
21         ECLIPSE_ARCH="x86_64" ;;
23     powerpc)
24         ECLIPSE_ARCH="ppc" ;;
26     powerpc*)
27         ECLIPSE_ARCH="ppc64" ;;
28 esac
30 # package doesn't contain a base dir
31 custextract=eclipse_extract
32 eclipse_extract() {
33         mkdir $pkg-$ver
34         var_append zipopt ' ' -d$pkg-$ver
35         autoextract_zip "$@"
36         }
38 makeopt=
39 makeinstopt=
41 ECJ="-Dbuild.compiler=org.eclipse.jdt.core.JDTCompilerAdapter"
43 # create ECJ
44 ANTOPT="$ECJ -lib \$PWD/jdtcoresrc/ecj.jar"
45 hook_add premake 2 "ant -buildfile jdtcoresrc/compilejdtcorewithjavac.xml"
46 hook_add premake 3 "ant -buildfile jdtcoresrc/compilejdtcore.xml $ANTOPT"
48 # compile & install
49 ANTOPT="$ECJ -lib \$PWD/ecj.jar -DinstallOs=linux -DinstallWs=gtk -DinstallArch=$ECLIPSE_ARCH"
51 # Custom installation.
52 eclipse_postmake() {
53         # Have eclipse put it all together.
54         ant $ANTOPT install
56         # Copy all stuff from the eclipse build to our prefix location.
57         # But to make sure any possible links stay intact we use
58         # tar | untar instead of cp.
59         ( cd eclipse; tar -c * | tar -x -C /$prefix )
61         # and a $PATH friendly `eclipse`
62         cat <<-EOT > $bindir/eclipse
63         #!/bin/sh
65         exec \${0%/*}/../eclipse
66         EOT
67         chmod +x $bindir/eclipse
70 hook_add inmake   5 "ant $ANTOPT compilelibs"
71 hook_add postmake 5 eclipse_postmake