diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-10-20 22:27:26 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-10-20 22:27:26 +0200 |
commit | f801d405dcdf4d80e8b6b4bfcad9a0013e57be9b (patch) | |
tree | 7db3f463a9c680317b9510583bf83adf7a0a89ad /debian/patches/001_add-main-makefile.full+lite.patch | |
parent | d39771037bea6109cc7ce2e41c9f0d3271f536a3 (diff) | |
download | nx-libs-f801d405dcdf4d80e8b6b4bfcad9a0013e57be9b.tar.gz nx-libs-f801d405dcdf4d80e8b6b4bfcad9a0013e57be9b.tar.bz2 nx-libs-f801d405dcdf4d80e8b6b4bfcad9a0013e57be9b.zip |
Fix wrapper scripts: make sure all NX executables can be launched if NX gets installed via the tarball installation method.
Diffstat (limited to 'debian/patches/001_add-main-makefile.full+lite.patch')
-rw-r--r-- | debian/patches/001_add-main-makefile.full+lite.patch | 11 |
1 files changed, 10 insertions, 1 deletions
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 |