From owner-freebsd-ports Sun Aug 27 23:02:14 1995 Return-Path: ports-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA03495 for ports-outgoing; Sun, 27 Aug 1995 23:02:14 -0700 Received: from silvia.HIP.Berkeley.EDU (silvia.HIP.Berkeley.EDU [136.152.64.181]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id XAA03489 for ; Sun, 27 Aug 1995 23:02:12 -0700 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.6.12/8.6.9) id XAA01369; Sun, 27 Aug 1995 23:00:35 -0700 Date: Sun, 27 Aug 1995 23:00:35 -0700 Message-Id: <199508280600.XAA01369@silvia.HIP.Berkeley.EDU> To: jhs@vector.eikon.e-technik.tu-muenchen.de CC: ports@freebsd.org In-reply-to: <199508260336.FAA29242@vector.eikon.e-technik.tu-muenchen.de> (message from Julian Howard Stacey on Sat, 26 Aug 1995 05:36:27 +0200) Subject: Re: make fetch From: asami@cs.berkeley.edu (Satoshi Asami) Sender: ports-owner@freebsd.org Precedence: bulk * then suddenly started compiling lang/itcl, as below (not what I wanted, * as it stopped using the dial up slip link) Look at it carefully, it is not building itcl, it's building tcl. This is the same thing you've reported before. * ===> itcl-1.5 depends on: /usr/ports/lang/tcl ^^^^ * ===> Verifying build for /usr/ports/lang/tcl ^^^ * >> No MD5 checksum file. * ===> Extracting for tcl-7.3 ^^^^^^^ There is already a hack in bsd.port.mk that allows you to skip these stuff. I think I sent you a mail when I added this, didn' I? I know this is not a really desirable solution. The "real" fix will come (hopefully) sometime later this week when I manage to reorganize the whole "dependency" paradigm. Satoshi ------- revision 1.171 date: 1995/07/11 02:15:35; author: asami; state: Exp; lines: +18 -2 Add IS_DEPENDED_TARGET to change the behavior of a port when you want to do something else than "install". For example, make IS_DEPENDED_TARGET=fetch fetch will fetch the required distfiles including those of the dependencies without actually building and installing dependencies. Also document ECHO_MSG. Requested by: paul Reviewed by: paul, jhs and others