summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-09-23 13:17:17 -0400
committerIonen Wolkens <ionen@gentoo.org>2021-09-23 13:19:14 -0400
commit3a11ef4aad2321b61a661d486b902da17a66ccc0 (patch)
tree5ab104b802f801234cbb42e172af140386f43d61 /x11-misc
parentmedia-sound/pulseaudio: adjust manpage build deps some more (diff)
downloadgentoo-3a11ef4aad2321b61a661d486b902da17a66ccc0.tar.gz
gentoo-3a11ef4aad2321b61a661d486b902da17a66ccc0.tar.bz2
gentoo-3a11ef4aad2321b61a661d486b902da17a66ccc0.zip
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 <ionen@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/mygestures/mygestures-2.0.ebuild11
1 files changed, 9 insertions, 2 deletions
diff --git a/x11-misc/mygestures/mygestures-2.0.ebuild b/x11-misc/mygestures/mygestures-2.0.ebuild
index ae7d7d86dda4..18b0d8fe375b 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
+}