rpms/eclipse/devel eclipse-ppc64.patch,1.2,1.3

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Feb 20 17:51:23 UTC 2006


Author: ifoox

Update of /cvs/dist/rpms/eclipse/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv26318

Modified Files:
	eclipse-ppc64.patch 
Log Message:
Added plugins/org.eclipse.rcp.source.linux.gtk.ppc64/build.xml to ppc64 patch.

eclipse-ppc64.patch:
 build                                                                                              |    4 
 features/org.eclipse.platform.launchers/build.xml                                                  |    4 
 features/org.eclipse.platform.launchers/feature.xml                                                |    2 
 features/org.eclipse.sdk/build.xml                                                                 |    4 
 plugins/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/processor.aliases |    2 
 plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java    |    6 
 plugins/org.eclipse.rcp.source.linux.gtk.ppc64/build.xml                                           |  105 ++++++++++
 7 files changed, 122 insertions(+), 5 deletions(-)

Index: eclipse-ppc64.patch
===================================================================
RCS file: /cvs/dist/rpms/eclipse/devel/eclipse-ppc64.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- eclipse-ppc64.patch	17 Feb 2006 22:31:27 -0000	1.2
+++ eclipse-ppc64.patch	20 Feb 2006 17:51:21 -0000	1.3
@@ -91,3 +91,112 @@
  	 * IA64-based architecture.
  	 */
 
+diff -uNr /dev/null plugins/org.eclipse.rcp.source.linux.gtk.ppc64/build.xml
+--- /dev/null	2004-06-24 14:04:38.000000000 -0400
++++ plugins/org.eclipse.rcp.source.linux.gtk.ppc64/build.xml	2006-02-20 12:48:54.000000000 -0500
+@@ -0,0 +1,105 @@
++<?xml version="1.0" encoding="UTF-8"?>
++<project name="org.eclipse.rcp.source.linux.gtk.ppc64" default="build.jars" basedir=".">
++
++	<property name="basews" value="${ws}"/>
++	<property name="baseos" value="${os}"/>
++	<property name="basearch" value="${arch}"/>
++	<property name="basenl" value="${nl}"/>
++
++	<!-- Compiler settings. -->
++	<property name="javacFailOnError" value="false"/>
++	<property name="javacDebugInfo" value="on"/>
++	<property name="javacVerbose" value="true"/>
++	<property name="javacSource" value="1.3"/>
++	<property name="javacTarget" value="1.2"/>
++	<property name="compilerArg" value=""/>
++	<path id="path_bootclasspath">
++		<fileset dir="${java.home}/lib">
++			<include name="*.jar"/>
++		</fileset>
++	</path>
++	<property name="bootclasspath" refid="path_bootclasspath"/>
++
++	<target name="init" depends="properties">
++		<condition property="pluginTemp" value="${buildTempFolder}/plugins">
++			<isset property="buildTempFolder"/>
++		</condition>
++		<property name="pluginTemp" value="${basedir}"/>
++		<condition property="build.result.folder" value="${pluginTemp}/org.eclipse.rcp.source.linux.gtk.ppc64">
++			<isset property="buildTempFolder"/>
++		</condition>
++		<property name="build.result.folder" value="${basedir}"/>
++		<property name="temp.folder" value="${basedir}/temp.folder"/>
++		<property name="plugin.destination" value="${basedir}"/>
++	</target>
++
++	<target name="properties" if="eclipse.running">
++		<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
++
++	</target>
++
++	<target name="build.update.jar" depends="init" description="Build the plug-in: org.eclipse.rcp.source.linux.gtk.ppc64 for an update site.">
++		<delete dir="${temp.folder}"/>
++		<mkdir dir="${temp.folder}"/>
++		<antcall target="build.jars"/>
++		<antcall target="gather.bin.parts">
++			<param name="destination.temp.folder" value="${temp.folder}/"/>
++		</antcall>
++		<zip destfile="${plugin.destination}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2.jar" basedir="${temp.folder}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2" filesonly="false" whenempty="skip" update="false"/>
++		<delete dir="${temp.folder}"/>
++	</target>
++	<target name="build.jars">
++		<ant antfile="build.xml" dir="../org.eclipse.swt.gtk.linux.ppc64" target="build.sources"/>
++		<ant antfile="build.xml" dir="../org.eclipse.swt.gtk.linux.ppc64" target="gather.sources">
++			<property name="destination.temp.folder" value="${basedir}/src"/>
++		</ant>
++	</target>
++	<target name="build.sources">
++	</target>
++
++	<target name="gather.bin.parts" depends="init" if="destination.temp.folder">
++		<mkdir dir="${destination.temp.folder}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2"/>
++		<copy todir="${destination.temp.folder}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2" failonerror="true" overwrite="false">
++			<fileset dir="${basedir}" includes="about.html,fragment.xml,src/**,META-INF/"			/>
++		</copy>
++	</target>
++
++	<target name="build.zips" depends="init">
++	</target>
++
++	<target name="gather.sources" depends="init" if="destination.temp.folder">
++	</target>
++
++	<target name="gather.logs" depends="init" if="destination.temp.folder">
++	</target>
++
++	<target name="clean" depends="init" description="Clean the plug-in: org.eclipse.rcp.source.linux.gtk.ppc64 of all the zips, jars and logs created.">
++		<delete file="${plugin.destination}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2.jar"/>
++		<delete file="${plugin.destination}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2.zip"/>
++		<delete dir="${temp.folder}"/>
++	</target>
++
++	<target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
++		<eclipse.convertPath fileSystemPath="/builds/M/src/plugins/org.eclipse.rcp.source.linux.gtk.ppc64" property="resourcePath"/>
++		<eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
++	</target>
++
++	<target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: org.eclipse.rcp.source.linux.gtk.ppc64.">
++		<delete dir="${temp.folder}"/>
++		<mkdir dir="${temp.folder}"/>
++		<antcall target="build.jars"/>
++		<antcall target="build.sources"/>
++		<antcall target="gather.bin.parts">
++			<param name="destination.temp.folder" value="${temp.folder}/"/>
++		</antcall>
++		<antcall target="gather.sources">
++			<param name="destination.temp.folder" value="${temp.folder}/"/>
++		</antcall>
++		<delete>
++			<fileset dir="${temp.folder}" includes="**/*.bin.log"			/>
++		</delete>
++		<zip destfile="${plugin.destination}/org.eclipse.rcp.source.linux.gtk.ppc64_3.1.2.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
++		<delete dir="${temp.folder}"/>
++	</target>
++
++</project>




More information about the fedora-cvs-commits mailing list