[X2go-Commits] nx-libs.git - master (branch) updated: f4fac453574cd3e10c3e47073c97397682fc6679

X2go dev team git-admin at x2go.org
Mon Dec 5 09:39:12 CET 2011


The branch, master has been updated
       via  f4fac453574cd3e10c3e47073c97397682fc6679 (commit)
       via  8eb3ea78ba42d1fca2bba8401561139b35a4a763 (commit)
      from  9852dfad08603b999dd63a746c6d5289b5cf20bf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f4fac453574cd3e10c3e47073c97397682fc6679
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Mon Dec 5 09:39:08 2011 +0100

    Add patch: 015_nxproxy-makefile-uninstall.patch.

commit 8eb3ea78ba42d1fca2bba8401561139b35a4a763
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Mon Dec 5 09:35:03 2011 +0100

    Add patches: 012, 013, 014 - Makefile uninstall stanza patches for nxcomp, nxcompext, nxcompshad.

-----------------------------------------------------------------------

Summary of changes:
 debian/changelog                                   |    3 +
 debian/patches/012_nxcomp-makefile-uninstall.patch |   60 ++++++++++++++++++++
 .../patches/013_nxcompext-makefile-uninstall.patch |   50 ++++++++++++++++
 .../014_nxcompshad-makefile-uninstall.patch        |   56 ++++++++++++++++++
 debian/patches/series                              |    4 +
 5 files changed, 173 insertions(+), 0 deletions(-)
 create mode 100644 debian/patches/012_nxcomp-makefile-uninstall.patch
 create mode 100644 debian/patches/013_nxcompext-makefile-uninstall.patch
 create mode 100644 debian/patches/014_nxcompshad-makefile-uninstall.patch

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 17e5b30..0c1a50a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -24,5 +24,8 @@ nx-libs (2:3.5.0-0~x2go1) UNRELEASED; urgency=low
   * Add patch: 011_add-nxauth-wrapper.patch.
   * Build nxauth package.
   * Add lintian overrides for libxcomp*: breaks-without-version.
+  * Add patches: 012, 013, 014 - Makefile uninstall stanza patches for
+    nxcomp, nxcompext, nxcompshad.
+  * Add patch: 015_nxproxy-makefile-uninstall.patch.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Fri, 14 Oct 2011 03:01:39 +0200
diff --git a/debian/patches/012_nxcomp-makefile-uninstall.patch b/debian/patches/012_nxcomp-makefile-uninstall.patch
new file mode 100644
index 0000000..9545a57
--- /dev/null
+++ b/debian/patches/012_nxcomp-makefile-uninstall.patch
@@ -0,0 +1,60 @@
+Index: nx-libs/nxcomp/Makefile.in
+===================================================================
+--- nx-libs.orig/nxcomp/Makefile.in	2011-12-05 09:16:34.000000000 +0100
++++ nx-libs/nxcomp/Makefile.in	2011-12-05 09:19:28.000000000 +0100
+@@ -68,6 +68,9 @@
+ INSTALL         = @INSTALL@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_DATA    = @INSTALL_DATA@
++INSTALL_LINK    = cp -av
++DESTDIR         =
++RM_FILE         = rm -f
+ 
+ #
+ # This should be autodetected.
+@@ -264,12 +267,44 @@
+ 		fi
+ 		touch depend.status
+ 
+-install:	install.bin install.man
++install:	install.bin install.lib install.man
+ 
+ install.bin:
+ 
++install.lib: all
++	./mkinstalldirs $(DESTDIR)$(prefix)/lib/nx
++	./mkinstalldirs $(DESTDIR)$(prefix)/include/nx
++	$(INSTALL_DATA) libXcomp.so.3.*         $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_LINK) libXcomp.so.3           $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_LINK) libXcomp.so             $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_DATA) libXcomp.a              $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_DATA) NX*.h                   $(DESTDIR)$(prefix)/include/nx
++	$(INSTALL_DATA) MD5.h                   $(DESTDIR)$(prefix)/include/nx
++	echo "Running ldconfig tool, this may take a while..." && ldconfig || true
++
+ install.man:
+ 
++uninstall:	uninstall.bin uninstall.lib uninstall.man
++
++uninstall.bin:
++
++uninstall.lib:
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcomp.so.3.*
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcomp.so.3
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcomp.so
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcomp.a
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXalert.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NX.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXmitshm.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXpack.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXproto.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXrender.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXvars.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/MD5.h
++	echo "Running ldconfig tool, this may take a while..." && ldconfig || true
++
++uninstall.man:
++
+ clean:
+ 		-rm -f *~ *.o *.bak *.orig *.rej st?????? core core.* *.out.* \
+ 		@ALL@
diff --git a/debian/patches/013_nxcompext-makefile-uninstall.patch b/debian/patches/013_nxcompext-makefile-uninstall.patch
new file mode 100644
index 0000000..f4002a5
--- /dev/null
+++ b/debian/patches/013_nxcompext-makefile-uninstall.patch
@@ -0,0 +1,50 @@
+Index: nx-libs/nxcompext/Makefile.in
+===================================================================
+--- nx-libs.orig/nxcompext/Makefile.in	2011-12-05 09:20:15.000000000 +0100
++++ nx-libs/nxcompext/Makefile.in	2011-12-05 09:24:37.000000000 +0100
+@@ -60,7 +60,9 @@
+ INSTALL         = @INSTALL@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_DATA    = @INSTALL_DATA@
+-
++INSTALL_LINK    = cp -av
++DESTDIR         =
++RM_FILE         = rm -f
+ #
+ # This should be autodetected.
+ #
+@@ -147,12 +149,33 @@
+ 		fi
+ 		touch depend.status
+ 
+-install:	install.bin install.man
++install:       install.bin install.lib install.man
+ 
+ install.bin:
+ 
++install.lib: all
++	./mkinstalldirs $(DESTDIR)$(prefix)/lib/nx
++	./mkinstalldirs $(DESTDIR)$(prefix)/include/nx
++	$(INSTALL_DATA) libXcompext.so.*        $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_LINK) libXcompext.so          $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_DATA) NX*.h                   $(DESTDIR)$(prefix)/include/nx
++	echo "Running ldconfig tool, this may take a while..." && ldconfig || true
++
+ install.man:
+ 
++uninstall:     uninstall.bin uninstall.lib uninstall.man
++
++uninstall.bin:
++
++uninstall.lib:
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompext.so.*
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompext.so
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXlib.h
++	$(RM_FILE) $(DESTDIR)$(prefix)/include/nx/NXlibint.h
++	echo "Running ldconfig tool, this may take a while..." && ldconfig || true
++
++uninstall.man:
++
+ clean:
+ 		-rm -f *~ *.o *.bak *.orig *.rej st?????? core core.* *.out.* \
+ 		@ALL@
diff --git a/debian/patches/014_nxcompshad-makefile-uninstall.patch b/debian/patches/014_nxcompshad-makefile-uninstall.patch
new file mode 100644
index 0000000..43dd173
--- /dev/null
+++ b/debian/patches/014_nxcompshad-makefile-uninstall.patch
@@ -0,0 +1,56 @@
+--- a/nxcompshad/Makefile.in
++++ b/nxcompshad/Makefile.in
+@@ -76,8 +76,13 @@
+ VPATH       = @srcdir@
+ 
+ INSTALL         = @INSTALL@
++INSTALL_DIR     = $(INSTALL) -d -o root -g root -m 0755 
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_DATA    = @INSTALL_DATA@
++INSTALL_LINK    = cp -av
++DESTDIR         =
++RM_FILE         = rm -f
++RM_DIR          = rmdir -p --ignore-fail-on-non-empty
+ 
+ #
+ # This should be autodetected.
+@@ -178,12 +183,38 @@
+ 		fi
+ 		touch depend.status
+ 
+-install:	install.bin install.man
++install:       install.bin install.lib install.man
+ 
+ install.bin:
+ 
++install.lib: all
++	$(INSTALL_DIR)                          $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_DIR)                          $(DESTDIR)$(prefix)/include/nx
++	$(INSTALL_DATA) libXcompshad.so.3.*     $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_LINK) libXcompshad.so.3       $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_LINK) libXcompshad.so         $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_DATA) *.a                     $(DESTDIR)$(prefix)/lib/nx
++	$(INSTALL_DATA) *.h                     $(DESTDIR)$(prefix)/include/nx
++	echo "Running ldconfig tool, this may take a while..." && ldconfig || true
++
+ install.man:
+ 
++uninstall:     uninstall.bin uninstall.lib uninstall.man
++
++uninstall.bin:
++
++uninstall.lib:
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompshad.so.3.*
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompshad.so.3
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompshad.so
++	$(RM_FILE) $(DESTDIR)$(prefix)/lib/nx/libXcompshad.a
++	for header in *.h; do $(RM_FILE) $(DESTDIR)$(prefix)/include/nx/$$header; done
++	$(RM_DIR) $(DESTDIR)$(prefix)/lib/nx/
++	$(RM_DIR) $(DESTDIR)$(prefix)/include/nx/
++	echo "Running ldconfig tool, this may take a while..." && ldconfig || true
++
++uninstall.man:
++
+ clean:
+ 		-rm -f *~ *.o *.gch *.bak st?????? core core.* *.out.* *.exe.stackdump \
+ 		$(LIBFULL) $(LIBLOAD) $(LIBSHARED) $(LIBARCHIVE) $(LIBDLL) $(LIBDLLSTATIC) $(PROGRAM) $(PROGRAM).exe
diff --git a/debian/patches/series b/debian/patches/series
index 234b0c2..a6aa492 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -9,3 +9,7 @@
 009_nxproxy-add-man-page.patch
 010_nxauth-fix-binary-name-in-man-page.patch
 011_add-nxauth-wrapper.patch
+012_nxcomp-makefile-uninstall.patch
+013_nxcompext-makefile-uninstall.patch
+014_nxcompshad-makefile-uninstall.patch
+015_nxproxy-makefile-uninstall.patch


hooks/post-receive
-- 
nx-libs.git (NX libraries)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nx-libs.git" (NX libraries).




More information about the x2go-commits mailing list