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 8DE451382C5 for ; Thu, 15 Apr 2021 06:40:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2113FE08D3; Thu, 15 Apr 2021 06:40:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 015E9E08CE for ; Thu, 15 Apr 2021 06:40:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 719DA335DC9 for ; Thu, 15 Apr 2021 06:39:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 294A24A8 for ; Thu, 15 Apr 2021 06:39:58 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1618468734.9125cac6b7858eee2325ee74d0658c387df981c6.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/ibp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/ibp/ibp-0.21-r1.ebuild X-VCS-Directories: media-radio/ibp/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 9125cac6b7858eee2325ee74d0658c387df981c6 X-VCS-Branch: master Date: Thu, 15 Apr 2021 06:39:58 +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: c629a391-3e94-4503-9b2a-2674d9d58da0 X-Archives-Hash: 3342008863459484dc37e3d99f7c2125 commit: 9125cac6b7858eee2325ee74d0658c387df981c6 Author: Ionen Wolkens gmail com> AuthorDate: Wed Apr 14 10:52:54 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Apr 15 06:38:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9125cac6 media-radio/ibp: fix USE=X build with -native-symlinks Signed-off-by: Ionen Wolkens gmail.com> Signed-off-by: Joonas Niilola gentoo.org> media-radio/ibp/ibp-0.21-r1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media-radio/ibp/ibp-0.21-r1.ebuild b/media-radio/ibp/ibp-0.21-r1.ebuild index 0d4596ba3e9..a02af617b34 100644 --- a/media-radio/ibp/ibp-0.21-r1.ebuild +++ b/media-radio/ibp/ibp-0.21-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -16,7 +16,7 @@ IUSE="X" RDEPEND="sys-libs/ncurses:0 X? ( x11-libs/libX11 )" DEPEND="${RDEPEND} - X? ( x11-misc/imake )" + X? ( >=x11-misc/imake-1.0.8-r1 )" src_prepare() { # respect CFLAGS if built without USE=X @@ -31,7 +31,8 @@ src_prepare() { src_configure() { if use X ;then - xmkmf || die + CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \ + IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf || die fi }