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 4AE5F138359 for ; Sun, 30 Aug 2020 04:45:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51360E088D; Sun, 30 Aug 2020 04:45:29 +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 330E0E088D for ; Sun, 30 Aug 2020 04:45:29 +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 C07AC340D24 for ; Sun, 30 Aug 2020 04:45:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 267AB2FD for ; Sun, 30 Aug 2020 04:45:26 +0000 (UTC) From: "Sam James" 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" Message-ID: <1598762710.4dd933fe80586639c7612f845a184c64a5a03936.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ircstats/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/ircstats/ircstats-1.2.ebuild X-VCS-Directories: net-irc/ircstats/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4dd933fe80586639c7612f845a184c64a5a03936 X-VCS-Branch: master Date: Sun, 30 Aug 2020 04:45:26 +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: 72f4ace8-8b26-414b-8c71-0196d9f33c1a X-Archives-Hash: 335225747640c7b6b834f1d1926075c9 commit: 4dd933fe80586639c7612f845a184c64a5a03936 Author: Sam James gentoo org> AuthorDate: Sun Aug 30 04:45:10 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 30 04:45:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dd933fe net-irc/ircstats: respect CFLAGS, CC Just needed to drop a misplaced 'default'! Closes: https://bugs.gentoo.org/727776 Closes: https://bugs.gentoo.org/724972 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> net-irc/ircstats/ircstats-1.2.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/net-irc/ircstats/ircstats-1.2.ebuild b/net-irc/ircstats/ircstats-1.2.ebuild index d5034507237..c893f91fb28 100644 --- a/net-irc/ircstats/ircstats-1.2.ebuild +++ b/net-irc/ircstats/ircstats-1.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit eutils toolchain-funcs +inherit toolchain-funcs MY_P="IRCStats-${PV}" @@ -14,10 +14,9 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -S="${WORKDIR}"/${MY_P} +S="${WORKDIR}/${MY_P}" src_compile() { - default emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } @@ -29,6 +28,6 @@ src_install() { } pkg_postinst() { - elog "The IRCStats files have been installed in /usr/share/ircstats" - elog "You can find an example ircstats.cfg in /usr/share/doc/${PF}" + elog "The IRCStats files have been installed in ${EROOT}/usr/share/ircstats" + elog "You can find an example ircstats.cfg in ${EROOT}/usr/share/doc/${PF}" }