Commit f801d405 authored by Mike Gabriel's avatar Mike Gabriel

Fix wrapper scripts: make sure all NX executables can be launched if NX gets…

Fix wrapper scripts: make sure all NX executables can be launched if NX gets installed via the tarball installation method.
parent d3977103
...@@ -13,6 +13,8 @@ nx-libs (2:3.5.0.16-0) UNRELEASED; urgency=low ...@@ -13,6 +13,8 @@ nx-libs (2:3.5.0.16-0) UNRELEASED; urgency=low
unneeded build file from NoMachine's nxproxy sources. unneeded build file from NoMachine's nxproxy sources.
* Modify patch: 001_add-main-makefile.full+lite.patch. Install nx* and * Modify patch: 001_add-main-makefile.full+lite.patch. Install nx* and
x2goagent wrapper scripts during make install. x2goagent wrapper scripts during make install.
* Fix wrapper scripts: make sure all NX executables can be launched
if NX gets installed via the tarball installation method.
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 21 Sep 2012 10:06:54 +0200 -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 21 Sep 2012 10:06:54 +0200
......
...@@ -45,7 +45,7 @@ Last-Update: 2011-12-31 ...@@ -45,7 +45,7 @@ Last-Update: 2011-12-31
+ fi + fi
--- /dev/null --- /dev/null
+++ b/bin/Makefile +++ b/bin/Makefile
@@ -0,0 +1,15 @@ @@ -0,0 +1,24 @@
+#!/usr/bin/make -f +#!/usr/bin/make -f
+ +
+INSTALL_DIR=install -d -o root -g root -m 755 +INSTALL_DIR=install -d -o root -g root -m 755
...@@ -55,9 +55,18 @@ Last-Update: 2011-12-31 ...@@ -55,9 +55,18 @@ Last-Update: 2011-12-31
+DESTDIR= +DESTDIR=
+PREFIX ?= /usr/local +PREFIX ?= /usr/local
+BINDIR=$(PREFIX)/bin +BINDIR=$(PREFIX)/bin
+NXLIBDIR=$(PREFIX)/lib/nx
+X2GOLIBDIR=$(PREFIX)/lib/x2go
+ +
+%: +%:
+ echo "Nothing to do for $@..."
+ +
+install: +install:
+ $(INSTALL_DIR) $(X2GOLIBDIR)/bin/
+ ln -sf $(NXLIBDIR)/bin/nxagent $(X2GOLIBDIR)/bin/x2goagent
+ find nx* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done + find nx* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done
+ find x2go* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done + find x2go* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done
+
+uninstall:
+ find nx* | while read file; do rm -f $(BINDIR)/$$file; done
+ find x2go* | while read file; do rm -f $(BINDIR)/$$file; done
--- /dev/null --- /dev/null
+++ b/bin/nxagent +++ b/bin/nxagent
@@ -0,0 +1,30 @@ @@ -0,0 +1,32 @@
+#!/bin/bash +#!/bin/bash
+ +
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
+# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU General Public License
+# along with this program. If not, see http://www.gnu.org/licenses/. +# along with this program. If not, see http://www.gnu.org/licenses/.
+ +
+NXAPP=nxagent
+NX_LIBS=/usr/lib/nx +NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx +NX_LOCAL_LIBS=/usr/local/lib/nx
+ +
...@@ -25,9 +26,10 @@ ...@@ -25,9 +26,10 @@
+NX_TEMP=${NX_TEMP:-/tmp} +NX_TEMP=${NX_TEMP:-/tmp}
+export NX_TEMP +export NX_TEMP
+ +
+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH +LD_LIBRARY_PATH=$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$NX_LIBS:$NX_LIBS/X11:$LD_LIBRARY_PATH
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS +test -x $NX_LOCAL_LIBS/bin/$NXAPP && export NX_LIBS=$NX_LOCAL_LIBS
+test -x $NX_LIBS/bin/$NXAPP && export NX_LIBS=$NX_LIBS
+ +
+export LD_LIBRARY_PATH +export LD_LIBRARY_PATH
+ +
+exec $NX_LIBS/bin/nxagent "$@" +exec $NX_LIBS/bin/$NXAPP "$@"
--- /dev/null --- /dev/null
+++ b/bin/nxauth +++ b/bin/nxauth
@@ -0,0 +1,29 @@ @@ -0,0 +1,32 @@
+#!/bin/bash +#!/bin/bash
+ +
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
...@@ -18,15 +18,19 @@ ...@@ -18,15 +18,19 @@
+# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU General Public License
+# along with this program. If not, see http://www.gnu.org/licenses/. +# along with this program. If not, see http://www.gnu.org/licenses/.
+ +
+NXAPP=nxauth
+NX_LIBS=/usr/lib/nx +NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx +NX_LOCAL_LIBS=/usr/local/lib/nx
+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+ +
+# make sure nxagent starts properly with pam_tmpdir.so being in use +# make sure nxagent starts properly with pam_tmpdir.so being in use
+NX_TEMP=${NX_TEMP:-/tmp} +NX_TEMP=${NX_TEMP:-/tmp}
+export NX_TEMP +export NX_TEMP
+ +
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS +LD_LIBRARY_PATH=$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$NX_LIBS:$NX_LIBS/X11:$LD_LIBRARY_PATH
+test -x $NX_LOCAL_LIBS/bin/$NXAPP && export NX_LIBS=$NX_LOCAL_LIBS
+test -x $NX_LIBS/bin/$NXAPP && export NX_LIBS=$NX_LIBS
+
+export LD_LIBRARY_PATH +export LD_LIBRARY_PATH
+ +
+exec $NX_LIBS/bin/nxauth "$@" +exec $NX_LIBS/bin/$NXAPP "$@"
\ No newline at end of file
--- /dev/null --- /dev/null
+++ b/bin/nxproxy +++ b/bin/nxproxy
@@ -0,0 +1,29 @@ @@ -0,0 +1,32 @@
+#!/bin/bash +#!/bin/bash
+ +
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
...@@ -18,15 +18,19 @@ ...@@ -18,15 +18,19 @@
+# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU General Public License
+# along with this program. If not, see http://www.gnu.org/licenses/. +# along with this program. If not, see http://www.gnu.org/licenses/.
+ +
+NXAPP=nxproxy
+NX_LIBS=/usr/lib/nx +NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx +NX_LOCAL_LIBS=/usr/local/lib/nx
+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+ +
+# make sure nxagent starts properly with pam_tmpdir.so being in use +# make sure nxagent starts properly with pam_tmpdir.so being in use
+NX_TEMP=${NX_TEMP:-/tmp} +NX_TEMP=${NX_TEMP:-/tmp}
+export NX_TEMP +export NX_TEMP
+ +
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS +LD_LIBRARY_PATH=$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$NX_LIBS:$NX_LIBS/X11:$LD_LIBRARY_PATH
+test -x $NX_LOCAL_LIBS/bin/$NXAPP && export NX_LIBS=$NX_LOCAL_LIBS
+test -x $NX_LIBS/bin/$NXAPP && export NX_LIBS=$NX_LIBS
+
+export LD_LIBRARY_PATH +export LD_LIBRARY_PATH
+ +
+exec $NX_LIBS/bin/nxproxy "$@" +exec $NX_LIBS/bin/$NXAPP "$@"
\ No newline at end of file
--- /dev/null --- /dev/null
+++ b/bin/x2goagent +++ b/bin/x2goagent
@@ -0,0 +1,30 @@ @@ -0,0 +1,32 @@
+#!/bin/bash +#!/bin/bash
+ +
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
+# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU General Public License
+# along with this program. If not, see http://www.gnu.org/licenses/. +# along with this program. If not, see http://www.gnu.org/licenses/.
+ +
+NXAPP=x2goagent
+NX_LIBS=/usr/lib/nx +NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx +NX_LOCAL_LIBS=/usr/local/lib/nx
+ +
...@@ -25,9 +26,11 @@ ...@@ -25,9 +26,11 @@
+NX_TEMP=${NX_TEMP:-/tmp} +NX_TEMP=${NX_TEMP:-/tmp}
+export NX_TEMP +export NX_TEMP
+ +
+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH +LD_LIBRARY_PATH=$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$NX_LIBS:$NX_LIBS/X11:$LD_LIBRARY_PATH
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS +test -x $NX_LOCAL_LIBS/../x2go/bin/$NXAPP && export NX_LIBS=$NX_LOCAL_LIBS
+test -x $NX_LIBS/../x2go/bin/$NXAPP && export NX_LIBS=$NX_LIBS
+ +
+export LD_LIBRARY_PATH +export LD_LIBRARY_PATH
+ +
+exec $NX_LIBS/../x2go/bin/x2goagent "$@" +exec $NX_LIBS/../x2go/bin/$NXAPP "$@"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment