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/wayv: ChangeLog wayv-0.3-r2.ebuild
Date: Mon, 08 Feb 2010 18:59:12
Message-Id: E1NeYpA-0002nb-Ft@stork.gentoo.org
1 jer 10/02/08 18:59:08
2
3 Modified: ChangeLog
4 Added: wayv-0.3-r2.ebuild
5 Log:
6 Respect CC, CFLAGS (bug #241546).
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.16 x11-misc/wayv/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/wayv/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/wayv/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/wayv/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/wayv/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 17 Jun 2008 12:31:06 -0000 1.15
23 +++ ChangeLog 8 Feb 2010 18:59:07 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/wayv
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/ChangeLog,v 1.15 2008/06/17 12:31:06 nelchael Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/ChangeLog,v 1.16 2010/02/08 18:59:07 jer Exp $
30 +
31 +*wayv-0.3-r2 (08 Feb 2010)
32 +
33 + 08 Feb 2010; Jeroen Roovers <jer@g.o> +wayv-0.3-r2.ebuild:
34 + Respect CC, CFLAGS (bug #241546).
35
36 17 Jun 2008; Krzysiek Pawlik <nelchael@g.o> wayv-0.3-r1.ebuild:
37 Add missing x11-proto/inputproto to DEPEND, bug #227751.
38
39
40
41 1.1 x11-misc/wayv/wayv-0.3-r2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wayv-0.3-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild,v 1.1 2010/02/08 18:59:07 jer Exp $
51
52 EAPI="2"
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="Wayv is hand-writing/gesturing recognition software for X"
57 HOMEPAGE="http://www.stressbunny.com/wayv"
58 SRC_URI="http://www.stressbunny.com/gimme/wayv/${P}.tar.gz"
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~ppc ~x86"
62 IUSE=""
63
64 RDEPEND="x11-libs/libX11
65 x11-libs/libXtst"
66 DEPEND="${RDEPEND}
67 x11-proto/inputproto
68 x11-proto/xproto"
69
70 src_prepare() {
71 sed -i src/Makefile* \
72 -e 's| = -Wall -O2| += |g' || die "sed failed"
73 }
74
75 src_configure() {
76 tc-export CC
77 econf || die "econf failed"
78 }
79
80 src_install() {
81 einstall || die
82 cd doc
83 einstall || die
84 dodoc HOWTO*
85 }