Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mygestures/
Date: Thu, 23 Sep 2021 17:20:34
Message-Id: 1632417554.3a11ef4aad2321b61a661d486b902da17a66ccc0.ionen@gentoo
1 commit: 3a11ef4aad2321b61a661d486b902da17a66ccc0
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 23 17:17:17 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 23 17:19:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a11ef4a
7
8 x11-misc/mygestures: fix possible race condition
9
10 There's no need to rely on a broken makefile
11 to install only 2 files.
12
13 Closes: https://bugs.gentoo.org/814482
14 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
15
16 x11-misc/mygestures/mygestures-2.0.ebuild | 11 +++++++++--
17 1 file changed, 9 insertions(+), 2 deletions(-)
18
19 diff --git a/x11-misc/mygestures/mygestures-2.0.ebuild b/x11-misc/mygestures/mygestures-2.0.ebuild
20 index ae7d7d86dda..18b0d8fe375 100644
21 --- a/x11-misc/mygestures/mygestures-2.0.ebuild
22 +++ b/x11-misc/mygestures/mygestures-2.0.ebuild
23 @@ -24,10 +24,17 @@ DEPEND="
24 x11-base/xorg-proto"
25 BDEPEND="virtual/pkgconfig"
26
27 -DOCS=( README.md )
28 -
29 src_prepare() {
30 default
31
32 eautoreconf
33 }
34 +
35 +src_install() {
36 + dobin src/mygestures #814482
37 +
38 + dodoc README.md
39 +
40 + insinto /etc
41 + doins mygestures.xml
42 +}