From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1433294-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7C428158094 for <garchives@archives.gentoo.org>; Sat, 3 Sep 2022 22:09:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9593E0794; Sat, 3 Sep 2022 22:09:31 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F30DE0794 for <gentoo-commits@lists.gentoo.org>; Sat, 3 Sep 2022 22:09:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C91C9340E42 for <gentoo-commits@lists.gentoo.org>; Sat, 3 Sep 2022 22:09:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23DE25B2 for <gentoo-commits@lists.gentoo.org>; Sat, 3 Sep 2022 22:09:29 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1662242959.792d8f2c5fe18c131fc63df1dda88c4d791eb5bf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/augustus/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/augustus/augustus-3.4.0-r2.ebuild X-VCS-Directories: sci-biology/augustus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 792d8f2c5fe18c131fc63df1dda88c4d791eb5bf X-VCS-Branch: master Date: Sat, 3 Sep 2022 22:09:29 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ea7071a2-a52d-4fb6-8c87-15ac63860ae0 X-Archives-Hash: 699d494210d4390cff8bb92f027b7d39 commit: 792d8f2c5fe18c131fc63df1dda88c4d791eb5bf Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 3 22:09:15 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 3 22:09:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=792d8f2c sci-biology/augustus: respect CC, CXX Closes: https://bugs.gentoo.org/832187 Signed-off-by: Sam James <sam <AT> gentoo.org> sci-biology/augustus/augustus-3.4.0-r2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sci-biology/augustus/augustus-3.4.0-r2.ebuild b/sci-biology/augustus/augustus-3.4.0-r2.ebuild index abd32ec0ac0c..30b3d7d0a6f8 100644 --- a/sci-biology/augustus/augustus-3.4.0-r2.ebuild +++ b/sci-biology/augustus/augustus-3.4.0-r2.ebuild @@ -5,7 +5,7 @@ EAPI=8 DOCS_BUILDER="doxygen" DOCS_CONFIG_NAME="doxygen.conf" -inherit docs +inherit docs toolchain-funcs DESCRIPTION="Eukaryotic gene predictor" HOMEPAGE="https://bioinf.uni-greifswald.de/augustus/" @@ -32,7 +32,10 @@ RDEPEND=" DEPEND="${RDEPEND}" src_compile() { - default + tc-export CC CXX + + emake LINK.cc="$(tc-getCXX)" + docs_compile }