From 19e11cbc52ba3e7ab832ee4a34024250f5e8ceb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Negrier=20Duarte?= Date: Tue, 17 Sep 2024 12:32:25 +0100 Subject: [PATCH] gui-apps/satty: fix dobin location MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://bugs.gentoo.org/939187 Signed-off-by: Gonçalo Negrier Duarte --- gui-apps/satty/satty-0.14.0.ebuild | 8 +------- gui-apps/satty/satty-9999.ebuild | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/gui-apps/satty/satty-0.14.0.ebuild b/gui-apps/satty/satty-0.14.0.ebuild index b5fbbd6017..76135c5be2 100644 --- a/gui-apps/satty/satty-0.14.0.ebuild +++ b/gui-apps/satty/satty-0.14.0.ebuild @@ -261,13 +261,7 @@ src_unpack() { src_install() { dodoc README.md - if use debug ; then - cd target/debug || die - else - cd target/release || die - fi - - dobin satty + dobin "$(cargo_target_dir)"/satty #Just add the icon and desktop file doicon "${S}/assets/satty.svg" domenu "${S}/satty.desktop" diff --git a/gui-apps/satty/satty-9999.ebuild b/gui-apps/satty/satty-9999.ebuild index 1c3a8a837e..262d43dfbe 100644 --- a/gui-apps/satty/satty-9999.ebuild +++ b/gui-apps/satty/satty-9999.ebuild @@ -52,13 +52,7 @@ src_unpack() { src_install() { dodoc README.md - if use debug ; then - cd target/debug || die - else - cd target/release || die - fi - - dobin satty + dobin "$(cargo_target_dir)"/satty #Just add the icon and desktop file doicon "${S}/assets/satty.svg" domenu "${S}/satty.desktop"