mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 21:00:30 -04:00
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@
30 lines
1.1 KiB
XML
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>
|