Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xstroke/
Date: Tue, 24 Dec 2019 17:40:38
Message-Id: 1577209212.9abf19df66dd6d9c153a8e85e1894b34a18c0489.soap@gentoo
1 commit: 9abf19df66dd6d9c153a8e85e1894b34a18c0489
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 24 17:40:12 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 24 17:40:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9abf19df
7
8 x11-misc/xstroke: Port to EAPI 7
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 x11-misc/xstroke/xstroke-0.6-r1.ebuild | 28 +++++++++++++---------------
14 1 file changed, 13 insertions(+), 15 deletions(-)
15
16 diff --git a/x11-misc/xstroke/xstroke-0.6-r1.ebuild b/x11-misc/xstroke/xstroke-0.6-r1.ebuild
17 index c797405cf80..63e05e04026 100644
18 --- a/x11-misc/xstroke/xstroke-0.6-r1.ebuild
19 +++ b/x11-misc/xstroke/xstroke-0.6-r1.ebuild
20 @@ -1,19 +1,17 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=4
26 -inherit autotools eutils
27 +EAPI=7
28 +
29 +inherit autotools
30
31 DESCRIPTION="Gesture/Handwriting recognition engine for X"
32 -# Dead upstream?
33 -#HOMEPAGE="http://www.xstroke.org/"
34 HOMEPAGE="http://freshmeat.net/projects/xstroke/"
35 SRC_URI="mirror://gentoo/${P}.tar.bz2"
36
37 LICENSE="GPL-2"
38 SLOT="0"
39 KEYWORDS="alpha ~amd64 hppa ~mips ppc sparc x86"
40 -IUSE=""
41
42 RDEPEND="
43 x11-libs/libX11
44 @@ -21,21 +19,21 @@ RDEPEND="
45 x11-libs/libXft
46 x11-libs/libXpm
47 x11-libs/libXrender
48 - x11-libs/libXtst
49 -"
50 + x11-libs/libXtst"
51 DEPEND="
52 ${RDEPEND}
53 + x11-base/xorg-proto"
54 +BDEPEND="
55 sys-devel/flex
56 virtual/pkgconfig
57 - virtual/yacc
58 - x11-base/xorg-proto
59 -"
60 + virtual/yacc"
61
62 -DOCS=( AUTHORS ChangeLog NEWS README TODO )
63 +PATCHES=(
64 + "${FILESDIR}"/${P}-sigsegv_sprintf.patch
65 + "${FILESDIR}"/${P}-underlinking.patch
66 +)
67
68 src_prepare() {
69 - epatch \
70 - "${FILESDIR}"/${P}-sigsegv_sprintf.patch \
71 - "${FILESDIR}"/${P}-underlinking.patch
72 + default
73 eautoreconf
74 }