1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00

java/sigar: enable on armv6 and armv7

builds and packages fine
does not touch existing architectures
it was marked broken in 2017 without mention of the error message
FreeBSD and OpenJDK had quite some improvements since 2017

Approved by:	port has no maintainer
This commit is contained in:
Ronald Klop 2024-10-28 15:38:13 +01:00
parent 5b67696f13
commit a4eeb47ca9
No known key found for this signature in database
GPG Key ID: 551E8E6207A42166

View File

@ -11,9 +11,6 @@ WWW= https://support.hyperic.com/display/SIGAR/Home
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/NOTICE
BROKEN_armv6= fails to compile: jni-build.xml: gcc failed with return code 1
BROKEN_armv7= fails to compile: jni-build.xml: gcc failed with return code 1
BUILD_DEPENDS= ${ANT_CMD}:devel/apache-ant
LIB_DEPENDS= libsigar.so:devel/sigar
TEST_DEPENDS= ${JAVALIBDIR}/junit.jar:java/junit
@ -37,7 +34,7 @@ INVOKE_ANT= ${SETENV} PATH=${PATH}:${WRKSRC}/bin JAVA_HOME=${JAVA_HOME} \
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD
LIBNAME= libsigar-${ARCH:S,i386,x86,:S,powerpc64,ppc64,}-${OPSYS:tl}-1
LIBNAME= libsigar-${ARCH:S,armv6,arm,:S,armv7,arm,:S,i386,x86,:S,powerpc64,ppc64,}-${OPSYS:tl}-1
.else
IGNORE= ${OPSYS} platform is not supported
.endif