git: 9b0b85eade3a - main - comms/rxtx: fix build on powerpc by using correct jdk directory
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jan 2025 21:47:30 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=9b0b85eade3a387d72d799eea2bf2f8f90bcff87
commit 9b0b85eade3a387d72d799eea2bf2f8f90bcff87
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2025-01-17 12:30:37 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2025-01-17 21:45:58 +0000
comms/rxtx: fix build on powerpc by using correct jdk directory
Also remove not necessary NOT_FOR_ARCHS.
---
comms/rxtx/Makefile | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/comms/rxtx/Makefile b/comms/rxtx/Makefile
index 471e19008850..67854ea50e40 100644
--- a/comms/rxtx/Makefile
+++ b/comms/rxtx/Makefile
@@ -13,9 +13,6 @@ WWW= http://rxtx.qbang.org
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/COPYING
-NOT_FOR_ARCHS= mips mips64
-NOT_FOR_ARCHS_REASON= Java not available for this architecture
-
USES= gmake java libtool zip
JAVA_OS= native
@@ -27,6 +24,6 @@ USE_LDCONFIG= yes
MAKE_JOBS_UNSAFE= yes
PLIST_SUB= JAVA_HOME=${JAVA_HOME:S,^${PREFIX}/,,}
-PLIST_SUB+= ARCH=${ARCH:C/armv.*/arm/:S/powerpc64/ppc64/}
+PLIST_SUB+= ARCH=${ARCH:C/armv.*/arm/:S/powerpc/ppc/}
.include <bsd.port.mk>