diff options
author | osa <osa@FreeBSD.org> | 2003-07-04 23:01:16 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-07-04 23:01:16 +0800 |
commit | 44a1880cf7eae5229c720e476935ed029fb5de74 (patch) | |
tree | fce2cb3bc8d4d8fdc57e6f74e3289d8433604b88 /net/vnc | |
parent | fe3223ea0d09708a1a7425ed5690d954e3957a55 (diff) | |
download | freebsd-ports-gnome-44a1880cf7eae5229c720e476935ed029fb5de74.tar.gz freebsd-ports-gnome-44a1880cf7eae5229c720e476935ed029fb5de74.tar.zst freebsd-ports-gnome-44a1880cf7eae5229c720e476935ed029fb5de74.zip |
o Add RUN_DEPEND on XFree86-4-clients, for the xauth binary, if
installing server components. Reported by Albert Kinderman
<albert.kinderman@csun.edu> and Peter van Dijk <peter@dataloss.nl>
o Add RUN_DEPEND on XFree86-4-fontDefaultBitmaps, for a 'fixed'
font, if installing server components. Reported by Albert
Kinderman <albert.kinderman@csun.edu> and Peter van Dijk
<peter@dataloss.nl>
o Print a short message in pre-build to note the WITHOUT_SERVER
knob.
o Bump PORTREVISION
PR: 54017
Patch submitted by: James Raftery <james@now.ie>
Approved by: fjoe (mentor) (implicit)
Diffstat (limited to 'net/vnc')
-rw-r--r-- | net/vnc/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net/vnc/Makefile b/net/vnc/Makefile index d3f1550979fa..5625ccd2ab28 100644 --- a/net/vnc/Makefile +++ b/net/vnc/Makefile @@ -7,6 +7,7 @@ PORTNAME= vnc PORTVERSION= 3.3.7 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.realvnc.com/dist/ DISTNAME= ${PORTNAME}-${PORTVERSION}-unixsrc @@ -31,9 +32,20 @@ MAN1= vncviewer.1 \ MAN1+= Xvnc.1 \ vncserver.1 +RUN_DEPENDS+= xauth:${PORTSDIR}/x11/XFree86-4-clients \ +${X11BASE}/lib/X11/fonts/misc/6x13-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/XFree86-4-fontDefaultBitmaps + USE_PERL5_RUN= yes .endif +pre-build: +.if !defined(WITHOUT_SERVER) + @${ECHO_MSG} "NOTE:" + @${ECHO_MSG} " Use 'make -DWITHOUT_SERVER ...' if you do not wish to" + @${ECHO_MSG} " compile/install the VNC server components." + @${ECHO_MSG} "" +.endif + post-build: .if defined(WITHOUT_SERVER) @${ECHO_MSG} "Skipping build of VNC server." |