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 46E15158094 for ; Sun, 10 Jul 2022 14:22:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EEFDE0CAB; Sun, 10 Jul 2022 14:22:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 521FBE0CAB for ; Sun, 10 Jul 2022 14:22:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 78856340FC6 for ; Sun, 10 Jul 2022 14:22:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E273F500 for ; Sun, 10 Jul 2022 14:22:53 +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: <1657462071.22062140738c4b1b3f8ae534777f097d37b49ddc.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmix/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmix/wmix-3.5.ebuild X-VCS-Directories: x11-plugins/wmix/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 22062140738c4b1b3f8ae534777f097d37b49ddc X-VCS-Branch: master Date: Sun, 10 Jul 2022 14:22:53 +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: 032ac2ce-e172-478a-a6b3-bd4e3c86bffe X-Archives-Hash: 98d06ee010da42d0546d771cad891192 commit: 22062140738c4b1b3f8ae534777f097d37b49ddc Author: Bernard Cafarelli gentoo org> AuthorDate: Sun Jul 10 14:07:51 2022 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sun Jul 10 14:07:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22062140 x11-plugins/wmix: fix desktop file Closes: https://bugs.gentoo.org/743040 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmix/wmix-3.5.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/x11-plugins/wmix/wmix-3.5.ebuild b/x11-plugins/wmix/wmix-3.5.ebuild index c0b6a38e180f..c2eab904e70b 100644 --- a/x11-plugins/wmix/wmix-3.5.ebuild +++ b/x11-plugins/wmix/wmix-3.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,3 +19,8 @@ RDEPEND="media-libs/alsa-lib x11-libs/libXrandr" DEPEND="${RDEPEND} x11-base/xorg-proto" + +src_prepare() { + default + sed -e "s/Audio;/\0AudioVideo;/" -i wmix.desktop || die +}