x11vnc: Initial commit (version 0.9.4)

This commit is contained in:
Alan Mizrahi 2008-05-15 08:58:37 -04:30
parent 2cd82fdf97
commit 0db7e8c397
3 changed files with 27 additions and 0 deletions

6
x11vnc/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/x11vnc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/x11vnc.1.gz

1
x11vnc/.md5sum Normal file
View File

@ -0,0 +1 @@
b036b8dfcacbf759b9ee12d1972be202 x11vnc-0.9.4.tar.gz

20
x11vnc/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: VNC server for real X displays
# URL: http://www.karlrunge.com/x11vnc/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: xorg-libx11
name=x11vnc
version=0.9.4
release=1
source=(http://www.karlrunge.com/x11vnc/x11vnc-$version.tar.gz)
# http: //dl.sourceforge.net/sourceforge/libvncserver/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-nls \
--mandir=$PKG/usr/man
make
make prefix=$PKG/usr install
rm -rf $PKG/usr/share
}