commit:     d9784cad7cb1f6d63e15238c371b5aac9317a008
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  1 20:51:49 2020 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Feb  1 20:51:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9784cad

app-misc/spacenavd: Fix USE=-X for 0.7

Closes: https://bugs.gentoo.org/707732
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-2.3.84, Repoman-2.3.20

 .../spacenavd/files/spacenavd-0.7-no-x11.patch     | 24 ++++++++++++++++++++++
 app-misc/spacenavd/spacenavd-0.7.ebuild            |  1 +
 2 files changed, 25 insertions(+)

diff --git a/app-misc/spacenavd/files/spacenavd-0.7-no-x11.patch 
b/app-misc/spacenavd/files/spacenavd-0.7-no-x11.patch
new file mode 100644
index 00000000000..8dbdb7df315
--- /dev/null
+++ b/app-misc/spacenavd/files/spacenavd-0.7-no-x11.patch
@@ -0,0 +1,24 @@
+From 3168b1dedf88c9026683ed43ea337814003d6802 Mon Sep 17 00:00:00 2001
+From: John Tsiombikas <[email protected]>
+Date: Sat, 1 Feb 2020 22:08:43 +0200
+Subject: [PATCH] add a USE_X11 ifdef around the call to drop_xinput in
+ src/dev.c to fix non-X11 build. This should fix github issue #19.
+
+---
+ src/dev.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/dev.c b/src/dev.c
+index 8b72932..2074895 100644
+--- a/src/dev.c
++++ b/src/dev.c
+@@ -88,7 +88,9 @@ int init_devices(void)
+               return -1;
+       }
+ 
++#ifdef USE_X11
+       drop_xinput();
++#endif
+       return 0;
+ }
+ 

diff --git a/app-misc/spacenavd/spacenavd-0.7.ebuild 
b/app-misc/spacenavd/spacenavd-0.7.ebuild
index 6a4e1d73add..4c5a57fdbfa 100644
--- a/app-misc/spacenavd/spacenavd-0.7.ebuild
+++ b/app-misc/spacenavd/spacenavd-0.7.ebuild
@@ -19,6 +19,7 @@ DEPEND="${RDEPEND}"
 
 PATCHES=(
        "${FILESDIR}"/${P}-gcc10.patch
+       "${FILESDIR}"/${P}-no-x11.patch
 )
 
 pkg_setup() {

Reply via email to