ports/java/eclipse/files/patch-build.xml
Norikatsu Shigemura 0be0fb477c Update to 3.1.
o java/eclipse-devel is IGNOREd now until 3.2+.
o change MAINTAINERship to java@ on java/eclipse-devel. [1]

PR:		ports/84252
Submitted by:	Panagiotis Astithas <past@ebs.gr>
Requested by:	devel/eclipse-devel's maintainer [1]
Tested by:	java@
2005-07-31 05:26:16 +00:00

30 lines
1.1 KiB
XML

--- build.xml.orig Mon Jun 27 21:55:26 2005
+++ build.xml Sun Jul 17 18:50:50 2005
@@ -63,11 +63,11 @@
<!--unzip launcher -->
<property name="launcherlibs" value="${buildDirectory}/launchertmp" />
<mkdir dir="${launcherlibs}" />
- <unzip dest="${launcherlibs}">
- <fileset dir="${buildDirectory}/plugins/org.eclipse.platform.source/src/">
- <include name="org.eclipse.platform_*/launchersrc.zip" />
+ <copy todir="${launcherlibs}">
+ <fileset dir="${buildDirectory}/features/org.eclipse.platform.launchers">
+ <include name ="**"/>
</fileset>
- </unzip>
+ </copy>
<exec dir="${launcherlibs}/library/${installWs}/" executable="sh" failonerror="true">
<arg line="build.sh" />
</exec>
@@ -265,7 +265,10 @@
<!--used to add doc plug-ins to result after initial assembly-->
<condition property="archive.format" value="tar">
- <equals arg1="${installOs}" arg2="linux" />
+ <or>
+ <equals arg1="${installOs}" arg2="linux" />
+ <equals arg1="${installOs}" arg2="freebsd" />
+ </or>
</condition>
<property name="archive.format" value="zip" />
</target>