From owner-freebsd-ports Tue Nov 28 07:38:17 1995 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA12581 for ports-outgoing; Tue, 28 Nov 1995 07:38:17 -0800 Received: from mramirez.sy.yale.edu (mramirez.sy.yale.edu [130.132.57.207]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id HAA12570 for ; Tue, 28 Nov 1995 07:38:04 -0800 Received: (from mrami@localhost) by mramirez.sy.yale.edu (8.6.12/8.6.9) id KAA07096; Tue, 28 Nov 1995 10:38:02 -0500 Date: Tue, 28 Nov 1995 10:38:01 -0500 (EST) From: Marc Ramirez Reply-To: mrami@minerva.cis.yale.edu To: Satoshi Asami cc: chuckr@Glue.umd.edu, FreeBSD-ports@freebsd.org Subject: Re: misc/colorls In-Reply-To: <199511280348.TAA25824@forgery.CS.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org Precedence: bulk On Mon, 27 Nov 1995, Satoshi Asami wrote: > * I notice that colorls DEPENDS on ncftp2.2. Is this really necessary? It > * seems a little overkill ... > > Well, it FETCH_DEPENDS on ncftp, which means it is used for fetching > only (i.e., not if you are using the package). And yes it is > necessary, the stock ncftp can't handle the "pack up on-the-fly" > option of wu-ftpd.... :< This works for me wih the old ncftp... # Usage: get hostname filename get() { if [ \! -e `basename $2` ] then ( echo cd `dirname $2`; echo get `basename $2`; echo quit ) \ | ncftp -r -d 15 -V 0 $1 fi } Marc.