diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-02-02 13:05:30 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-02-02 13:42:17 -0500 |
commit | d8c83bd6b6279c72e758a89378732d84d6df11b5 (patch) | |
tree | 06750a70f5988eddec7abb2bedcdbb12b2b39dbe /x11-terms | |
parent | net-misc/gallery-dl: Stabilize 1.24.2 ppc, #892467 (diff) | |
download | gentoo-d8c83bd6b6279c72e758a89378732d84d6df11b5.tar.gz gentoo-d8c83bd6b6279c72e758a89378732d84d6df11b5.tar.bz2 gentoo-d8c83bd6b6279c72e758a89378732d84d6df11b5.zip |
x11-terms/kitty: use mv rather than doins for src_install
There's really no need to do hacks just to use the typical doins way
(alternativly could look at build && linux-package --prefix="${ED}",
but with this custom build system it's bit of a hassle).
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/kitty/kitty-0.27.0.ebuild | 7 | ||||
-rw-r--r-- | x11-terms/kitty/kitty-9999.ebuild | 7 |
2 files changed, 2 insertions, 12 deletions
diff --git a/x11-terms/kitty/kitty-0.27.0.ebuild b/x11-terms/kitty/kitty-0.27.0.ebuild index 9d20478938f2..cb94d9d457a5 100644 --- a/x11-terms/kitty/kitty-0.27.0.ebuild +++ b/x11-terms/kitty/kitty-0.27.0.ebuild @@ -140,12 +140,7 @@ src_test() { } src_install() { - insinto /usr - doins -r linux-package/. - - local execbit - mapfile -t execbit < <(find linux-package -type f -perm /+x -printf '/usr/%P\n' || die) - fperms +x "${execbit[@]}" + edo mv linux-package "${ED}"/usr } pkg_postinst() { diff --git a/x11-terms/kitty/kitty-9999.ebuild b/x11-terms/kitty/kitty-9999.ebuild index 9d20478938f2..cb94d9d457a5 100644 --- a/x11-terms/kitty/kitty-9999.ebuild +++ b/x11-terms/kitty/kitty-9999.ebuild @@ -140,12 +140,7 @@ src_test() { } src_install() { - insinto /usr - doins -r linux-package/. - - local execbit - mapfile -t execbit < <(find linux-package -type f -perm /+x -printf '/usr/%P\n' || die) - fperms +x "${execbit[@]}" + edo mv linux-package "${ED}"/usr } pkg_postinst() { |