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 wayv-0.3-r1.ebuild
Date: Wed, 03 Sep 2014 08:34:43
Message-Id: 20140903083439.6A791496B@oystercatcher.gentoo.org
1 jer 14/09/03 08:34:39
2
3 Modified: ChangeLog wayv-0.3-r2.ebuild
4 Removed: wayv-0.3-r1.ebuild
5 Log:
6 einstall -> EAPI 5 default (bug #521672).
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.19 x11-misc/wayv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wayv/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wayv/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wayv/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/wayv/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 18 Nov 2012 18:54:08 -0000 1.18
24 +++ ChangeLog 3 Sep 2014 08:34:39 -0000 1.19
25 @@ -1,6 +1,10 @@
26 # ChangeLog for x11-misc/wayv
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/ChangeLog,v 1.18 2012/11/18 18:54:08 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/ChangeLog,v 1.19 2014/09/03 08:34:39 jer Exp $
31 +
32 + 03 Sep 2014; Jeroen Roovers <jer@g.o> -wayv-0.3-r1.ebuild,
33 + wayv-0.3-r2.ebuild:
34 + einstall -> EAPI 5 default (bug #521672).
35
36 18 Nov 2012; Agostino Sarubbo <ago@g.o> wayv-0.3-r2.ebuild:
37 Add ~amd64
38
39
40
41 1.4 x11-misc/wayv/wayv-0.3-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild?rev=1.4&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild?rev=1.4&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild?r1=1.3&r2=1.4
46
47 Index: wayv-0.3-r2.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild,v
50 retrieving revision 1.3
51 retrieving revision 1.4
52 diff -u -r1.3 -r1.4
53 --- wayv-0.3-r2.ebuild 18 Nov 2012 18:54:08 -0000 1.3
54 +++ wayv-0.3-r2.ebuild 3 Sep 2014 08:34:39 -0000 1.4
55 @@ -1,9 +1,8 @@
56 -# Copyright 1999-2012 Gentoo Foundation
57 +# Copyright 1999-2014 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild,v 1.3 2012/11/18 18:54:08 ago Exp $
60 -
61 -EAPI="2"
62 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild,v 1.4 2014/09/03 08:34:39 jer Exp $
63
64 +EAPI=5
65 inherit toolchain-funcs
66
67 DESCRIPTION="Wayv is hand-writing/gesturing recognition software for X"
68 @@ -12,27 +11,26 @@
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ppc x86"
72 -IUSE=""
73
74 -RDEPEND="x11-libs/libX11
75 - x11-libs/libXtst"
76 -DEPEND="${RDEPEND}
77 +RDEPEND="
78 + x11-libs/libX11
79 + x11-libs/libXtst
80 +"
81 +DEPEND="
82 + ${RDEPEND}
83 x11-proto/inputproto
84 - x11-proto/xproto"
85 + x11-proto/xproto
86 +"
87
88 src_prepare() {
89 - sed -i src/Makefile* \
90 - -e 's| = -Wall -O2| += |g' || die "sed failed"
91 -}
92 -
93 -src_configure() {
94 + sed -i -e 's| = -Wall -O2| += |g' src/Makefile* || die
95 tc-export CC
96 - econf || die "econf failed"
97 }
98
99 src_install() {
100 - einstall || die
101 + default
102 +
103 cd doc
104 - einstall || die
105 + default
106 dodoc HOWTO*
107 }