Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/haematite-xcursors: metadata.xml ChangeLog haematite-xcursors-1.0.ebuild
Date: Tue, 24 Mar 2009 00:50:29
Message-Id: E1LluqZ-0003M8-4p@stork.gentoo.org
1 yngwin 09/03/24 00:50:27
2
3 Added: metadata.xml ChangeLog
4 haematite-xcursors-1.0.ebuild
5 Log:
6 New package, initial commit
7 (Portage version: 2.2_rc26/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-themes/haematite-xcursors/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/haematite-xcursors/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/haematite-xcursors/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>desktop-misc</herd>
21 <maintainer>
22 <email>desktop-misc@g.o</email>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 x11-themes/haematite-xcursors/ChangeLog
29
30 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/haematite-xcursors/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/haematite-xcursors/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for x11-themes/haematite-xcursors
36 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/x11-themes/haematite-xcursors/ChangeLog,v 1.1 2009/03/24 00:50:27 yngwin Exp $
38
39 *haematite-xcursors-1.0 (24 Mar 2009)
40
41 24 Mar 2009; Ben de Groot <yngwin@g.o> +metadata.xml,
42 +haematite-xcursors-1.0.ebuild:
43 Initial commit. Ebuild by me, based on existing xcursors ebuilds.
44
45
46
47
48 1.1 x11-themes/haematite-xcursors/haematite-xcursors-1.0.ebuild
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/haematite-xcursors/haematite-xcursors-1.0.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/haematite-xcursors/haematite-xcursors-1.0.ebuild?rev=1.1&content-type=text/plain
52
53 Index: haematite-xcursors-1.0.ebuild
54 ===================================================================
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/x11-themes/haematite-xcursors/haematite-xcursors-1.0.ebuild,v 1.1 2009/03/24 00:50:27 yngwin Exp $
58
59 MY_PN=${PN/-xcursors/}
60 DESCRIPTION="A simple crispy dark-grey xcursor theme"
61 HOMEPAGE="http://www.kde-look.org/content/show.php/Haematite?content=19594"
62 SRC_URI="http://www.kde-look.org/CONTENT/content-files/19594-${MY_PN}-${PV}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND=""
70 DEPEND="${RDEPEND}"
71
72 S="${WORKDIR}/${MY_PN}-${PV}"
73
74 src_install() {
75 insinto /usr/share/cursors/xorg-x11/${MY_PN}
76 doins -r ${MY_PN}/cursors || die "doins failed"
77 }
78
79 pkg_postinst() {
80 elog "To use this set of cursors, edit or create the file ~/.Xdefaults"
81 elog "and add the following line:"
82 elog "Xcursor.theme: ${MY_PN}"
83 elog
84 elog "You can change the size by adding a line like:"
85 elog "Xcursor.size: 48"
86 elog
87 elog "Also, to globally use this set of mouse cursors edit the file:"
88 elog " /usr/share/cursors/xorg-x11/default/index.theme"
89 elog "and change the line:"
90 elog " Inherits=[current setting]"
91 elog "to"
92 elog " Inherits=${MY_PN}"
93 elog
94 elog "Note this will be overruled by a user's ~/.Xdefaults file."
95 elog
96 ewarn "If you experience flickering, try setting the following line in"
97 ewarn "the Device section of your xorg.conf file:"
98 ewarn " Option \"HWCursor\" \"false\""
99 }