Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/Tk-CursorControl: ChangeLog Tk-CursorControl-0.4.ebuild
Date: Mon, 01 Jun 2009 18:26:06
Message-Id: E1MBCCy-0002Ig-Mv@stork.gentoo.org
1 tove 09/06/01 18:26:04
2
3 Modified: ChangeLog Tk-CursorControl-0.4.ebuild
4 Log:
5 Fix bug #272083
6 (Portage version: 2.2_rc33/cvs/Linux i686)
7
8 Revision Changes Path
9 1.11 dev-perl/Tk-CursorControl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Tk-CursorControl/ChangeLog?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Tk-CursorControl/ChangeLog?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Tk-CursorControl/ChangeLog?r1=1.10&r2=1.11
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-perl/Tk-CursorControl/ChangeLog,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- ChangeLog 19 Jan 2007 17:04:14 -0000 1.10
22 +++ ChangeLog 1 Jun 2009 18:26:04 -0000 1.11
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-perl/Tk-CursorControl
25 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tk-CursorControl/ChangeLog,v 1.10 2007/01/19 17:04:14 mcummings Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tk-CursorControl/ChangeLog,v 1.11 2009/06/01 18:26:04 tove Exp $
29 +
30 + 01 Jun 2009; Torsten Veller <tove@g.o> +files/0.4-demo.patch,
31 + Tk-CursorControl-0.4.ebuild:
32 + Fix collision by renaming cursor.pl to cursor_cursor.pl(#272083)
33
34 19 Jan 2007; Michael Cummings <mcummings@g.o>
35 Tk-CursorControl-0.4.ebuild:
36
37
38
39 1.11 dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild?rev=1.11&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild?rev=1.11&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild?r1=1.10&r2=1.11
44
45 Index: Tk-CursorControl-0.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild,v
48 retrieving revision 1.10
49 retrieving revision 1.11
50 diff -u -r1.10 -r1.11
51 --- Tk-CursorControl-0.4.ebuild 19 Jan 2007 17:04:14 -0000 1.10
52 +++ Tk-CursorControl-0.4.ebuild 1 Jun 2009 18:26:04 -0000 1.11
53 @@ -1,19 +1,25 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild,v 1.10 2007/01/19 17:04:14 mcummings Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tk-CursorControl/Tk-CursorControl-0.4.ebuild,v 1.11 2009/06/01 18:26:04 tove Exp $
59
60 -inherit perl-module
61 +MODULE_AUTHOR=DUNNIGANJ
62 +inherit eutils perl-module
63
64 DESCRIPTION="Manipulate the mouse cursor programmatically"
65 -HOMEPAGE="http://search.cpan.org/~dunniganj/"
66 -SRC_URI="mirror://cpan/authors/id/D/DU/DUNNIGANJ/${P}.tar.gz"
67
68 -LICENSE="|| ( Artistic GPL-2 )"
69 SLOT="0"
70 KEYWORDS="amd64 ia64 sparc x86"
71 IUSE=""
72
73 #SRC_TEST="do"
74
75 -DEPEND="dev-perl/perl-tk
76 +RDEPEND="dev-perl/perl-tk
77 dev-lang/perl"
78 +DEPEND="${RDEPEND}"
79 +
80 +PATCHES=( "${FILESDIR}/${PV}-demo.patch" )
81 +
82 +src_prepare() {
83 + perl-module_src_prepare
84 + edos2unix "{S}"/{CursorControl.pm,demos/cursor.pl} || die
85 +}