From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 93F88158012 for ; Thu, 23 Sep 2021 17:20:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB8A6E09CE; Thu, 23 Sep 2021 17:20:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DF69E09CE for ; Thu, 23 Sep 2021 17:20:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 628F9342D62 for ; Thu, 23 Sep 2021 17:20:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B725FEA for ; Thu, 23 Sep 2021 17:20:30 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1632417554.3a11ef4aad2321b61a661d486b902da17a66ccc0.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mygestures/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/mygestures/mygestures-2.0.ebuild X-VCS-Directories: x11-misc/mygestures/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 3a11ef4aad2321b61a661d486b902da17a66ccc0 X-VCS-Branch: master Date: Thu, 23 Sep 2021 17:20:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b7b1177c-bc68-4600-b1b9-3a1a4b377c24 X-Archives-Hash: 72e33dc315469539c4ef58e5c8c90c5c commit: 3a11ef4aad2321b61a661d486b902da17a66ccc0 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Sep 23 17:17:17 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Sep 23 17:19:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a11ef4a x11-misc/mygestures: fix possible race condition There's no need to rely on a broken makefile to install only 2 files. Closes: https://bugs.gentoo.org/814482 Signed-off-by: Ionen Wolkens gentoo.org> x11-misc/mygestures/mygestures-2.0.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/x11-misc/mygestures/mygestures-2.0.ebuild b/x11-misc/mygestures/mygestures-2.0.ebuild index ae7d7d86dda..18b0d8fe375 100644 --- a/x11-misc/mygestures/mygestures-2.0.ebuild +++ b/x11-misc/mygestures/mygestures-2.0.ebuild @@ -24,10 +24,17 @@ DEPEND=" x11-base/xorg-proto" BDEPEND="virtual/pkgconfig" -DOCS=( README.md ) - src_prepare() { default eautoreconf } + +src_install() { + dobin src/mygestures #814482 + + dodoc README.md + + insinto /etc + doins mygestures.xml +}