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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1CCF31581A7 for ; Wed, 5 Jun 2024 18:56:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 609D7E2B22; Wed, 5 Jun 2024 18:56:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 410C0E2B22 for ; Wed, 5 Jun 2024 18:56:08 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80872340BE2 for ; Wed, 5 Jun 2024 18:56:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C2C11C80 for ; Wed, 5 Jun 2024 18:56:04 +0000 (UTC) From: "Lucio Sauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" Message-ID: <1717613737.e4a6ef7d9be33b9e618d0edd486f25b2632130f1.watermanpaint@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/kew/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/kew/kew-2.4.4-r1.ebuild X-VCS-Directories: media-sound/kew/ X-VCS-Committer: watermanpaint X-VCS-Committer-Name: Lucio Sauer X-VCS-Revision: e4a6ef7d9be33b9e618d0edd486f25b2632130f1 X-VCS-Branch: dev Date: Wed, 5 Jun 2024 18:56: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: 75e8a6bd-d649-49b3-ac62-2be8388c5ea9 X-Archives-Hash: 34e8096ddd05e49fd05fef6f6a43e798 commit: e4a6ef7d9be33b9e618d0edd486f25b2632130f1 Author: Lucio Sauer posteo net> AuthorDate: Wed Jun 5 18:21:31 2024 +0000 Commit: Lucio Sauer posteo net> CommitDate: Wed Jun 5 18:55:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4a6ef7d media-sound/kew: respect user {C,LD}FLAGS Signed-off-by: Lucio Sauer posteo.net> media-sound/kew/kew-2.4.4-r1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/media-sound/kew/kew-2.4.4-r1.ebuild b/media-sound/kew/kew-2.4.4-r1.ebuild index 421d9a8da..1b44e2374 100644 --- a/media-sound/kew/kew-2.4.4-r1.ebuild +++ b/media-sound/kew/kew-2.4.4-r1.ebuild @@ -24,6 +24,14 @@ sci-libs/fftw:3.0=" RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" +src_prepare() { + default + sed -e "/^CFLAGS += -Wall/s/$/ ${CFLAGS}/" \ + -e "/^LDFLAGS/s/$/ ${LDFLAGS}/" \ + -e "/^LIBS/s/$/ ${LDFLAGS}/" \ + -i Makefile || die +} + src_compile() { emake CC="$(tc-getCC)" }