067eeb231c
all: - supply manual pages Xvnc: - fixed crash in the font server code - fixed blocking I/O problem which led to easy denial-of-service attacks via built-in HTTP server - fixed memory alignment problem in Raw encoder, for systems with strict alignment constraints - support libwrap for server access control - rely upon system zlib instead of shipping own copy - reset compression level & JPEG image quality on reading client's encoding list - allow applet parameters to be specified in URL request to the HTTP server vncpasswd: - work correctly if a filename is given vncserver: - default depth is 24 instead of 8 - attempt restart once if failed first time due to font path lossage - removed 2 second startup delay - allow users to keep vnc directories in /tmp - work correctly if $XAUTHORITY is not set
56 lines
1.8 KiB
Makefile
56 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2002/10/20 14:33:53 lukem Exp $
|
|
#
|
|
|
|
DISTNAME= tightvnc-1.2.6
|
|
CATEGORIES= net x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vnc-tight/} \
|
|
ftp://ftp.uk.research.att.com/pub/vnc/dist/
|
|
DISTFILES= tightvnc-1.2.6_unixsrc.tar.bz2 \
|
|
vnc-3.3.2r2_doc.tgz
|
|
|
|
MAINTAINER= mycroft@netbsd.org
|
|
HOMEPAGE= http://www.tightvnc.com/
|
|
COMMENT= Display X and Win32 desktops on remote X/Win32/Java displays
|
|
|
|
CONFLICTS= vnc-[0-9]*
|
|
|
|
CRYPTO= yes
|
|
USE_BUILDLINK2= yes
|
|
USE_IMAKE= yes
|
|
NO_INSTALL_MANPAGES= yes
|
|
USE_PERL5= yes
|
|
|
|
WRKSRC= ${WRKDIR}/vnc_unixsrc
|
|
|
|
ALL_TARGET= World
|
|
|
|
# We have to frob a few things, and we want our own permissions, so it's easier
|
|
# to do the install ourselves.
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/Xvnc/programs/Xserver/Xvnc \
|
|
${PREFIX}/bin/Xvnc
|
|
${INSTALL_MAN} ${WRKSRC}/Xvnc/programs/Xserver/Xvnc.man \
|
|
${PREFIX}/man/man1/Xvnc.1
|
|
${INSTALL_PROGRAM} ${WRKSRC}/vncconnect/vncconnect \
|
|
${PREFIX}/bin/vncconnect
|
|
${INSTALL_MAN} ${WRKSRC}/vncconnect/vncconnect.man \
|
|
${PREFIX}/man/man1/vncconnect.1
|
|
${INSTALL_PROGRAM} ${WRKSRC}/vncpasswd/vncpasswd \
|
|
${PREFIX}/bin/vncpasswd
|
|
${INSTALL_MAN} ${WRKSRC}/vncpasswd/vncpasswd.man \
|
|
${PREFIX}/man/man1/vncpasswd.1
|
|
${SED} -e 's|/usr/local/vnc/classes|${X11PREFIX}/share/vnc/classes|g' \
|
|
-e 's|/usr/bin/perl|${PERL5}|g' \
|
|
< ${WRKSRC}/vncserver \
|
|
> ${WRKSRC}/vncserver.local
|
|
${INSTALL_SCRIPT} ${WRKSRC}/vncserver.local ${PREFIX}/bin/vncserver
|
|
${INSTALL_MAN} ${WRKSRC}/vncserver.man \
|
|
${PREFIX}/man/man1/vncserver.1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/vnc
|
|
cd ${WRKDIR} && \
|
|
${INSTALL_DATA} *.GIF *.css *.gif *.jpg *.htm *.html *.pdf \
|
|
${PREFIX}/share/doc/vnc
|
|
|
|
.include "../../devel/zlib/buildlink2.mk"
|
|
.include "../../graphics/jpeg/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|