8f5afb12e7
x11vnc allows one to remotely view and interact with real X displays (i.e. a display corresponding to a physical monitor, keyboard, and mouse) with any VNC viewer. In this way it plays the role for Unix/X11 that WinVNC plays for Windows. from Craig Barraclough <craigba at creative.com.au>
33 lines
692 B
Makefile
33 lines
692 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/02 21:21:23 sturm Exp $
|
|
|
|
COMMENT= "VNC server for real X displays"
|
|
|
|
VERSION= 0.6.2
|
|
DISTNAME= x11vnc-${VERSION}
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.karlrunge.com/x11vnc/
|
|
|
|
MAINTAINER= Craig Barraclough <craigba@creative.com.au>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= X11 Xext Xinerama Xtst c pthread z
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libvncserver/}
|
|
|
|
USE_X11= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=--with-x
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/x11vnc
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/x11vnc
|
|
|
|
.include <bsd.port.mk>
|