From f801d405dcdf4d80e8b6b4bfcad9a0013e57be9b Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 20 Oct 2012 22:27:26 +0200 Subject: Fix wrapper scripts: make sure all NX executables can be launched if NX gets installed via the tarball installation method. --- debian/patches/001_add-main-makefile.full+lite.patch | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'debian/patches/001_add-main-makefile.full+lite.patch') diff --git a/debian/patches/001_add-main-makefile.full+lite.patch b/debian/patches/001_add-main-makefile.full+lite.patch index 5c13e630b..4910982c4 100644 --- a/debian/patches/001_add-main-makefile.full+lite.patch +++ b/debian/patches/001_add-main-makefile.full+lite.patch @@ -45,7 +45,7 @@ Last-Update: 2011-12-31 + fi --- /dev/null +++ b/bin/Makefile -@@ -0,0 +1,15 @@ +@@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +INSTALL_DIR=install -d -o root -g root -m 755 @@ -55,9 +55,18 @@ Last-Update: 2011-12-31 +DESTDIR= +PREFIX ?= /usr/local +BINDIR=$(PREFIX)/bin ++NXLIBDIR=$(PREFIX)/lib/nx ++X2GOLIBDIR=$(PREFIX)/lib/x2go + +%: ++ echo "Nothing to do for $@..." + +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 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 -- cgit v1.2.3