svn commit: r555630 - in head/devel/flexdock: . files
Max Brazhnikov
makc at FreeBSD.org
Wed Nov 18 11:15:50 UTC 2020
Author: makc
Date: Wed Nov 18 11:15:49 2020
New Revision: 555630
URL: https://svnweb.freebsd.org/changeset/ports/555630
Log:
devel/flexdock:
- fix build with modern JDK
- Update WWW
Added:
head/devel/flexdock/files/
head/devel/flexdock/files/patch-build.xml (contents, props changed)
Modified:
head/devel/flexdock/pkg-descr
Added: head/devel/flexdock/files/patch-build.xml
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/flexdock/files/patch-build.xml Wed Nov 18 11:15:49 2020 (r555630)
@@ -0,0 +1,22 @@
+--- build.xml.orig 2013-08-05 12:27:30 UTC
++++ build.xml
+@@ -112,7 +112,7 @@
+
+ <target name="compile" depends="init, resources"
+ description="Compile java sources for the framework, demos, and tests">
+- <javac classpathref="javac.classpath" destdir="${bin.dir}" debug="true" source="1.5" target="1.5" includeAntRuntime="no">
++ <javac classpathref="javac.classpath" destdir="${bin.dir}" debug="true" source="1.6" target="1.6" includeAntRuntime="no">
+ <compilerarg value="-Xlint"/>
+ <src path="${java.src.core}" />
+ <!-- the next 3 are interdependent -->
+@@ -122,8 +122,8 @@
+ <src path="${java.src.drag}"/>
+ <src path="${java.src.perspective}"/>
+ </javac>
+- <javac classpathref="javac.classpath.demo" srcdir="${java.src.demo}" destdir="${bin.dir.demo}" debug="true" source="1.5" target="1.5" includeAntRuntime="no"/>
+- <javac classpathref="javac.classpath.test" srcdir="${java.src.test}" destdir="${bin.dir.test}" debug="true" source="1.5" target="1.5" includeAntRuntime="no"/>
++ <javac classpathref="javac.classpath.demo" srcdir="${java.src.demo}" destdir="${bin.dir.demo}" debug="true" source="1.6" target="1.6" includeAntRuntime="no"/>
++ <javac classpathref="javac.classpath.test" srcdir="${java.src.test}" destdir="${bin.dir.test}" debug="true" source="1.6" target="1.6" includeAntRuntime="no"/>
+ </target>
+
+
Modified: head/devel/flexdock/pkg-descr
==============================================================================
--- head/devel/flexdock/pkg-descr Wed Nov 18 11:14:04 2020 (r555629)
+++ head/devel/flexdock/pkg-descr Wed Nov 18 11:15:49 2020 (r555630)
@@ -9,4 +9,4 @@
* Collapsible Containers to Save Real Estate
* Layout Persistence
-WWW: http://forge.scilab.org/index.php/p/flexdock/
+WWW: https://forge.scilab.org/index.php/p/flexdock/
More information about the svn-ports-head
mailing list