ports/java/eclipse/files/patch-features-platform-source-build
Norikatsu Shigemura 9e2dbd4bf1 o Update to 3.0.1. [1]
o Use native JDK rather than linux-sun-jdk. [2]
o Utilize WITH_MOZILLA.  It provies to use mozilla or firefox. [2]
o Fix some port's bugs. [2]
o Add zip to BUILD_DEPENDS and fix build error without zip. [3]

PR:		ports/72990 [1], ports/72475 [2]
Submitted by:	Jeremy Faulkner <gldisater@gldis.ca> [1], [2]
Pointed out by:	pointy via kris [3]
2004-10-27 16:57:48 +00:00

54 lines
3.3 KiB
Text

--- features/org.eclipse.platform.source/build.xml.orig Sun Oct 17 22:47:16 2004
+++ features/org.eclipse.platform.source/build.xml Sun Oct 17 22:52:58 2004
@@ -37,6 +37,16 @@
<property name="os" value="linux"/>
<property name="ws" value="motif"/>
</ant>
+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.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.platform.source.freebsd.motif.x86" target="${target}">
+ <property name="arch" value="x86"/>
+ <property name="os" value="freebsd"/>
+ <property name="ws" value="motif"/>
+ </ant>
<ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.macosx.carbon.ppc" target="${target}">
<property name="arch" value="ppc"/>
<property name="os" value="macosx"/>
@@ -129,7 +139,21 @@
<copy todir="${feature.base}/features/org.eclipse.platform.source_3.0.1" failonerror="true">
<fileset dir="${basedir}" includes="cpl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" />
</copy>
- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.1,org.eclipse.platform.source,3.0.1,org.eclipse.platform.source.linux.gtk.ia64,3.0.1,org.eclipse.platform.source.macosx.carbon.ppc,3.0.1,org.eclipse.platform.source.qnx.photon.x86,3.0.1,org.eclipse.platform.source.linux.gtk.ppc,3.0.1,org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.1,org.eclipse.platform.source.aix.motif.ppc,3.0.1,org.eclipse.platform.source.linux.gtk.x86,3.0.1,org.eclipse.platform.source.win32.win32.x86,3.0.1,org.eclipse.platform.source.solaris.motif.sparc,3.0.1,org.eclipse.platform.source.linux.gtk.amd64,3.0.1,org.eclipse.platform.source.linux.motif.x86,3.0.1,"/>
+ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.1,
+org.eclipse.platform.source,3.0.1,
+org.eclipse.platform.source.linux.gtk.ia64,3.0.1,
+org.eclipse.platform.source.macosx.carbon.ppc,3.0.1,
+org.eclipse.platform.source.qnx.photon.x86,3.0.1,
+org.eclipse.platform.source.linux.gtk.ppc,3.0.1,
+org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.1,
+org.eclipse.platform.source.aix.motif.ppc,3.0.1,
+org.eclipse.platform.source.linux.gtk.x86,3.0.1,
+org.eclipse.platform.source.freebsd.gtk.x86,3.0.1,
+org.eclipse.platform.source.win32.win32.x86,3.0.1,
+org.eclipse.platform.source.solaris.motif.sparc,3.0.1,
+org.eclipse.platform.source.linux.gtk.amd64,3.0.1,
+org.eclipse.platform.source.linux.motif.x86,3.0.1,
+org.eclipse.platform.source.freebsd.motif.x86,3.0.1,"/>
<antcall target="rootFiles${os}_${ws}_${arch}"/>
</target>
<target name="rootFileswin32_win32_x86">
@@ -154,6 +178,11 @@
</target>
<target name="rootFilesqnx_photon_x86">
</target>
+ <target name="rootFilesfreebsd_gtk_x86">
+ </target>
+ <target name="rootFilesfreebsd_motif_x86">
+ </target>
+
<target name="zip.distribution" depends="init" description="Create a zip containing all the plug-ins and features for the feature: org.eclipse.platform.source.">
<delete dir="${feature.temp.folder}"/>