summaryrefslogtreecommitdiff
path: root/pkgs/misc/drivers/spacenavd
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/drivers/spacenavd')
-rw-r--r--pkgs/misc/drivers/spacenavd/configure-cfgfile-path.patch63
-rw-r--r--pkgs/misc/drivers/spacenavd/configure-pidfile-path.patch82
-rw-r--r--pkgs/misc/drivers/spacenavd/configure-socket-path.patch118
-rw-r--r--pkgs/misc/drivers/spacenavd/default.nix26
4 files changed, 286 insertions, 3 deletions
diff --git a/pkgs/misc/drivers/spacenavd/configure-cfgfile-path.patch b/pkgs/misc/drivers/spacenavd/configure-cfgfile-path.patch
new file mode 100644
index 000000000000..268282e96eae
--- /dev/null
+++ b/pkgs/misc/drivers/spacenavd/configure-cfgfile-path.patch
@@ -0,0 +1,63 @@
+diff --git a/src/spnavd.c b/src/spnavd.c
+index 2d4eca6..a5227ed 100644
+--- a/src/spnavd.c
++++ b/src/spnavd.c
+@@ -27,6 +27,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ #include <sys/select.h>
+ #include <sys/socket.h>
+ #include <sys/un.h>
++#include <sys/types.h>
++#include <pwd.h>
+ #include "spnavd.h"
+ #include "logger.h"
+ #include "dev.h"
+@@ -47,13 +49,39 @@ static void handle_events(fd_set *rset);
+ static void sig_handler(int s);
+ static char *fix_path(char *str);
+
+-static char *cfgfile = DEF_CFGFILE;
++static char* config_path;
++char* cfg_path()
++{
++ char* buf;
++ if((buf = getenv("XDG_CONFIG_HOME"))) {
++ if(config_path == NULL) {
++ config_path = malloc(strlen(buf) + strlen("/spnavrc") + 1);
++ if ( config_path != NULL) {
++ sprintf(config_path, "%s/spnavrc", buf);
++ }
++ };
++ return config_path;
++ } else {
++ if (!(buf = getenv("HOME"))) {
++ struct passwd *pw = getpwuid(getuid());
++ buf = pw->pw_dir;
++ }
++ config_path = malloc(strlen(buf) + strlen("/.config/spnavrc") + 1);
++ if ( config_path != NULL) {
++ sprintf(config_path, "%s/.config/spnavrc", buf);
++ }
++ return config_path;
++ }
++}
++
++static char *cfgfile = NULL;
+ static char *logfile = DEF_LOGFILE;
+ static char *pidpath = NULL;
+
+ int main(int argc, char **argv)
+ {
+ int i, pid, ret, become_daemon = 1;
++ cfgfile = cfg_path();
+
+ for(i=1; i<argc; i++) {
+ if(argv[i][0] == '-') {
+@@ -247,7 +275,7 @@ static void print_usage(const char *argv0)
+ printf("usage: %s [options]\n", argv0);
+ printf("options:\n");
+ printf(" -d: do not daemonize\n");
+- printf(" -c <file>: config file path (default: " DEF_CFGFILE ")\n");
++ printf(" -c <file>: config file path (default: %s)\n", cfg_path());
+ printf(" -l <file>|syslog: log file path or log to syslog (default: " DEF_LOGFILE ")\n");
+ printf(" -v: verbose output\n");
+ printf(" -V,-version: print version number and exit\n");
diff --git a/pkgs/misc/drivers/spacenavd/configure-pidfile-path.patch b/pkgs/misc/drivers/spacenavd/configure-pidfile-path.patch
new file mode 100644
index 000000000000..bc2cad9784cb
--- /dev/null
+++ b/pkgs/misc/drivers/spacenavd/configure-pidfile-path.patch
@@ -0,0 +1,82 @@
+diff --git a/src/spnavd.c b/src/spnavd.c
+index 03080da..2d4eca6 100644
+--- a/src/spnavd.c
++++ b/src/spnavd.c
+@@ -42,12 +42,14 @@ static void cleanup(void);
+ static void daemonize(void);
+ static int write_pid_file(void);
+ static int find_running_daemon(void);
++static char *pidfile_path(void);
+ static void handle_events(fd_set *rset);
+ static void sig_handler(int s);
+ static char *fix_path(char *str);
+
+ static char *cfgfile = DEF_CFGFILE;
+ static char *logfile = DEF_LOGFILE;
++static char *pidpath = NULL;
+
+ int main(int argc, char **argv)
+ {
+@@ -270,7 +272,7 @@ static void cleanup(void)
+ remove_device(tmp);
+ }
+
+- remove(PIDFILE);
++ remove(pidfile_path());
+ }
+
+ static void daemonize(void)
+@@ -314,7 +316,7 @@ static int write_pid_file(void)
+ FILE *fp;
+ int pid = getpid();
+
+- if(!(fp = fopen(PIDFILE, "w"))) {
++ if(!(fp = fopen(pidfile_path(), "w"))) {
+ return -1;
+ }
+ fprintf(fp, "%d\n", pid);
+@@ -329,7 +331,7 @@ static int find_running_daemon(void)
+ struct sockaddr_un addr;
+
+ /* try to open the pid-file */
+- if(!(fp = fopen(PIDFILE, "r"))) {
++ if(!(fp = fopen(pidfile_path(), "r"))) {
+ return -1;
+ }
+ if(fscanf(fp, "%d\n", &pid) != 1) {
+@@ -356,6 +358,22 @@ static int find_running_daemon(void)
+ return pid;
+ }
+
++char *pidfile_path(void)
++{
++ char *xdg_runtime_dir;
++ if((xdg_runtime_dir = getenv("XDG_RUNTIME_DIR"))) {
++ if ( pidpath == NULL ) {
++ pidpath = malloc(strlen(xdg_runtime_dir) + strlen("/spnavd.pid") + 1);
++ if ( pidpath != NULL ) {
++ sprintf(pidpath, "%s/spnavd.pid", xdg_runtime_dir);
++ }
++ };
++ return pidpath;
++ } else {
++ return DEFAULT_PIDFILE;
++ }
++}
++
+ static void handle_events(fd_set *rset)
+ {
+ int dev_fd, hotplug_fd;
+diff --git a/src/spnavd.h b/src/spnavd.h
+index 2d1c48b..17d22d3 100644
+--- a/src/spnavd.h
++++ b/src/spnavd.h
+@@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ #define DEF_CFGFILE "/etc/spnavrc"
+ #define DEF_LOGFILE "/var/log/spnavd.log"
+
+-#define PIDFILE "/var/run/spnavd.pid"
++#define DEFAULT_PIDFILE "/run/spnavd.pid"
+ #define DEFAULT_SOCK_NAME "/run/spnav.sock"
+ #define SYSLOG_ID "spnavd"
+
diff --git a/pkgs/misc/drivers/spacenavd/configure-socket-path.patch b/pkgs/misc/drivers/spacenavd/configure-socket-path.patch
new file mode 100644
index 000000000000..c59987dcc051
--- /dev/null
+++ b/pkgs/misc/drivers/spacenavd/configure-socket-path.patch
@@ -0,0 +1,118 @@
+diff --git a/src/proto_unix.c b/src/proto_unix.c
+index 998f234..d38452c 100644
+--- a/src/proto_unix.c
++++ b/src/proto_unix.c
+@@ -36,11 +36,14 @@ enum {
+
+ static int lsock = -1;
+
++static char *spath = NULL;
++
+ int init_unix(void)
+ {
+ int s;
+ mode_t prev_umask;
+ struct sockaddr_un addr;
++ char *sock_path;
+
+ if(lsock >= 0) return 0;
+
+@@ -49,16 +52,18 @@ int init_unix(void)
+ return -1;
+ }
+
+- unlink(SOCK_NAME); /* in case it already exists */
++ sock_path = socket_path();
++
++ unlink(sock_path); /* in case it already exists */
+
+ memset(&addr, 0, sizeof addr);
+ addr.sun_family = AF_UNIX;
+- strcpy(addr.sun_path, SOCK_NAME);
++ strcpy(addr.sun_path, sock_path);
+
+ prev_umask = umask(0);
+
+ if(bind(s, (struct sockaddr*)&addr, sizeof addr) == -1) {
+- logmsg(LOG_ERR, "failed to bind unix socket: %s: %s\n", SOCK_NAME, strerror(errno));
++ logmsg(LOG_ERR, "failed to bind unix socket: %s: %s\n", sock_path, strerror(errno));
+ close(s);
+ return -1;
+ }
+@@ -68,7 +73,7 @@ int init_unix(void)
+ if(listen(s, 8) == -1) {
+ logmsg(LOG_ERR, "listen failed: %s\n", strerror(errno));
+ close(s);
+- unlink(SOCK_NAME);
++ unlink(sock_path);
+ return -1;
+ }
+
+@@ -82,7 +87,7 @@ void close_unix(void)
+ close(lsock);
+ lsock = -1;
+
+- unlink(SOCK_NAME);
++ unlink(socket_path());
+ }
+ }
+
+@@ -173,3 +178,19 @@ int handle_uevents(fd_set *rset)
+
+ return 0;
+ }
++
++char *socket_path(void)
++{
++ char *xdg_runtime_dir;
++ if((xdg_runtime_dir = getenv("XDG_RUNTIME_DIR"))) {
++ if ( spath == NULL ) {
++ spath = malloc(strlen(xdg_runtime_dir) + strlen("/spnav.sock") + 1);
++ if ( spath != NULL ) {
++ sprintf(spath, "%s/spnav.sock", xdg_runtime_dir);
++ }
++ };
++ return spath;
++ } else {
++ return DEFAULT_SOCK_NAME;
++ }
++}
+diff --git a/src/proto_unix.h b/src/proto_unix.h
+index 045b379..ec4509c 100644
+--- a/src/proto_unix.h
++++ b/src/proto_unix.h
+@@ -23,6 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ #include "event.h"
+ #include "client.h"
+
++char *socket_path(void);
+ int init_unix(void);
+ void close_unix(void);
+ int get_unix_socket(void);
+diff --git a/src/spnavd.c b/src/spnavd.c
+index cbea191..03080da 100644
+--- a/src/spnavd.c
++++ b/src/spnavd.c
+@@ -344,7 +344,7 @@ static int find_running_daemon(void)
+ }
+ memset(&addr, 0, sizeof addr);
+ addr.sun_family = AF_UNIX;
+- strncpy(addr.sun_path, SOCK_NAME, sizeof addr.sun_path);
++ strncpy(addr.sun_path, socket_path(), sizeof addr.sun_path);
+
+ if(connect(s, (struct sockaddr*)&addr, sizeof addr) == -1) {
+ close(s);
+diff --git a/src/spnavd.h b/src/spnavd.h
+index fa0a916..2d1c48b 100644
+--- a/src/spnavd.h
++++ b/src/spnavd.h
+@@ -26,8 +26,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ #define DEF_CFGFILE "/etc/spnavrc"
+ #define DEF_LOGFILE "/var/log/spnavd.log"
+
+-#define SOCK_NAME "/var/run/spnav.sock"
+ #define PIDFILE "/var/run/spnavd.pid"
++#define DEFAULT_SOCK_NAME "/run/spnav.sock"
+ #define SYSLOG_ID "spnavd"
+
+ /* Multiple devices support */
diff --git a/pkgs/misc/drivers/spacenavd/default.nix b/pkgs/misc/drivers/spacenavd/default.nix
index 734b2229c877..5cc1b4601332 100644
--- a/pkgs/misc/drivers/spacenavd/default.nix
+++ b/pkgs/misc/drivers/spacenavd/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, libX11 }:
+{ stdenv, lib, fetchFromGitHub, fetchpatch, libX11, IOKit }:
stdenv.mkDerivation rec {
version = "0.8";
@@ -11,9 +11,29 @@ stdenv.mkDerivation rec {
sha256 = "1zz0cm5cgvp9s5n4nzksl8rb11c7sw214bdafzra74smvqfjcjcf";
};
- buildInputs = [ libX11 ];
+ patches = [
+ # Fixes Darwin: https://github.com/FreeSpacenav/spacenavd/pull/38
+ (fetchpatch {
+ url = "https://github.com/FreeSpacenav/spacenavd/commit/d6a25d5c3f49b9676d039775efc8bf854737c43c.patch";
+ sha256 = "02pdgcvaqc20qf9hi3r73nb9ds7yk2ps9nnxaj0x9p50xjnhfg5c";
+ })
+ # Changes the socket path from /run/spnav.sock to $XDG_RUNTIME_DIR/spnav.sock
+ # to allow for a user service
+ ./configure-socket-path.patch
+ # Changes the pidfile path from /run/spnavd.pid to $XDG_RUNTIME_DIR/spnavd.pid
+ # to allow for a user service
+ ./configure-pidfile-path.patch
+ # Changes the config file path from /etc/spnavrc to $XDG_CONFIG_HOME/spnavrc or $HOME/.config/spnavrc
+ # to allow for a user service
+ ./configure-cfgfile-path.patch
+ ];
- configureFlags = [ "--disable-debug"];
+ buildInputs = [ libX11 ]
+ ++ lib.optional stdenv.isDarwin IOKit;
+
+ configureFlags = [ "--disable-debug" ];
+
+ makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
meta = with lib; {
homepage = "http://spacenav.sourceforge.net/";