From 5db1859552e2881dbc3fd9c8d35e7d3392458767 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Mon, 15 Dec 2025 14:42:31 -0500 Subject: [PATCH] sys-boot/grub-themes-gentoo: install files in both /boot and /usr/share This will allow the themes to be installed using grub-install when the --boot-directory and --themes options are passed. Signed-off-by: Mike Gilbert --- ...ntoo-1.0-r1.ebuild => grub-themes-gentoo-1.0-r2.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) rename sys-boot/grub-themes-gentoo/{grub-themes-gentoo-1.0-r1.ebuild => grub-themes-gentoo-1.0-r2.ebuild} (79%) diff --git a/sys-boot/grub-themes-gentoo/grub-themes-gentoo-1.0-r1.ebuild b/sys-boot/grub-themes-gentoo/grub-themes-gentoo-1.0-r2.ebuild similarity index 79% rename from sys-boot/grub-themes-gentoo/grub-themes-gentoo-1.0-r1.ebuild rename to sys-boot/grub-themes-gentoo/grub-themes-gentoo-1.0-r2.ebuild index be9c5b4c92b50..231a9143b31bf 100644 --- a/sys-boot/grub-themes-gentoo/grub-themes-gentoo-1.0-r1.ebuild +++ b/sys-boot/grub-themes-gentoo/grub-themes-gentoo-1.0-r2.ebuild @@ -19,6 +19,9 @@ KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" PDEPEND="sys-boot/grub" src_install() { - insinto /boot/grub/themes - doins -r gentoo_frosted gentoo_glass gentoo_minimalist + local d + for d in /boot /usr/share; do + insinto "${d}"/grub/themes + doins -r gentoo_frosted gentoo_glass gentoo_minimalist + done }