diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2020-11-18 11:15:49 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2020-11-18 11:15:49 +0000 |
commit | 5049552d9127875a6df5893f35be4dcd7a94c5fb (patch) | |
tree | c1f2745e6738907cbb0819e37736690b6c0bba6c | |
parent | x11-toolkits/swt: (diff) |
devel/flexdock:
- fix build with modern JDK
- Update WWW
Notes
Notes:
svn path=/head/; revision=555630
-rw-r--r-- | devel/flexdock/files/patch-build.xml | 22 | ||||
-rw-r--r-- | devel/flexdock/pkg-descr | 2 |
2 files changed, 23 insertions, 1 deletions
diff --git a/devel/flexdock/files/patch-build.xml b/devel/flexdock/files/patch-build.xml new file mode 100644 index 000000000000..9155a121ffdb --- /dev/null +++ b/devel/flexdock/files/patch-build.xml @@ -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> + + diff --git a/devel/flexdock/pkg-descr b/devel/flexdock/pkg-descr index 9c51625f6151..ccb6b714db41 100644 --- a/devel/flexdock/pkg-descr +++ b/devel/flexdock/pkg-descr @@ -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/ |