Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Aug 1996 03:46:10 -0700 (PDT)
From:      asami@cs.berkeley.edu (Satoshi Asami)
To:        peter@freefall.freebsd.org
Cc:        CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-ports@freefall.freebsd.org
Subject:   Re: cvs commit:  ports/net/zircon Makefile ports/net/zircon/files md5 ports/net/zircon/pkg DESCR PLIST ports/net/zircon/patches patch-ac patch-aa patch-ab
Message-ID:  <199608171046.DAA00945@baloon.mimi.com>
In-Reply-To: <199608161225.FAA28251@freefall.freebsd.org> (message from Peter Wemm on Fri, 16 Aug 1996 05:25:01 -0700 (PDT))

next in thread | previous in thread | raw e-mail | index | archive | help
 *   Update zircon port from 1.15p11 to 1.17p3.  This version uses the native
 *   comms tools in tcl7.5/tk4.1 rather than the crufty old tcl7.3/tk3.6/tclDP.
 *   
 *   It can still be (I think) configured to use the older libraries, but I
 *   dont want to install them to test it. :-]

Thanks, but I don't think this code is going to work:

===
.if defined(USE_DPWISH) && ${USE_DPWISH} == YES && exists(${PREFIX}/bin/dpwish)
BUILD_DEPENDS=  dpwish:${PORTSDIR}/net/tclDP
RUN_DEPENDS=    dpwish:${PORTSDIR}/net/tclDP
MAKE_ENV=       WISH=${PREFIX}/bin/dpwish
.else
BUILD_DEPENDS=  wish4.1:${PORTSDIR}/x11/tk41
RUN_DEPENDS=    wish4.1:${PORTSDIR}/x11/tk41
MAKE_ENV=       WISH=${PREFIX}/bin/wish4.1
.endif
===

Since PREFIX is usually not defined at this point, the exists(...)
will always evaluate to false.  (If you are depending on the tclDP
port, why do you want it to exist first anyway? :)

By the way, I tried to build this over the network and got:

===
## make
Checksums OK.
===>  Building for zircon-1.17p3
cd lib ;  echo 'auto_mkindex . *.tcl ; exit' | /usr/local/bin/wish4.1 -notk
X11 connection rejected because of wrong authentication.
===

Can you add an IS_INTERACTIVE if you can't fix it not to require an X
connection?

Thanks
Satoshi



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199608171046.DAA00945>