diff options
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}* +} |