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