From owner-svn-ports-all@freebsd.org Wed Dec 16 13:48:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B0D4A493DD; Wed, 16 Dec 2015 13:48:41 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED7A215F1; Wed, 16 Dec 2015 13:48:40 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBGAWwB5073917; Wed, 16 Dec 2015 10:32:58 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBGAWw5k073915; Wed, 16 Dec 2015 10:32:58 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201512161032.tBGAWw5k073915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 16 Dec 2015 10:32:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403859 - in head/lang: gnatdroid-sysroot gnatdroid-sysroot-x86 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Dec 2015 13:48:41 -0000 Author: marino Date: Wed Dec 16 10:32:57 2015 New Revision: 403859 URL: https://svnweb.freebsd.org/changeset/ports/403859 Log: lang/gnatdroid-sysroot(-x86): Only for i386 and amd64 The gnatdroid sysroot* and binutils* ports do build on other architectures, but the actually gnatroid cross-compilers do not. Until this changes, there is no point to build the dependencies so suppress their building on non-x86 platforms. Modified: head/lang/gnatdroid-sysroot-x86/Makefile head/lang/gnatdroid-sysroot/Makefile Modified: head/lang/gnatdroid-sysroot-x86/Makefile ============================================================================== --- head/lang/gnatdroid-sysroot-x86/Makefile Wed Dec 16 10:13:59 2015 (r403858) +++ head/lang/gnatdroid-sysroot-x86/Makefile Wed Dec 16 10:32:57 2015 (r403859) @@ -12,6 +12,8 @@ DISTNAME= android-${API}-x86 MAINTAINER= marino@FreeBSD.org COMMENT= Android sysroots for C/Ada Android cross-compiler (x86) +ONLY_FOR_ARCHS= i386 amd64 + USES= tar:bzip2 NO_BUILD= yes NO_MTREE= yes Modified: head/lang/gnatdroid-sysroot/Makefile ============================================================================== --- head/lang/gnatdroid-sysroot/Makefile Wed Dec 16 10:13:59 2015 (r403858) +++ head/lang/gnatdroid-sysroot/Makefile Wed Dec 16 10:32:57 2015 (r403859) @@ -11,6 +11,8 @@ DISTNAME= android-${API}-arm MAINTAINER= marino@FreeBSD.org COMMENT= Android sysroots for C/Ada Android cross-compiler +ONLY_FOR_ARCHS= i386 amd64 + USES= tar:bzip2 NO_BUILD= yes NO_MTREE= yes