diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2008-05-29 01:56:58 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2008-05-29 01:56:58 +0000 |
commit | b027117cb58fd1d5faaf637b2e4d2e430d2faef0 (patch) | |
tree | 0b83bd1b08a1c1e46a4873ef244b8451774fd18d | |
parent | Add a note that processonelog and processlogs2 are finicky about the (diff) |
net/vnc Xvnc won't run without fonts.alias installed
When building VNC (net/vnc) with the server option, Xvnc
and vncserver and friends are built. Xvnc is the X server
for the VNC session. However, if the server cannot find the
'fixed' font, which is supposed to be in fonts.alias, the
server dies.
PR: ports/118293
Submitted by: Clint Olsen <clint.olsen@gmail.com>
-rw-r--r-- | net/vnc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/vnc/Makefile b/net/vnc/Makefile index ab53c10995ad..becd8bbb4c0b 100644 --- a/net/vnc/Makefile +++ b/net/vnc/Makefile @@ -7,7 +7,7 @@ PORTNAME= vnc PORTVERSION= 4.1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net ipv6 MASTER_SITES= http://www.realvnc.com/:vnc DISTNAME= vnc-4_1_2-unixsrc @@ -49,7 +49,8 @@ DISTFILES+= X430src-1.tgz:x \ X430src-3.tgz:x RUN_DEPENDS+= xauth:${PORTSDIR}/x11/xauth \ - ${LOCALBASE}/lib/X11/fonts/misc/6x13-ISO8859-1.pcf.gz:${X_FONTS_MISC_PORT} + ${LOCALBASE}/lib/X11/fonts/misc/6x13-ISO8859-1.pcf.gz:${X_FONTS_MISC_PORT} \ + ${X11BASE}/lib/X11/fonts/misc/fonts.alias:${X_FONTS_ALIAS_PORT} USE_PERL5= yes |