Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2008-07-31 17:43:55 +0000
committerAndrew Niefer2008-07-31 17:43:55 +0000
commitd4d5030025e589e552adf7a67c58c428d51d19c1 (patch)
tree4578561ed6edb4b594c0562159b12502b7f48ebb /bundles
parente8e86778d6e2b47171703010fdacbf93c157e775 (diff)
downloadrt.equinox.framework-d4d5030025e589e552adf7a67c58c428d51d19c1.tar.gz
rt.equinox.framework-d4d5030025e589e552adf7a67c58c428d51d19c1.tar.xz
rt.equinox.framework-d4d5030025e589e552adf7a67c58c428d51d19c1.zip
bug 220461 - cocoa port
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.executable/feature.xml11
-rw-r--r--bundles/org.eclipse.equinox.executable/target.build.properties6
-rw-r--r--bundles/org.eclipse.equinox.executable/target.build.xml20
3 files changed, 36 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/feature.xml b/bundles/org.eclipse.equinox.executable/feature.xml
index 9927cb252..eff7d6091 100644
--- a/bundles/org.eclipse.equinox.executable/feature.xml
+++ b/bundles/org.eclipse.equinox.executable/feature.xml
@@ -2,7 +2,7 @@
<feature
id="org.eclipse.equinox.executable"
label="%featureName"
- version="3.3.100.qualifier">
+ version="3.3.200.qualifier">
<description>
%description
@@ -57,6 +57,15 @@
install-size="0"
version="0.0.0"
fragment="true"/>
+
+ <plugin
+ id="org.eclipse.equinox.launcher.cocoa.macosx"
+ os="macosx"
+ ws="cocoa"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ fragment="true"/>
<plugin
id="org.eclipse.equinox.launcher.gtk.linux.ppc"
diff --git a/bundles/org.eclipse.equinox.executable/target.build.properties b/bundles/org.eclipse.equinox.executable/target.build.properties
index 3cf6b3a80..07a6860b8 100644
--- a/bundles/org.eclipse.equinox.executable/target.build.properties
+++ b/bundles/org.eclipse.equinox.executable/target.build.properties
@@ -31,6 +31,12 @@ root.macosx.carbon.ppc.permissions.755=${launcherName}.app/Contents/MacOS/${laun
root.macosx.carbon.x86=bin/carbon/macosx/x86
root.macosx.carbon.x86.permissions.755=${launcherName}.app/Contents/MacOS/${launcherName}
+root.macosx.cocoa.ppc=bin/cocoa/macosx/ppc
+root.macosx.cocoa.ppc.permissions.755=${launcherName}.app/Contents/MacOS/${launcherName}
+
+root.macosx.cocoa.x86=bin/cocoa/macosx/x86
+root.macosx.cocoa.x86.permissions.755=${launcherName}.app/Contents/MacOS/${launcherName}
+
root.aix.motif.ppc=bin/motif/aix/ppc
root.hpux.motif.PA_RISC=bin/motif/hpux/PA_RISC
diff --git a/bundles/org.eclipse.equinox.executable/target.build.xml b/bundles/org.eclipse.equinox.executable/target.build.xml
index 41d7c55ca..0f6dbfff2 100644
--- a/bundles/org.eclipse.equinox.executable/target.build.xml
+++ b/bundles/org.eclipse.equinox.executable/target.build.xml
@@ -93,6 +93,24 @@
<chmod perm="755" dir="${feature.base}/macosx.carbon.x86/${collectingFolder}" includes="${launcherName}.app/Contents/MacOS/${launcherName}" />
<chmod perm="755" dir="${feature.base}/macosx.carbon.x86/${collectingFolder}" includes="${launcherName}.app/Contents/Resources/Splash.app/Contents/MacOS/${launcherName}"/>
</target>
+ <target name="rootFilesmacosx_cocoa_ppc">
+ <mkdir dir="${feature.base}/macosx.cocoa.ppc/${collectingFolder}"/>
+ <copy todir="${feature.base}/macosx.cocoa.ppc/${collectingFolder}" failonerror="true" overwrite="true">
+ <fileset dir="${basedir}/bin/cocoa/macosx/ppc" includes="**" />
+ </copy>
+ <chmod perm="755" dir="${feature.base}/macosx.cocoa.ppc/${collectingFolder}" includes="${launcherName}" />
+ <chmod perm="755" dir="${feature.base}/macosx.cocoa.ppc/${collectingFolder}" includes="${launcherName}.app/Contents/MacOS/${launcherName}" />
+ <chmod perm="755" dir="${feature.base}/macosx.cocoa.ppc/${collectingFolder}" includes="${launcherName}.app/Contents/Resources/Splash.app/Contents/MacOS/${launcherName}"/>
+ </target>
+ <target name="rootFilesmacosx_cocoa_x86">
+ <mkdir dir="${feature.base}/macosx.cocoa.x86/${collectingFolder}"/>
+ <copy todir="${feature.base}/macosx.cocoa.x86/${collectingFolder}" failonerror="true" overwrite="true">
+ <fileset dir="${basedir}/bin/cocoa/macosx/x86" includes="**" />
+ </copy>
+ <chmod perm="755" dir="${feature.base}/macosx.cocoa.x86/${collectingFolder}" includes="${launcherName}" />
+ <chmod perm="755" dir="${feature.base}/macosx.cocoa.x86/${collectingFolder}" includes="${launcherName}.app/Contents/MacOS/${launcherName}" />
+ <chmod perm="755" dir="${feature.base}/macosx.cocoa.x86/${collectingFolder}" includes="${launcherName}.app/Contents/Resources/Splash.app/Contents/MacOS/${launcherName}"/>
+ </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">
@@ -203,6 +221,8 @@
<antcall target="rootFileswin32_win32_ia64"/>
<antcall target="rootFilesmacosx_carbon_ppc"/>
<antcall target="rootFilesmacosx_carbon_x86"/>
+ <antcall target="rootFilesmacosx_cocoa_ppc"/>
+ <antcall target="rootFilesmacosx_cocoa_x86"/>
<antcall target="rootFileslinux_gtk_x86"/>
<antcall target="rootFileslinux_gtk_ppc"/>
<antcall target="rootFileslinux_gtk_ppc64"/>

Back to the top