Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/fxred: ChangeLog fxred-0.9-r1.ebuild
Date: Sun, 07 Feb 2010 16:30:40
Message-Id: E1NeA1u-0006a4-0w@stork.gentoo.org
1 jer 10/02/07 16:30:38
2
3 Modified: ChangeLog
4 Added: fxred-0.9-r1.ebuild
5 Log:
6 Get rid of src_compile() with unneeded custom ./configure. Respect CFLAGS (bug #241542).
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.15 x11-misc/fxred/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fxred/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fxred/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fxred/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/fxred/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 17 Jun 2008 12:39:45 -0000 1.14
23 +++ ChangeLog 7 Feb 2010 16:30:37 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/fxred
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/fxred/ChangeLog,v 1.14 2008/06/17 12:39:45 nelchael Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fxred/ChangeLog,v 1.15 2010/02/07 16:30:37 jer Exp $
30 +
31 +*fxred-0.9-r1 (07 Feb 2010)
32 +
33 + 07 Feb 2010; Jeroen Roovers <jer@g.o> +fxred-0.9-r1.ebuild:
34 + Get rid of src_compile() with unneeded custom ./configure. Respect CFLAGS
35 + (bug #241542).
36
37 17 Jun 2008; Krzysiek Pawlik <nelchael@g.o> fxred-0.9.ebuild:
38 Add missing x11-proto/inputproto to DEPEND, bug #227735.
39
40
41
42 1.1 x11-misc/fxred/fxred-0.9-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fxred/fxred-0.9-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fxred/fxred-0.9-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fxred-0.9-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/fxred/fxred-0.9-r1.ebuild,v 1.1 2010/02/07 16:30:37 jer Exp $
52
53 EAPI="2"
54
55 DESCRIPTION="a handler for the red scroll button of the Logitech TrackMan Marble
56 FX, a trackball."
57 HOMEPAGE="http://www.larskrueger.homestead.com/files/index.html#X11"
58 SRC_URI="http://www.larskrueger.homestead.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~ppc ~x86"
63 IUSE=""
64
65 RDEPEND="x11-libs/libX11
66 x11-libs/libXtst"
67 DEPEND="${RDEPEND}
68 x11-proto/xextproto
69 x11-proto/inputproto
70 x11-proto/xproto
71 x11-libs/libXt"
72
73 src_prepare() {
74 sed -i configure -e '/^CFLAGS="-O2 -Wall"/d' || die "sed failed"
75 }
76
77 src_install () {
78 make DESTDIR="${D}" install || die
79 dodoc AUTHORS ChangeLog README TODO.txt
80 dohtml fxred/docs/en/*.html
81 insinto /etc
82 doins fxredrc
83 }