From owner-cvs-ports Sat Aug 17 03:46:49 1996 Return-Path: owner-cvs-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA15529 for cvs-ports-outgoing; Sat, 17 Aug 1996 03:46:49 -0700 (PDT) Received: from dfw-ix9.ix.netcom.com (dfw-ix9.ix.netcom.com [206.214.98.9]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id DAA15524; Sat, 17 Aug 1996 03:46:45 -0700 (PDT) Received: from baloon.mimi.com (sjx-ca55-21.ix.netcom.com [206.214.106.117]) by dfw-ix9.ix.netcom.com (8.6.13/8.6.12) with ESMTP id DAA26486; Sat, 17 Aug 1996 03:46:12 -0700 Received: (from asami@localhost) by baloon.mimi.com (8.7.5/8.6.12) id DAA00945; Sat, 17 Aug 1996 03:46:10 -0700 (PDT) Date: Sat, 17 Aug 1996 03:46:10 -0700 (PDT) Message-Id: <199608171046.DAA00945@baloon.mimi.com> To: peter@freefall.freebsd.org CC: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-ports@freefall.freebsd.org In-reply-to: <199608161225.FAA28251@freefall.freebsd.org> (message from Peter Wemm on Fri, 16 Aug 1996 05:25:01 -0700 (PDT)) 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 From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * 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