Browse Source

added nxcomp and nxproxy

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1634 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
f5d084ab9a
5 changed files with 138 additions and 0 deletions
  1. +4
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +18
    -0
      package/rene/nxcomp/make-install.patch
  3. +42
    -0
      package/rene/nxcomp/nxcomp.desc
  4. +24
    -0
      package/rene/nxproxy/dlopen-version.patch
  5. +50
    -0
      package/rene/nxproxy/nxproxy.desc

+ 4
- 0
Documentation/Developers/CHANGELOG-RENE

@ -1,4 +1,8 @@
*) 2003-10-26 (2.0.0-rc2 - 2.0.0-rc3)
- added nxcomp and nxproxy
*) 2003-10-21 (2.0.0-rc2 - 2.0.0-rc3)
- Juergen Georg Sawinski / Rene Rebe: new gnome24 merging

+ 18
- 0
package/rene/nxcomp/make-install.patch

@ -0,0 +1,18 @@
--- Makefile.in.orig 2003-10-26 16:15:37.000000000 +0100
+++ Makefile.in 2003-10-26 16:22:00.000000000 +0100
@@ -1,6 +1,7 @@
#
# Get values from configure script.
#
+
VERSION=@VERSION@
LIBVERSION=@LIBVERSION@
@@ -197,6 +198,7 @@
install: install.bin install.man
install.bin:
+ $(INSTALL) -v $(LIBFULL) $(LIBLOAD) $(prefix)/lib/
install.man:

+ 42
- 0
package/rene/nxcomp/nxcomp.desc

@ -0,0 +1,42 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/rene/xosd/xosd.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] A library for X11 compression
[T] The Xcomp library is a basic components you need to compress the X
[T] protocol produced by any standard X client.
[U] http://www.nomachine.com/developers.php
[A] NoMachine {http://www.nomachine.com}
[M] Rene Rebe <rene@rocklinux.org>
[C] extra/network
[L] GPL
[S] Beta
[V] 1.2.2-67
[P] X -----5---9 484.000
[D] 0 nxcomp-1.2.2-67.tar.gz http://www.nomachine.com/download/nxsources/nxcomp/

+ 24
- 0
package/rene/nxproxy/dlopen-version.patch

@ -0,0 +1,24 @@
--- nxproxy/configure.orig 2003-10-26 14:13:29.000000000 +0100
+++ nxproxy/configure 2003-10-26 14:14:07.000000000 +0100
@@ -2094,8 +2094,8 @@
LIBVERSION=`echo ${VERSION} | cut -d '.' -f 1`
-CXXFLAGS="$CXXFLAGS -DVERSION=\\\"${VERSION}\\\""
-CPPFLAGS="$CPPFLAGS -DVERSION=\\\"${VERSION}\\\""
+CXXFLAGS="$CXXFLAGS -DVERSION=\\\"${VERSION}\\\" -DLIBVERSION=\\\"${LIBVERSION}\\\""
+CPPFLAGS="$CPPFLAGS -DVERSION=\\\"${VERSION}\\\" -DLIBVERSION=\\\"${LIBVERSION}\\\""
--- nxproxy/Main.c.orig 2003-10-26 14:10:16.000000000 +0100
+++ nxproxy/Main.c 2003-10-26 14:14:18.000000000 +0100
@@ -137,7 +137,7 @@
}
else
{
- version = VERSION;
+ version = LIBVERSION;
if (version == NULL)
{

+ 50
- 0
package/rene/nxproxy/nxproxy.desc

@ -0,0 +1,50 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/rene/xosd/xosd.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] A X11 proxy with extensive compression support
[T] A X11 procy with extensive compression. In its simplest configuration,
[T] a session is run on a remote server by having a NX proxy listening to
[T] X traffic and compressing such traffic across a TCP/IP connection to a
[T] proxy peer running on the local client. X traffic is decompressed by
[T] the local proxy and forwarded to the X server.
[T]
[T] Besides compression of X protocol, nxproxy is able to tunnel SMB and
[T] multimedia channels, so it is possible to listen to music from the
[T] remote terminal server or make available local resources of the thin
[T] client to the remote session.
[U] http://www.nomachine.com/developers.php
[A] NoMachine {http://www.nomachine.com}
[M] Rene Rebe <rene@rocklinux.org>
[C] extra/network
[L] GPL
[S] Beta
[V] 1.2.2-6
[P] X -----5---9 484.000
[D] 0 nxproxy-1.2.2-6.tar.gz http://www.nomachine.com/download/nxsources/nxproxy/

Loading…
Cancel
Save