mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 03:45:17 -04:00
before it replaces Eclipse 3.2. The submitters (listed in alphabetical order) collaborated on this. Submitted by: Mike Bowie <mbowie@buzmo.com> Dan Rucci <dan@rucci.org> Ken Yamada <ken@tydfam.jp>
30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
--- features/org.eclipse.sdk/build.xml.orig Mon Jun 25 15:39:43 2007
|
|
+++ features/org.eclipse.sdk/build.xml Fri Aug 17 17:23:44 2007
|
|
@@ -169,6 +169,18 @@
|
|
</fileset>
|
|
</copy>
|
|
</target>
|
|
+ <target name="rootFilesfreebsd_gtk_x86">
|
|
+ <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/>
|
|
+ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true" overwrite="true">
|
|
+ <fileset dir="${basedir}/gtk" includes="**" />
|
|
+ </copy>
|
|
+ </target>
|
|
+ <target name="rootFilesfreebsd_gtk_amd64">
|
|
+ <mkdir dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}"/>
|
|
+ <copy todir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" failonerror="true" overwrite="true">
|
|
+ <fileset dir="${basedir}/gtk" includes="**" />
|
|
+ </copy>
|
|
+ </target>
|
|
<target name="rootFilessolaris_gtk_sparc">
|
|
<mkdir dir="${feature.base}/solaris.gtk.sparc/${collectingFolder}/"/>
|
|
<copy todir="${feature.base}/solaris.gtk.sparc/${collectingFolder}/" failonerror="true" overwrite="true">
|
|
@@ -227,6 +239,8 @@
|
|
<antcall target="rootFileslinux_gtk_s390"/>
|
|
<antcall target="rootFileslinux_gtk_s390x"/>
|
|
<antcall target="rootFileslinux_motif_x86"/>
|
|
+ <antcall target="rootFilesfreebsd_gtk_x86"/>
|
|
+ <antcall target="rootFilesfreebsd_gtk_amd64"/>
|
|
<antcall target="rootFilessolaris_gtk_sparc"/>
|
|
<antcall target="rootFilessolaris_gtk_x86"/>
|
|
<antcall target="rootFilessolaris_motif_sparc"/>
|