The branch, build-main has been updated via 758ea1363e435d984ed6d5f077167c3ef64b56f5 (commit) via dc779737f4b3875ff44b926b2594a225f0ac3315 (commit) via 2f33cbe55444454e2f9dd027fb4935bde2a2aab5 (commit) via 53cb96ae13257be8c72adcbf0f57d61dc0f804b8 (commit) via 33986114ce01bbae8b53ac5b66737177bd654615 (commit) via 927bc68ab611e20f3c77960b04f5626b792736c7 (commit) via b9c3fcb5c868acf809ac602658642ea801aefaf5 (commit) from a67589dd46c54cbfaefb228c195a742367b5aa27 (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 ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: CHANGELOG | 4 ++++ INSTALL | 32 ++++++++++++++++++++++++++++++++ Makefile.in | 25 +++++++++++++++++++++++-- VERSION | 2 +- debian/changelog | 11 ++++++++++- debian/control | 15 ++++++++++----- debian/rules | 1 + debian/watch | 3 --- 8 files changed, 81 insertions(+), 12 deletions(-) create mode 100644 INSTALL delete mode 100644 debian/watch The diff of changes is: diff --git a/CHANGELOG b/CHANGELOG index ea01770..de97f0a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ ChangeLog: +nxcompext-3.4.0.2 + +- Adds make install/uninstall functionality + nxcompext-3.4.0.1 - Change of version numbering scheme, upstream code now maintained by X2go project diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..5440d6b --- /dev/null +++ b/INSTALL @@ -0,0 +1,32 @@ +Installing NX libs from Tarball +=============================== + +1. DOWNLOAD +----------- +Download NX lib tarball (nxcomp, nxcompext, nxcompshad) + +2. EXTRACTION +------------- +Extract the tarball + +$ tar vzxf nxcomp..._version.tar.gz + +3. BUILD +-------- +Run the following commands for building from source + +$ autoconf +$ ./configure +$ make + +4. INSTALL +---------- +For installation: + +$ sudo make install + +5. UNINSTALL +------------ +For deinstallation + +$ sudo make uninstall diff --git a/Makefile.in b/Makefile.in index f8b45f3..1325e88 100644 --- a/Makefile.in +++ b/Makefile.in @@ -62,7 +62,9 @@ VPATH = @srcdir@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ - +INSTALL_LINK = cp -av +DESTDIR = +RM_FILE = rm -f # # This should be autodetected. # @@ -149,12 +151,31 @@ depend.status: fi touch depend.status -install: install.bin install.man +install: install.bin install.lib install.man install.bin: +install.lib: all + $(INSTALL_DATA) libXcompext.so.* $(DESTDIR)$(prefix)/lib + $(INSTALL_LINK) libXcompext.so $(DESTDIR)$(prefix)/lib + $(INSTALL_DATA) NX*.h $(DESTDIR)$(prefix)/include + echo "Running ldconfig tool, this may take a while..." && ldconfig + install.man: +uninstall: uninstall.bin uninstall.lib uninstall.man + +uninstall.bin: + +uninstall.lib: + $(RM_FILE) $(DESTDIR)$(prefix)/lib/libXcompext.so.* + $(RM_FILE) $(DESTDIR)$(prefix)/lib/libXcompext.so + $(RM_FILE) $(DESTDIR)$(prefix)/include/NXlib.h + $(RM_FILE) $(DESTDIR)$(prefix)/include/NXlibint.h + echo "Running ldconfig tool, this may take a while..." && ldconfig + +uninstall.man: + clean: -rm -f *~ *.o *.bak *.orig *.rej st?????? core core.* *.out.* \ @ALL@ diff --git a/VERSION b/VERSION index 3c6bd15..261f9ad 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -3.4.0.1 +3.4.0.2 diff --git a/debian/changelog b/debian/changelog index d0a6555..7df16f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,15 @@ +nxcompext (1:3.4.0.2-0~x2go1) unstable; urgency=low + + * new upstream version: + - adds make install/uninstall functionality + * lintian cleanup + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 19 May 2011 11:59:38 +0200 + nxcompext (1:3.4.0.1-0~x2go1) unstable; urgency=low - * Change of version numbering scheme, upstream code now maintained by X2go project + * Change of version numbering scheme, upstream code now + maintained by X2go project -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 21 Mar 2011 12:58:12 +0100 diff --git a/debian/control b/debian/control index 93fd056..01aca75 100644 --- a/debian/control +++ b/debian/control @@ -1,11 +1,12 @@ Source: nxcompext -Maintainer: Ubuntu MOTU Developers <ubuntu-motu@lists.ubuntu.com> -Section: universe/x11 +Maintainer: Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de> +Uploaders: + Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +Section: x11 Priority: optional -Standards-Version: 3.8.4 Build-Depends: dh-autoreconf, - debhelper (>= 7), + debhelper (>= 7.0.50), libjpeg-dev, libpng-dev, libx11-dev, @@ -13,6 +14,10 @@ Build-Depends: libz-dev, pkg-config, xserver-xorg-dev +Standards-Version: 3.9.2 +Homepage: http://code.x2go.org/releases/source/nxcompext +Vcs-Git: git://code.x2go.org/nxcompext.git +Vcs-Browser: http://code.x2go.org/gitweb?p=nxcompext.git;a=summary Package: libxcompext3 Architecture: any @@ -29,7 +34,7 @@ Description: NX X11 protocol compression extensions library Package: libxcompext-dev Architecture: any Priority: extra -Section: universe/libdevel +Section: libdevel Depends: libxcompext3 (=${binary:Version}), ${misc:Depends}, diff --git a/debian/rules b/debian/rules index 39729d4..45bc4c7 100755 --- a/debian/rules +++ b/debian/rules @@ -3,3 +3,4 @@ %: dh --with autoreconf --parallel $@ +override_dh_auto_install: \ No newline at end of file diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 6788363..0000000 --- a/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 -http://www.nomachine.com/sources.php \ - http://[^"]*/nxcompext-([\d\.-]*)\.tar\.gz hooks/post-receive -- nxcompext.git (NX compext library) 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 "nxcompext.git" (NX compext library).