mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
network/x11vnc: Updated for version 0.9.12.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
d9c3239d6a
commit
34827221b9
3 changed files with 20 additions and 19 deletions
|
@ -7,13 +7,13 @@
|
|||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
x11vnc: x11vnc (VNC server for real X displays)
|
||||
x11vnc:
|
||||
x11vnc: x11vnc allows one to view remotely and interact with real X
|
||||
x11vnc: displays (i.e. a display corresponding to a physical monitor,
|
||||
x11vnc: keyboard, and mouse) with any VNC viewer.
|
||||
x11vnc:
|
||||
x11vnc: It has built-in SSL encryption and authentication, UNIX account
|
||||
x11vnc:
|
||||
x11vnc: x11vnc allows one to view remotely and interact with real X
|
||||
x11vnc: displays (i.e. a display corresponding to a physical monitor,
|
||||
x11vnc: keyboard, and mouse) with any VNC viewer.
|
||||
x11vnc:
|
||||
x11vnc: It has built-in SSL encryption and authentication, UNIX account
|
||||
x11vnc: and password support, server-side scaling, single port HTTPS and VNC,
|
||||
x11vnc: mDNS service advertising, and TightVNC and UltraVNC file-transfer.
|
||||
x11vnc: mDNS service advertising, and TightVNC and UltraVNC file-transfer.
|
||||
x11vnc:
|
||||
x11vnc:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
# Slackbuild for x11vnc.
|
||||
# Original script for version 0.9.3 10/11/2007
|
||||
|
@ -6,9 +6,9 @@
|
|||
# Updated for Slackware64 and version 0.9.7 28/05/2009
|
||||
# Updated for version 0.9.8 22/11/2009
|
||||
# Updated for version 0.9.10 23/05/2010
|
||||
# Updated for version 0.9.12 30/04/2011 Thanks to crocket.
|
||||
|
||||
# Copyright 2009 Pierre Cazenave <pwcazenave {at} gmail [dot] com>
|
||||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
#
|
||||
# All rights reserved.
|
||||
#
|
||||
|
@ -30,16 +30,14 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=x11vnc
|
||||
VERSION=0.9.10
|
||||
VERSION=0.9.12
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -63,6 +61,8 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $TMP/$PRGNAM-$VERSION $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
|
@ -78,7 +78,8 @@ CFLAGS="$SLKCFLAGS" \
|
|||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--disable-static
|
||||
--disable-static \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
@ -89,10 +90,10 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
|||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README ReleaseNotes \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README* TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 0644 {} \;
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 0644 {} +
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="x11vnc"
|
||||
VERSION="0.9.10"
|
||||
VERSION="0.9.12"
|
||||
HOMEPAGE="http://www.karlrunge.com/x11vnc/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/libvncserver/x11vnc-0.9.10.tar.gz"
|
||||
MD5SUM="691902f477bdcaa7ee77cc4ecc43a639"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/project/libvncserver/x11vnc/0.9.12/x11vnc-0.9.12.tar.gz"
|
||||
MD5SUM="1498a68d02aa7b6c97bf746c073c8d00"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Pierre Cazenave"
|
||||
|
|
Loading…
Reference in a new issue