mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 07:10:32 -04:00
o Use native JDK rather than linux-sun-jdk. [2] o Utilize WITH_MOZILLA. It provies to use mozilla or firefox. [2] o Fix some port's bugs. [2] o Add zip to BUILD_DEPENDS and fix build error without zip. [3] PR: ports/72990 [1], ports/72475 [2] Submitted by: Jeremy Faulkner <gldisater@gldis.ca> [1], [2] Pointed out by: pointy via kris [3]
21 lines
1 KiB
Text
21 lines
1 KiB
Text
--- features/org.eclipse.jdt/build.xml.orig Thu Jun 3 00:23:02 2004
|
|
+++ features/org.eclipse.jdt/build.xml Thu Jun 3 00:24:29 2004
|
|
@@ -162,6 +162,18 @@
|
|
<fileset dir="${basedir}/rootfiles" includes="**" />
|
|
</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">
|
|
+ <fileset dir="${basedir}/rootfiles" includes="**" />
|
|
+ </copy>
|
|
+ </target>
|
|
+ <target name="rootFilesfreebsd_motif_x86">
|
|
+ <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/>
|
|
+ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true">
|
|
+ <fileset dir="${basedir}/rootfiles" includes="**" />
|
|
+ </copy>
|
|
+ </target>
|
|
<target name="rootFilessolaris_motif_sparc">
|
|
<mkdir dir="${feature.base}/solaris.motif.sparc/${collectingFolder}"/>
|
|
<copy todir="${feature.base}/solaris.motif.sparc/${collectingFolder}" failonerror="true">
|