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 F0ED9139085 for ; Mon, 16 Jan 2017 15:58:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 547AB234071; Mon, 16 Jan 2017 15:58:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 32368234071 for ; Mon, 16 Jan 2017 15:58:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E76C34102B for ; Mon, 16 Jan 2017 15:58:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9C6324EA for ; Mon, 16 Jan 2017 15:58:34 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1484582253.626b1b4143cbde745a5ea4f8a9e17eee80a7c2f6.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpop3/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild X-VCS-Directories: x11-plugins/wmpop3/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 626b1b4143cbde745a5ea4f8a9e17eee80a7c2f6 X-VCS-Branch: master Date: Mon, 16 Jan 2017 15:58:34 +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: a990d4f9-36e0-4260-a2e8-8e6e76f33f41 X-Archives-Hash: 497381635f4e35723736d7d09838a14a commit: 626b1b4143cbde745a5ea4f8a9e17eee80a7c2f6 Author: Bernard Cafarelli gentoo org> AuthorDate: Mon Jan 16 15:56:50 2017 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Mon Jan 16 15:57:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626b1b41 x11-plugins/wmpop3: respect CC, bug #605910 Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild b/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild index 66a7a0e..18b2d8d 100644 --- a/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild +++ b/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 +inherit eutils toolchain-funcs DESCRIPTION="dockapp for checking pop3 accounts" HOMEPAGE="http://www.cs.mun.ca/~scotth/" @@ -20,7 +21,8 @@ RDEPEND="${DEPEND}" PATCHES=( ${FILESDIR}/${P}-list.patch ) src_prepare() { - sed -e "s:-O2:${CFLAGS}:" \ + sed -e "s:cc :$(tc-getCC) :" \ + -e "s:-O2:${CFLAGS}:" \ -e "s:-o wmpop3:${LDFLAGS} -o wmpop3:" \ -i ${PN}/Makefile || die