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 3C1A21382C5 for ; Fri, 8 Jan 2021 21:14:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5977DE0863; Fri, 8 Jan 2021 21:14:07 +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 4142DE0863 for ; Fri, 8 Jan 2021 21:14:07 +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 BE41533FAD1 for ; Fri, 8 Jan 2021 21:14:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29BC74C for ; Fri, 8 Jan 2021 21:14:04 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1610140406.274915f4d3b6e729b0b6dc57a589eed5ca0d5be1.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/iwgtk/iwgtk-0.4.ebuild X-VCS-Directories: net-wireless/iwgtk/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 274915f4d3b6e729b0b6dc57a589eed5ca0d5be1 X-VCS-Branch: master Date: Fri, 8 Jan 2021 21:14:04 +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: a86ce432-f286-4128-81c0-7010be2d62df X-Archives-Hash: 409889cac9aa84c1a8893342b2255e8d commit: 274915f4d3b6e729b0b6dc57a589eed5ca0d5be1 Author: Ben Kohler gentoo org> AuthorDate: Fri Jan 8 21:12:48 2021 +0000 Commit: Ben Kohler gentoo org> CommitDate: Fri Jan 8 21:13:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274915f4 net-wireless/iwgtk: QA fixes Thanks Polynomial-C and ago for reporting Closes: https://bugs.gentoo.org/764503 Closes: https://github.com/gentoo/gentoo/pull/18996 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Ben Kohler gentoo.org> net-wireless/iwgtk/iwgtk-0.4.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/net-wireless/iwgtk/iwgtk-0.4.ebuild b/net-wireless/iwgtk/iwgtk-0.4.ebuild index 6283df49fc2..eb3eb819b7a 100644 --- a/net-wireless/iwgtk/iwgtk-0.4.ebuild +++ b/net-wireless/iwgtk/iwgtk-0.4.ebuild @@ -29,10 +29,15 @@ RDEPEND=" src_prepare() { default - sed -i -e 's/^CC=/CC?=/' -e 's/^CFLAGS=/CFLAGS:=/' -e 's/-O3$/${CFLAGS}/' Makefile + sed -i \ + -e 's/^CC=/CC?=/' \ + -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \ + -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \ + -e 's/-O3$/${CFLAGS}/' \ + Makefile || die } src_install() { emake prefix="${ED}/usr" install - gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" + gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die }