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 3C221159C9B for ; Sun, 4 Aug 2024 07:12:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89A9BE2ACF; Sun, 4 Aug 2024 07:12:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 68F5EE2ACF for ; Sun, 4 Aug 2024 07:12:00 +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 A3DE3342FAE for ; Sun, 4 Aug 2024 07:11:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 175051E5D for ; Sun, 4 Aug 2024 07:11:58 +0000 (UTC) From: "Daichi Yamamoto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daichi Yamamoto" Message-ID: <1722755487.47930c50ee78ed8c98e907eb76bf399a16988207.dev@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/river/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-wm/river/river-0.3.5.ebuild X-VCS-Directories: gui-wm/river/ X-VCS-Committer: dev X-VCS-Committer-Name: Daichi Yamamoto X-VCS-Revision: 47930c50ee78ed8c98e907eb76bf399a16988207 X-VCS-Branch: dev Date: Sun, 4 Aug 2024 07:11:58 +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: bae830eb-db04-43db-9812-4da7fd75706a X-Archives-Hash: f5c0cd201ab1e750e41347bc6ec130e5 commit: 47930c50ee78ed8c98e907eb76bf399a16988207 Author: Daichi Yamamoto dyama net> AuthorDate: Sun Aug 4 07:11:27 2024 +0000 Commit: Daichi Yamamoto dyama net> CommitDate: Sun Aug 4 07:11:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47930c50 gui-wm/river: install example/ Signed-off-by: Daichi Yamamoto dyama.net> gui-wm/river/river-0.3.5.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/gui-wm/river/river-0.3.5.ebuild b/gui-wm/river/river-0.3.5.ebuild index 8226a42ae..9404ae635 100644 --- a/gui-wm/river/river-0.3.5.ebuild +++ b/gui-wm/river/river-0.3.5.ebuild @@ -49,11 +49,11 @@ ezig_build() { src_unpack() { default - edo mkdir "${S}/deps" - edo mv zig-pixman "${S}/deps" - edo mv zig-wayland "${S}/deps" - edo mv zig-wlroots "${S}/deps" - edo mv zig-xkbcommon "${S}/deps" + mkdir "${S}/deps" || die + mv zig-pixman "${S}/deps" || die + mv zig-wayland "${S}/deps" || die + mv zig-wlroots "${S}/deps" || die + mv zig-xkbcommon "${S}/deps" || die } src_configure() { @@ -82,6 +82,10 @@ src_install() { ezig_build install --prefix "${ED}/usr" dodoc README.md + insinto /usr/share/wayland-sessions doins contrib/river.desktop + + insinto /usr/share/${PN} + doins -r example }