svn commit: r521659 - head/devel/fb-adb

Jan Beich jbeich at FreeBSD.org
Tue Dec 31 22:07:52 UTC 2019


Rene Ladan <rene at FreeBSD.org> writes:

> Author: rene
> Date: Tue Dec 31 21:26:39 2019
> New Revision: 521659
> URL: https://svnweb.freebsd.org/changeset/ports/521659
>
> Log:
>   devel/fb-adb: mark BROKEN when NDK is off
>   
>   When not using NDK (default ON), this port depends on long expired
>   lang/gnatdroid-x86, so mark it broken in that case (default for non-amd64/i386)

Can you try the following fix? Or do you plan to expire lang/gnatdroid-armv7 as well?
See also https://svnweb.freebsd.org/changeset/ports/402846

diff --git devel/fb-adb/Makefile devel/fb-adb/Makefile
index 42df36459031..38d69186db9e 100644
--- devel/fb-adb/Makefile
+++ devel/fb-adb/Makefile
@@ -52,8 +52,6 @@ OPTIONS_DEFAULT=NDK
 OPTIONS_EXCLUDE=${ARCH:Namd64:Ni386:C/.+/NDK/}
 OPTIONS_EXCLUDE_DragonFly=NDK
 
-NDK_BROKEN_OFF=	incomplete dependencies
-
 ASSERT_CONFIGURE_ENABLE=checking
 BASH_DESC=		Install JSON parser used by bash-completion
 BASH_RUN_DEPENDS=	jq:textproc/jq
@@ -98,6 +96,9 @@ post-patch-NDK-on:
 		${WRKSRC_ndk}/build/tools/ndk-common.sh
 
 post-patch-NDK-off:
+# XXX lang/gnatdroid-x86 no longer exists
+	@${REINPLACE_CMD} -i '.x86-off.bak' -e 's/stub-x86[^,]*, //g' \
+		${WRKSRC}/configure.ac
 	@${REINPLACE_CMD} -i '.aux.bak' -e 's/linux-android/aux-&/' \
 		${WRKSRC}/stub-*/configure
 


More information about the svn-ports-all mailing list