Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/chameleon-xcursors/
Date: Sat, 02 Dec 2017 13:03:41
Message-Id: 1512219790.68f5916b181dbf1fbe57b574662e60cc0e05d17c.soap@gentoo
1 commit: 68f5916b181dbf1fbe57b574662e60cc0e05d17c
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Thu Nov 30 11:14:10 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 2 13:03:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f5916b
7
8 x11-themes/chameleon-xcursors: Remove old, EAPI3
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11 Closes: https://github.com/gentoo/gentoo/pull/6354
12
13 .../chameleon-xcursors-0.5.ebuild | 54 ----------------------
14 1 file changed, 54 deletions(-)
15
16 diff --git a/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5.ebuild b/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5.ebuild
17 deleted file mode 100644
18 index 9ea2137e66c..00000000000
19 --- a/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5.ebuild
20 +++ /dev/null
21 @@ -1,54 +0,0 @@
22 -# Copyright 1999-2011 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="3"
26 -
27 -MY_PN="Chameleon"
28 -
29 -DESCRIPTION="Style neutral scalable cursor theme"
30 -HOMEPAGE="http://www.egregorion.net/2007/03/26/chameleon/"
31 -
32 -COLOURS="Anthracite DarkSkyBlue SkyBlue Pearl White"
33 -SRC_URI=""
34 -for COLOUR in ${COLOURS} ; do
35 - SRC_URI="${SRC_URI} http://www.egregorion.net/works/${MY_PN}-${COLOUR}-${PV}.tar.bz2"
36 -done
37 -
38 -LICENSE="GPL-2"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~x86"
41 -IUSE=""
42 -
43 -src_install() {
44 - dodir /usr/share/cursors/xorg-x11/
45 - for COLOUR in ${COLOURS}; do
46 - for SIZE in Large Regular Small; do
47 - local name=${MY_PN}-${COLOUR}-${SIZE}
48 - cp -r "${WORKDIR}"/${name}-${PV} \
49 - "${ED}"/usr/share/cursors/xorg-x11/${name}
50 - done
51 - done
52 -}
53 -
54 -pkg_postinst() {
55 - elog "To use one of these sets of cursors, edit or create the file ~/.Xdefaults"
56 - elog "and add the following line:"
57 - elog "Xcursor.theme: ${MY_PN}-Pearl-Regular"
58 - elog "(for example)"
59 - elog
60 - elog "You can change the size by adding a line like:"
61 - elog "Xcursor.size: 48"
62 - elog
63 - elog "Also, to globally use this set of mouse cursors edit the file:"
64 - elog " /usr/share/cursors/xorg-x11/default/index.theme"
65 - elog "and change the line:"
66 - elog " Inherits=[current setting]"
67 - elog "to"
68 - elog " Inherits=${MY_PN}-Pearl-Regular"
69 - elog
70 - elog "Note this will be overruled by a user's ~/.Xdefaults file."
71 - elog
72 - ewarn "If you experience flickering, try setting the following line in"
73 - ewarn "the Device section of your xorg.conf file:"
74 - ewarn " Option \"HWCursor\" \"false\""
75 -}