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 6D17E138334 for ; Wed, 6 Mar 2019 22:35:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62831E09BE; Wed, 6 Mar 2019 22:35:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A0E6E09BD for ; Wed, 6 Mar 2019 22:35:24 +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 A5B5D335D0D for ; Wed, 6 Mar 2019 22:35:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12E7F55E for ; Wed, 6 Mar 2019 22:35:21 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1551911710.3e50c90f89b1b86be508b058ed3b9f1c9a84029e.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/lincity-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-simulation/lincity-ng/lincity-ng-2.9_beta.ebuild X-VCS-Directories: games-simulation/lincity-ng/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 3e50c90f89b1b86be508b058ed3b9f1c9a84029e X-VCS-Branch: master Date: Wed, 6 Mar 2019 22:35:21 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a168d9c9-e049-4f3e-91f7-5bd4c9c408f7 X-Archives-Hash: 7a2718c6294e62475fdc65b425c1a5c4 commit: 3e50c90f89b1b86be508b058ed3b9f1c9a84029e Author: James Le Cuirot gentoo org> AuthorDate: Wed Mar 6 22:13:27 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Wed Mar 6 22:35:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e50c90f games-simulation/lincity-ng: Respect AR and RANLIB Unlike CXX and friends, these are not passed from configure to jam. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: James Le Cuirot gentoo.org> games-simulation/lincity-ng/lincity-ng-2.9_beta.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/games-simulation/lincity-ng/lincity-ng-2.9_beta.ebuild b/games-simulation/lincity-ng/lincity-ng-2.9_beta.ebuild index 264541ba5b1..c49cae5849f 100644 --- a/games-simulation/lincity-ng/lincity-ng-2.9_beta.ebuild +++ b/games-simulation/lincity-ng/lincity-ng-2.9_beta.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools libtool multiprocessing +inherit autotools libtool multiprocessing toolchain-funcs DESCRIPTION="City simulation game" HOMEPAGE="https://github.com/lincity-ng/lincity-ng" @@ -41,7 +41,11 @@ src_prepare() { } src_compile() { - jam -q -dx -j $(makeopts_jobs) || die "jam failed" + jam -q -dx \ + -j$(makeopts_jobs) \ + -sAR="$(tc-getAR) ru" \ + -sRANLIB="$(tc-getRANLIB)" \ + || die "jam failed" } src_install() {