diff options
author | Pacho Ramos <pacho@gentoo.org> | 2024-07-19 20:01:39 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2024-07-19 20:04:41 +0200 |
commit | c733f83b3e36a571202f3ff3021cd67e9120e1c6 (patch) | |
tree | 53607bc92873e572c6f2e038d2277a629d440bc7 /x11-themes | |
parent | x11-themes/silver-xcursors: Use updated location for cursor themes (diff) | |
download | gentoo-c733f83b3e36a571202f3ff3021cd67e9120e1c6.tar.gz gentoo-c733f83b3e36a571202f3ff3021cd67e9120e1c6.tar.bz2 gentoo-c733f83b3e36a571202f3ff3021cd67e9120e1c6.zip |
x11-themes/vanilla-dmz-aa-xcursors: Use updated location for cursor themes
Closes: https://bugs.gentoo.org/934171
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild b/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild new file mode 100644 index 000000000000..d5ca58285808 --- /dev/null +++ b/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Style neutral scalable cursor theme (black version)" +HOMEPAGE="https://jimmac.eu/" +SRC_URI="mirror://debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${PV}.tar.xz" +S="${WORKDIR}/dmz-cursor-theme-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +DEPEND="x11-apps/xcursorgen" +RDEPEND="x11-libs/libXcursor" + +src_compile() { + pushd "${S}/DMZ-Black/pngs" + ./make.sh || die + popd +} + +src_install() { + insinto /usr/share/icons/DMZ-Black + doins DMZ-Black/index.theme + + insinto /usr/share/icons/DMZ-Black/cursors + doins -r DMZ-Black/xcursors/. +} |