From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1646067-garchives=archives.gentoo.org@lists.gentoo.org> 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 8817615802E for <garchives@archives.gentoo.org>; Sun, 23 Jun 2024 19:49:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C54FFE29F5; Sun, 23 Jun 2024 19:49:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DAB1E29F4 for <gentoo-commits@lists.gentoo.org>; Sun, 23 Jun 2024 19:49:35 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87A93340815 for <gentoo-commits@lists.gentoo.org>; Sun, 23 Jun 2024 19:49:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E59D61B91 for <gentoo-commits@lists.gentoo.org>; Sun, 23 Jun 2024 19:49:32 +0000 (UTC) From: "Conrad Kostecki" <conikost@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1719171647.f2cd6dbe1d58fc112aad40afd52df90e7f74a6f2.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-freecell/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-freecell/vdr-freecell-0.0.2-r5.ebuild X-VCS-Directories: media-plugins/vdr-freecell/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: f2cd6dbe1d58fc112aad40afd52df90e7f74a6f2 X-VCS-Branch: master Date: Sun, 23 Jun 2024 19:49:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d836b7f6-d4c7-4758-a69c-eeb56b8594b8 X-Archives-Hash: 129065ac201867fe384388a622454c4f commit: f2cd6dbe1d58fc112aad40afd52df90e7f74a6f2 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net> AuthorDate: Sun Jun 23 19:20:07 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sun Jun 23 19:40:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2cd6dbe media-plugins/vdr-freecell: dont call g++ directly Closes: https://bugs.gentoo.org/934766 Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net> Closes: https://github.com/gentoo/gentoo/pull/37262 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> media-plugins/vdr-freecell/vdr-freecell-0.0.2-r5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r5.ebuild b/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r5.ebuild index 1e4e2cfe6dbc..e8fe1bd5d67b 100644 --- a/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r5.ebuild +++ b/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r5.ebuild @@ -25,6 +25,9 @@ src_prepare() { eapply "${FILESDIR}/${P}-gentoo.diff" eapply "${FILESDIR}/${P}_vdr-1.5.4-compile.diff" eapply "${FILESDIR}/${P}_compilefix.patch" + + # do not call g++ directly, Bug #934766 + sed -e 's|MAKEDEP = g++ -MM -MG|MAKEDEP = $(CXX) -MM -MG|' -i Makefile || die } src_install() {