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 /devel/arduino18/Makefile | |
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 'devel/arduino18/Makefile')
-rw-r--r-- | devel/arduino18/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/arduino18/Makefile b/devel/arduino18/Makefile index 6205751b0e3c..f2b8b078fcd1 100644 --- a/devel/arduino18/Makefile +++ b/devel/arduino18/Makefile @@ -1,6 +1,6 @@ PORTNAME= ${GH_PROJECT:tl} PORTVERSION= 1.8.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel java PKGNAMESUFFIX= 18 DIST_SUBDIR= ${PORTNAME} @@ -48,7 +48,7 @@ GH_PROJECT= Arduino GH_TUPLE+= ${BUNDLE_GH_ACCOUNT}:${blib}/linux/work/libraries/${blib:C/\:.*//} .endfor -USES= desktop-file-utils java:ant +USES= desktop-file-utils java:ant,run LIB_DIRS+= ${LOCALBASE}/lib ${LOCALBASE}/lib/jni WRKSRC_SUBDIR= build PATCH_WRKSRC= ${WRKSRC}/../ |