diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-12-31 15:23:29 +0100 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-12-31 15:39:30 +0100 |
commit | ac7a7d6fe13746d1178035d7756c788f9ef9beb2 (patch) | |
tree | 4acab9d840c8b6cb1477ba8c67b3da4a4c338564 /java/java3d | |
parent | devel/py-vcrpy: Update version 6.0.2=>7.0.0 (diff) |
Mk/Uses/java.mk: Runtime fix with USES=java:ant
USES=java:ant does not imply USES=java:run so we need to add the run arg
seperately when we are using USES=java:ant. Not all ports require the
the argument so it is better to address the ports individually instead
of handling it automatically by implying run for ant.
Thanks to vvd for carefully going through this.
Reported by: vvd
Approved by: portmgr (blanket)
Diffstat (limited to 'java/java3d')
-rw-r--r-- | java/java3d/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/java3d/Makefile b/java/java3d/Makefile index 84d35ee5c33e..54ce86120836 100644 --- a/java/java3d/Makefile +++ b/java/java3d/Makefile @@ -1,6 +1,6 @@ PORTNAME= java3d PORTVERSION= 1.5.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= java graphics games devel MASTER_SITES= https://sites.google.com/site/daemonwizard/ @@ -15,7 +15,7 @@ BROKEN_aarch64= fails to compile: GVector.java:168: bad use of '>' BROKEN_armv6= fails to compile: build.xml: Compile failed; see the compiler error output for details BROKEN_armv7= fails to compile: build.xml: Compile failed; see the compiler error output for details -USES= compiler:c11 gl java:ant tar:bzip2 xorg +USES= compiler:c11 gl java:ant,run tar:bzip2 xorg JAVA_VERSION= 8 USE_GL= gl USE_XORG= xt |