diff options
author | tnut <thierryn1 at hispeed dot ch> | 2009-11-10 20:55:47 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2009-11-10 20:55:47 +0100 |
commit | 1f4bbcbdb81f54e00f89ecfa1b51a0bef62d9eba (patch) | |
tree | c8b773468f3de8726316c42402a76165a76ee2e5 /extra/tightvnc-viewer | |
parent | 7448032bb12250449c7f0cf9470c7abc27295531 (diff) | |
parent | 52166ff5da6ba05cda6b3b07bc234271d63d2472 (diff) | |
download | nutyx-extra-1f4bbcbdb81f54e00f89ecfa1b51a0bef62d9eba.tar.gz nutyx-extra-1f4bbcbdb81f54e00f89ecfa1b51a0bef62d9eba.tar.bz2 nutyx-extra-1f4bbcbdb81f54e00f89ecfa1b51a0bef62d9eba.tar.xz nutyx-extra-1f4bbcbdb81f54e00f89ecfa1b51a0bef62d9eba.zip |
Merge commit 'guy2009/master'
Diffstat (limited to 'extra/tightvnc-viewer')
-rw-r--r-- | extra/tightvnc-viewer/.footprint | 10 | ||||
-rw-r--r-- | extra/tightvnc-viewer/.md5sum | 1 | ||||
-rw-r--r-- | extra/tightvnc-viewer/Pkgfile | 22 |
3 files changed, 33 insertions, 0 deletions
diff --git a/extra/tightvnc-viewer/.footprint b/extra/tightvnc-viewer/.footprint new file mode 100644 index 000000000..25959750a --- /dev/null +++ b/extra/tightvnc-viewer/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-r-xr-xr-x root/root usr/bin/vncconnect +-r-xr-xr-x root/root usr/bin/vncpasswd +-r-xr-xr-x root/root usr/bin/vncviewer +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/vncconnect.1.gz +-rw-r--r-- root/root usr/man/man1/vncpasswd.1.gz +-rw-r--r-- root/root usr/man/man1/vncviewer.1.gz diff --git a/extra/tightvnc-viewer/.md5sum b/extra/tightvnc-viewer/.md5sum new file mode 100644 index 000000000..116b9a9c3 --- /dev/null +++ b/extra/tightvnc-viewer/.md5sum @@ -0,0 +1 @@ +49a0748ea52793f2e3069e05af28f716 tightvnc-1.3.9_unixsrc.tar.bz2 diff --git a/extra/tightvnc-viewer/Pkgfile b/extra/tightvnc-viewer/Pkgfile new file mode 100644 index 000000000..13463dde6 --- /dev/null +++ b/extra/tightvnc-viewer/Pkgfile @@ -0,0 +1,22 @@ +# Description: A free remote control software package derived from VNC (client) +# URL: http://www.tightvnc.com/ +# Maintainer: Matt Housh, jaeger at morpheus dot net +# Depends on: xorg, xorg-imake, xorg-gccmakedep + +name=tightvnc-viewer +version=1.3.9 +release=1 +source=(http://dl.sourceforge.net/sourceforge/vnc-tight/tightvnc-${version}_unixsrc.tar.bz2) + +build() { + cd vnc_unixsrc + xmkmf -a + make Makefiles + find . -name "Makefile" -exec \ + sed -i -e 's/-lXp$//g' '{}' \; + make depend + make all + mkdir -p $PKG/usr/{bin,man/man1} + ./vncinstall $PKG/usr/bin $PKG/usr/man + rm -f $PKG/usr/bin/vncserver $PKG/usr/man/man1/{Xvnc,vncserver}* +} |