diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-09-21 14:05:24 +0200 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-09-21 14:05:58 +0200 |
commit | fe1e3e186d72f64d5d6dbaeb37400b07448f0826 (patch) | |
tree | b80eb70dd2100f7879a02fef70525d2b6666dc3e /x11-themes | |
parent | x11-themes/vanilla-dmz-xcursors: drop 0.4.5-r1 (diff) | |
download | gentoo-fe1e3e186d72f64d5d6dbaeb37400b07448f0826.tar.gz gentoo-fe1e3e186d72f64d5d6dbaeb37400b07448f0826.tar.bz2 gentoo-fe1e3e186d72f64d5d6dbaeb37400b07448f0826.zip |
x11-themes/chameleon-xcursors: drop 0.5-r2
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild b/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild deleted file mode 100644 index 441b3f9c7b87..000000000000 --- a/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg - -COLOURS=( "Anthracite" "DarkSkyBlue" "SkyBlue" "Pearl" "White" ) -MY_PN="Chameleon" - -DESCRIPTION="Style neutral scalable cursor theme" -HOMEPAGE="https://store.kde.org/p/999948/" -for COLOUR in "${COLOURS[@]}"; do - SRC_URI="${SRC_URI} mirror://gentoo/${MY_PN}-${COLOUR}-${PV}.tar.bz2" -done -S="${WORKDIR}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" - -RDEPEND="x11-libs/libXcursor" - -src_install() { - dodir /usr/share/cursors/xorg-x11/ - - for COLOUR in "${COLOURS[@]}"; do - for SIZE in Large Regular Small; do - local name="${MY_PN}-${COLOUR}-${SIZE}" - rm "${WORKDIR}"/${name}-${PV}/{COPYRIGHT,LICENSE} || die - insinto /usr/share/cursors/xorg-x11/${name} - doins -r "${WORKDIR}"/${name}-${PV} - done - done -} |