diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-12-03 00:39:21 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-12-03 00:39:21 +0100 |
commit | d593b1be059485dfdb19fb0b9560c9292a7f1150 (patch) | |
tree | 5566ac4c3fb8af402211c0837287752979002e54 /x11-themes | |
parent | x11-themes/golden-xcursors: Fix formatting of README.gentoo. (diff) | |
download | gentoo-d593b1be059485dfdb19fb0b9560c9292a7f1150.tar.gz gentoo-d593b1be059485dfdb19fb0b9560c9292a7f1150.tar.bz2 gentoo-d593b1be059485dfdb19fb0b9560c9292a7f1150.zip |
x11-themes/silver-xcursors: Install README.gentoo by Francesco Turco (bug #637686).
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/silver-xcursors/Manifest | 2 | ||||
-rw-r--r-- | x11-themes/silver-xcursors/files/README.gentoo | 19 | ||||
-rw-r--r-- | x11-themes/silver-xcursors/silver-xcursors-0.4-r1.ebuild | 20 |
3 files changed, 40 insertions, 1 deletions
diff --git a/x11-themes/silver-xcursors/Manifest b/x11-themes/silver-xcursors/Manifest index 7a5de93a1d7c..dc47de851ea4 100644 --- a/x11-themes/silver-xcursors/Manifest +++ b/x11-themes/silver-xcursors/Manifest @@ -1 +1 @@ -DIST 5533-Silver-XCursors-3D-0.4.tar.bz2 756159 SHA256 7b67c0411143846bede4fad7709df85e908f7ffdf9d61f8d6046f5f0c7a00452 SHA512 b5b44a796d5d9341a0e92f8f4351b84eb3974d1908eb2fdb012c0490e4374404e3d33b35873f49c1f7ccd56bdced4fff14338319edabab7d11ddf31cb46fd245 WHIRLPOOL 542ccece6e899c3f79820ee733f977072ea6cbe8c19e936f4d4c943e4cea84d59a331f45a74c1f1ddf159a0aec0915b83d02955e2e489716f958af56b107ef05 +DIST 5533-Silver-XCursors-3D-0.4.tar.bz2 756159 BLAKE2B 7d90a44a022512e685b592e6285786e5b4898df723cba9deb52100e66c76865b5d2ed07968901656fc5c1ef565c54f281138e9e6f323e94bcb6c1b7884c792c5 SHA512 b5b44a796d5d9341a0e92f8f4351b84eb3974d1908eb2fdb012c0490e4374404e3d33b35873f49c1f7ccd56bdced4fff14338319edabab7d11ddf31cb46fd245 diff --git a/x11-themes/silver-xcursors/files/README.gentoo b/x11-themes/silver-xcursors/files/README.gentoo new file mode 100644 index 000000000000..14d19d0de0f1 --- /dev/null +++ b/x11-themes/silver-xcursors/files/README.gentoo @@ -0,0 +1,19 @@ +To use this set of cursors, edit or create the file ~/.Xdefaults and add the +following line: +Xcursor.theme: Silver +" +You can change the size by adding a line like: +Xcursor.size: 48 +" +Also, to globally use this set of mouse cursors edit the file: + /usr/share/cursors/xorg-x11/default/index.theme +and change the line: + Inherits=[current setting] +to + Inherits=Silver + +Note this will be overruled by a user's ~/.Xdefaults file. + +If you experience flickering, try setting the following line in the Device +section of your xorg.conf file: + Option \"HWCursor\" \"false\" diff --git a/x11-themes/silver-xcursors/silver-xcursors-0.4-r1.ebuild b/x11-themes/silver-xcursors/silver-xcursors-0.4-r1.ebuild new file mode 100644 index 000000000000..313d100f7f72 --- /dev/null +++ b/x11-themes/silver-xcursors/silver-xcursors-0.4-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +EAPI=6 + +MY_P="5533-Silver-XCursors-3D-${PV}" +DESCRIPTION="A high quality set of Xfree 4.3.0 animated mouse cursors" +HOMEPAGE="http://www.kde-look.org/content/show.php?content=5533" +SRC_URI="http://www.kde-look.org/CONTENT/content-files/$MY_P.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd" + +S=${WORKDIR}/${MY_P:5} + +src_install() { + dodir /usr/share/cursors/xorg-x11/Silver/cursors/ + cp -R Silver/cursors "${D}"/usr/share/cursors/xorg-x11/Silver/ || die + dodoc README "${FILESDIR}"/README.gentoo +} |