before it replaces Eclipse 3.2. The submitters (listed in alphabetical order) collaborated on this. Submitted by: Mike Bowie <mbowie@buzmo.com> Dan Rucci <dan@rucci.org> Ken Yamada <ken@tydfam.jp>
91 lines
4 KiB
XML
91 lines
4 KiB
XML
--- features/org.eclipse.platform/build.xml.orig 2007-06-26 04:39:42.000000000 +0900
|
|
+++ features/org.eclipse.platform/build.xml 2007-09-02 14:11:58.000000000 +0900
|
|
@@ -57,6 +57,16 @@
|
|
<property name="os" value="linux"/>
|
|
<property name="ws" value="gtk"/>
|
|
</ant>
|
|
+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.filesystem.freebsd.x86" target="${target}">
|
|
+ <property name="arch" value="x86"/>
|
|
+ <property name="os" value="freebsd"/>
|
|
+ <property name="ws" value="gtk"/>
|
|
+ </ant>
|
|
+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.filesystem.freebsd.amd64" target="${target}">
|
|
+ <property name="arch" value="amd64"/>
|
|
+ <property name="os" value="freebsd"/>
|
|
+ <property name="ws" value="gtk"/>
|
|
+ </ant>
|
|
<ant antfile="build.xml" dir="../../plugins/org.eclipse.core.filesystem.linux.ppc" target="${target}">
|
|
<property name="arch" value="ppc"/>
|
|
<property name="os" value="linux"/>
|
|
@@ -127,6 +137,11 @@
|
|
<property name="os" value="linux"/>
|
|
<property name="ws" value="gtk"/>
|
|
</ant>
|
|
+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.update.core.freebsd" target="${target}">
|
|
+ <property name="arch" value="x86"/>
|
|
+ <property name="os" value="freebsd"/>
|
|
+ <property name="ws" value="gtk"/>
|
|
+ </ant>
|
|
<ant antfile="build.xml" dir="../../plugins/org.eclipse.ant.core" target="${target}">
|
|
<property name="arch" value="x86"/>
|
|
<property name="os" value="win32"/>
|
|
@@ -485,6 +500,50 @@
|
|
<arg line="eclipse"/>
|
|
</exec>
|
|
</target>
|
|
+ <target name="rootFilesfreebsd_gtk_x86">
|
|
+ <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}/"/>
|
|
+ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}/" failonerror="true" overwrite="true">
|
|
+ <fileset dir="${basedir}/about_files/freebsd.gtk.x86">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/../../features/org.eclipse.equinox.executable/bin/gtk/freebsd/x86">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/gtk">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/rootfiles">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/../../plugins/org.eclipse.platform">
|
|
+ <include name="startup.jar"/>
|
|
+ </fileset>
|
|
+ </copy>
|
|
+ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="eclipse" />
|
|
+ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="*.so*" />
|
|
+ </target>
|
|
+ <target name="rootFilesfreebsd_gtk_amd64">
|
|
+ <mkdir dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}/"/>
|
|
+ <copy todir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}/" failonerror="true" overwrite="true">
|
|
+ <fileset dir="${basedir}/about_files/freebsd.gtk.amd64">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/../../features/org.eclipse.equinox.executable/bin/gtk/freebsd/amd64">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/gtk">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/rootfiles">
|
|
+ <include name="**"/>
|
|
+ </fileset>
|
|
+ <fileset dir="${basedir}/../../plugins/org.eclipse.platform">
|
|
+ <include name="startup.jar"/>
|
|
+ </fileset>
|
|
+ </copy>
|
|
+ <chmod perm="755" dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" includes="eclipse" />
|
|
+ <chmod perm="755" dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" includes="*.so*" />
|
|
+ </target>
|
|
<target name="rootFileslinux_gtk_x86">
|
|
<mkdir dir="${feature.base}/linux.gtk.x86/${collectingFolder}/"/>
|
|
<copy todir="${feature.base}/linux.gtk.x86/${collectingFolder}/" failonerror="true" overwrite="true">
|
|
@@ -784,6 +843,8 @@
|
|
<antcall target="rootFileswin32_win32_x86"/>
|
|
<antcall target="rootFileswin32_wpf_x86"/>
|
|
<antcall target="rootFilesmacosx_carbon_ppc"/>
|
|
+ <antcall target="rootFilesfreebsd_gtk_x86"/>
|
|
+ <antcall target="rootFilesfreebsd_gtk_amd64"/>
|
|
<antcall target="rootFileslinux_gtk_x86"/>
|
|
<antcall target="rootFileslinux_gtk_ppc"/>
|
|
<antcall target="rootFileslinux_gtk_ppc64"/>
|