From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 817CB139694 for ; Wed, 31 May 2017 07:21:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 979DDE0DD0; Wed, 31 May 2017 07:21:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7258DE0DD0 for ; Wed, 31 May 2017 07:21:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2CEE2341720 for ; Wed, 31 May 2017 07:21:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CD08745E for ; Wed, 31 May 2017 07:21:37 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1496215276.62b045ea4e8ff326637259e4b0b7971818a1c579.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gnat_util/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/gnat_util/gnat_util-2016.ebuild X-VCS-Directories: dev-ada/gnat_util/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 62b045ea4e8ff326637259e4b0b7971818a1c579 X-VCS-Branch: master Date: Wed, 31 May 2017 07:21:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f9b8cf4a-04c4-4197-a793-cc7c2e225fc4 X-Archives-Hash: 5644f2762cd9d35d1c79e1cbea1b113b commit: 62b045ea4e8ff326637259e4b0b7971818a1c579 Author: Tupone Alfredo gentoo org> AuthorDate: Wed May 31 07:21:16 2017 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Wed May 31 07:21:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b045ea dev-ada/gnat_util: Enable verbose mode Package-Manager: Portage-2.3.5, Repoman-2.3.1 dev-ada/gnat_util/gnat_util-2016.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-ada/gnat_util/gnat_util-2016.ebuild b/dev-ada/gnat_util/gnat_util-2016.ebuild index 51cdbdc1cf9..dd8a3f6cba1 100644 --- a/dev-ada/gnat_util/gnat_util-2016.ebuild +++ b/dev-ada/gnat_util/gnat_util-2016.ebuild @@ -27,6 +27,7 @@ PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) pkg_setup() { GCC=${ADA:-$(tc-getCC)} GNATMAKE="${GCC/gcc/gnatmake}" + CC="${GCC}" if [[ -z "$(type ${GNATMAKE} 2>/dev/null)" ]] ; then eerror "You need a gcc compiler that provides the Ada Compiler:" eerror "1) use gcc-config to select the right compiler or" @@ -36,10 +37,11 @@ pkg_setup() { } src_compile() { - emake GNATMAKE=${GNATMAKE} BUILDER="gprbuild -j$(makeopts_jobs)" generate_sources + emake GNATMAKE="${GNATMAKE} ${ADAFLAGS}" \ + BUILDER="gprbuild -j$(makeopts_jobs)" generate_sources for kind in shared static static-pic; do if use ${kind}; then - emake BUILDER="gprbuild -j$(makeopts_jobs)" build-${kind} + emake BUILDER="gprbuild -v -j$(makeopts_jobs)" build-${kind} fi done }