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/apache-commons-beanutils/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 'java/apache-commons-beanutils/Makefile')
-rw-r--r-- | java/apache-commons-beanutils/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/apache-commons-beanutils/Makefile b/java/apache-commons-beanutils/Makefile index f769f930db5d..f6538aa7eed0 100644 --- a/java/apache-commons-beanutils/Makefile +++ b/java/apache-commons-beanutils/Makefile @@ -1,5 +1,6 @@ PORTNAME= commons-beanutils PORTVERSION= 1.9.4 +PORTREVISION= 1 CATEGORIES= java devel MASTER_SITES= APACHE_COMMONS_SOURCE PKGNAMEPREFIX= apache- @@ -16,7 +17,7 @@ BUILD_DEPENDS= ${JAVALIBDIR}/commons-logging.jar:java/apache-commons-logging \ RUN_DEPENDS= ${JAVALIBDIR}/commons-logging.jar:java/apache-commons-logging \ ${JAVALIBDIR}/commons-collections.jar:java/apache-commons-collections -USES= dos2unix java:ant +USES= dos2unix java:ant,run DOS2UNIX_FILES= build.xml ALL_TARGET= dist |