diff options
author | Daichi Yamamoto <dev@dyama.net> | 2024-03-12 11:33:41 +0900 |
---|---|---|
committer | Daichi Yamamoto <dev@dyama.net> | 2024-03-12 11:33:41 +0900 |
commit | f62eb37ea4e388027cf6615eb9feb7d37815d220 (patch) | |
tree | 01d50d5c4b7dc82ff40605cf01aeabf0ee150f54 /x11-themes | |
parent | app-containers/pods: new package, add 2.1.0_pre20240215 (diff) | |
download | guru-f62eb37ea4e388027cf6615eb9feb7d37815d220.tar.gz guru-f62eb37ea4e388027cf6615eb9feb7d37815d220.tar.bz2 guru-f62eb37ea4e388027cf6615eb9feb7d37815d220.zip |
x11-themes/vimix-xcursors: fix theme installation
Signed-off-by: Daichi Yamamoto <dev@dyama.net>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/vimix-xcursors/vimix-xcursors-20200224-r3.ebuild (renamed from x11-themes/vimix-xcursors/vimix-xcursors-20200224-r2.ebuild) | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/x11-themes/vimix-xcursors/vimix-xcursors-20200224-r2.ebuild b/x11-themes/vimix-xcursors/vimix-xcursors-20200224-r3.ebuild index 662215fe7..2585bbeb2 100644 --- a/x11-themes/vimix-xcursors/vimix-xcursors-20200224-r2.ebuild +++ b/x11-themes/vimix-xcursors/vimix-xcursors-20200224-r3.ebuild @@ -8,6 +8,7 @@ MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}" DESCRIPTION="Theme inspired by Materia design and based on capitaine-cursors" HOMEPAGE="https://github.com/vinceliuice/Vimix-cursors" SRC_URI="https://github.com/vinceliuice/Vimix-cursors/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/Vimix-cursors-${MY_PV}" LICENSE="GPL-3" SLOT="0" @@ -15,12 +16,14 @@ KEYWORDS="~amd64 ~x86" RDEPEND="x11-libs/libXcursor" -S="${WORKDIR}/Vimix-cursors-${MY_PV}" - src_install() { - insinto /usr/share/cursors/xorg-x11/Vimix/cursors - doins -r dist/cursors/* + insinto /usr/share/icons/Vimix + doins -r dist/* + + insinto /usr/share/icons/Vimix-White + doins -r dist-white/* - insinto /usr/share/cursors/xorg-x11/Vimix-White/cursors - doins -r dist-white/cursors/* + # bugs #838451, #834277, #834001 + dosym ../../../../usr/share/icons/Vimix/cursors /usr/share/cursors/xorg-x11/Vimix + dosym ../../../../usr/share/icons/Vimix-White/cursors /usr/share/cursors/xorg-x11/Vimix-White } |