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 ADCEE158020 for ; Tue, 29 Nov 2022 16:53:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC8DBE07D3; Tue, 29 Nov 2022 16:53:39 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C3E09E07D3 for ; Tue, 29 Nov 2022 16:53:39 +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 C89C4341250 for ; Tue, 29 Nov 2022 16:53:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16B0D763 for ; Tue, 29 Nov 2022 16:53:36 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1669740756.6629dedea02ca9a78e053a435f11af25904fa506.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gssdp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gssdp/gssdp-1.6.2.ebuild X-VCS-Directories: net-libs/gssdp/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6629dedea02ca9a78e053a435f11af25904fa506 X-VCS-Branch: master Date: Tue, 29 Nov 2022 16:53:36 +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: e76bda32-5499-4c2a-b45f-075d75481c30 X-Archives-Hash: 533a1003ab4c5bc109981149ca559752 commit: 6629dedea02ca9a78e053a435f11af25904fa506 Author: Matt Turner gentoo org> AuthorDate: Tue Nov 29 16:49:24 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Nov 29 16:52:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6629dede net-libs/gssdp: Fix removing gssdp-device-sniffer Closes: https://bugs.gentoo.org/882467 Signed-off-by: Matt Turner gentoo.org> net-libs/gssdp/gssdp-1.6.2.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net-libs/gssdp/gssdp-1.6.2.ebuild b/net-libs/gssdp/gssdp-1.6.2.ebuild index 2a6c944d5900..0a3614d9bfdf 100644 --- a/net-libs/gssdp/gssdp-1.6.2.ebuild +++ b/net-libs/gssdp/gssdp-1.6.2.ebuild @@ -65,5 +65,8 @@ multilib_src_install_all() { mkdir "${ED}"/usr/share/gtk-doc || die mv "${ED}"/usr/share/{doc,gtk-doc}/gssdp-1.6 || die fi - rm "${ED}"/usr/bin/gssdp-device-sniffer || die # because of file collision with slot 0 + + if use gtk; then + rm "${ED}"/usr/bin/gssdp-device-sniffer || die # because of file collision with slot 0 + fi }