diff options
author | 2021-10-04 00:59:55 +0800 | |
---|---|---|
committer | 2021-10-14 10:40:43 +0100 | |
commit | 82094cbb97cdcef55847c065442624abced11dfa (patch) | |
tree | 335c4988710e5a68e23fe298f62a7e9eb9c0e39e /x11-themes/silver-xcursors/silver-xcursors-0.4-r4.ebuild | |
parent | app-misc/detox: install detoxrc (diff) | |
download | gentoo-82094cbb97cdcef55847c065442624abced11dfa.tar.gz gentoo-82094cbb97cdcef55847c065442624abced11dfa.tar.bz2 gentoo-82094cbb97cdcef55847c065442624abced11dfa.zip |
x11-themes/silver-xcursors: fix cursor installation
Closes: https://bugs.gentoo.org/794778
Signed-off-by: Yongxiang Liang <tanekliang@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22476
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-themes/silver-xcursors/silver-xcursors-0.4-r4.ebuild')
-rw-r--r-- | x11-themes/silver-xcursors/silver-xcursors-0.4-r4.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x11-themes/silver-xcursors/silver-xcursors-0.4-r4.ebuild b/x11-themes/silver-xcursors/silver-xcursors-0.4-r4.ebuild new file mode 100644 index 000000000000..59cce34c6e26 --- /dev/null +++ b/x11-themes/silver-xcursors/silver-xcursors-0.4-r4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="5533-Silver-XCursors-3D-${PV}" + +DESCRIPTION="A high quality set of animated mouse cursors" +HOMEPAGE="https://store.kde.org/p/999966/" +SRC_URI="mirror://gentoo/$MY_P.tar.bz2" +S="${WORKDIR}/${MY_P:5}" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86" + +RDEPEND="x11-libs/libXcursor" + +src_install() { + insinto /usr/share/cursors/xorg-x11/Silver + doins -r Silver/cursors/ + dodoc README "${FILESDIR}"/README.gentoo +} |