Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Oct 2016 19:49:56 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423295 - head/devel/fb-adb
Message-ID:  <201610041949.u94Jnutk025072@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Tue Oct  4 19:49:56 2016
New Revision: 423295
URL: https://svnweb.freebsd.org/changeset/ports/423295

Log:
  devel/fb-adb: unbreak fetch for 64bit NDK
  
  fetch: https://dl.google.com/android/ndk/android-ndk-r11c-linux-x86_64.zip: Not Found
  
  Note, :7z versus :zip sizes are
  
    $ du -Ah android-ndk-*
    376M    android-ndk-r10e-linux-x86.bin
    1.0G    android-ndk-r10e-linux-x86.zip
    383M    android-ndk-r10e-linux-x86_64.bin
    1.0G    android-ndk-r10e-linux-x86_64.zip
    757M    android-ndk-r11c-linux-x86_64.zip
    721M    android-ndk-r12b-linux-x86_64.zip

Modified:
  head/devel/fb-adb/Makefile   (contents, props changed)

Modified: head/devel/fb-adb/Makefile
==============================================================================
--- head/devel/fb-adb/Makefile	Tue Oct  4 19:45:51 2016	(r423294)
+++ head/devel/fb-adb/Makefile	Tue Oct  4 19:49:56 2016	(r423295)
@@ -49,14 +49,15 @@ DEBUG_CONFIGURE_ENABLE=	debuggable-stubs
 
 # XXX Convert into USES=android once more things depend on it
 NDK_DESC=		Build target stubs using Android NDK
-NDK_MASTER_SITES=	https://dl.google.com/android/ndk/:ndk,p7zip
+NDK_MASTER_SITES=	https://dl.google.com/android/ndk/:7z \
+			https://dl.google.com/android/repository/:zip
 .if defined(ANDROID_NDK)
 # Prefer NDK from environment
 WRKSRC_ndk=		${ANDROID_NDK}
 .else
 NDK_DISTFILES=		${NDK_DISTFILES_${LINUX_ARCH}}
-NDK_DISTFILES_i386=	android-ndk-r10e-linux-x86.bin:ndk,p7zip
-NDK_DISTFILES_x86_64=	android-ndk-r11c-linux-x86_64.zip:ndk
+NDK_DISTFILES_i386=	android-ndk-r10e-linux-x86.bin:7z
+NDK_DISTFILES_x86_64=	android-ndk-r11c-linux-x86_64.zip:zip
 WRKSRC_ndk=		${WRKDIR}/${NDK_DISTFILES:R:C/(-[^-]+){2}$//}
 .endif
 NDK_USES=		7z:partial linux



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610041949.u94Jnutk025072>