mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
. We are now installing a real eclipse product. . Only the jar files for the platform are built, dramatically reducing the time necessary to build (thanks to the Fedora devs for the idea and the basic procedure). . Lot of small fixes to the build procedure to make future imports easier . Some of the bundles are pre-extracted during install to improve launching time. . JDK 1.6 is required to build but any jre (1.5 or 1.6) can be used in Preferences->Java->Installed JREs. JDK 1.4 is unfortunately not supported at this time. . Switch to x86_64 architecture name instead of amd64 to be more in-line with mainline eclipse. Note that after this update you will need to reinstall any plugins you've installed with the built in Update Manager. This is a one time thing. Submitted by: sepotvin@ (maintainer)
20 lines
1.7 KiB
XML
20 lines
1.7 KiB
XML
--- plugins/org.eclipse.ant.ui/buildfiles/buildRemoteExtraJAR.xml.orig 2008-08-02 10:58:33.000000000 -0400
|
|
+++ plugins/org.eclipse.ant.ui/buildfiles/buildRemoteExtraJAR.xml 2008-08-02 11:02:19.000000000 -0400
|
|
@@ -8,11 +8,15 @@
|
|
<property name="build.result.folder" value="${basedir}"/>
|
|
<property name="version.suffix" value="_3.1.0"/>
|
|
<property name="win32.jar" value="${eclipse.home}/plugins/org.eclipse.swt.win32.win32.x86${version.suffix}.jar"/>
|
|
- <property name="gtk.jar" value="${eclipse.home}/plugins/org.eclipse.swt.gtk.linux.x86${version.suffix}.jar"/>
|
|
+ <property name="gtk.linux.jar" value="${eclipse.home}/plugins/org.eclipse.swt.gtk.linux.x86${version.suffix}.jar"/>
|
|
+ <property name="gtk.freebsd.x86.jar" value="${eclipse.home}/plugins/org.eclipse.swt.gtk.freebsd.x86${version.suffix}.jar"/>
|
|
+ <property name="gtk.freebsd.x86_64.jar" value="${eclipse.home}/plugins/org.eclipse.swt.gtk.freebsd.x86_64${version.suffix}.jar"/>
|
|
<property name="motif.jar" value="${eclipse.home}/plugins/org.eclipse.swt.motif${version.suffix}.jar"/>
|
|
<property name="osx.jar" value="${eclipse.home}/plugins/org.eclipse.swt.carbon.macosx.ppc${version.suffix}.jar"/>
|
|
<available file="${win32.jar}" property="swt.jar" value="${win32.jar}"/>
|
|
- <available file="${gtk.jar}" property="swt.jar" value="${gtk.jar}"/>
|
|
+ <available file="${gtk.linux.jar}" property="swt.jar" value="${gtk.linux.jar}"/>
|
|
+ <available file="${gtk.freebsd.x86.jar}" property="swt.jar" value="${gtk.freebsd.x86.jar}"/>
|
|
+ <available file="${gtk.freebsd.x86_64.jar}" property="swt.jar" value="${gtk.freebsd.x86_64.jar}"/>
|
|
<available file="${motif.jar}" property="swt.jar" value="${motif.jar}"/>
|
|
<available file="${osx.jar}" property="swt.jar" value="${osx.jar}"/>
|
|
</target>
|