From owner-cvs-share Mon Mar 20 19:57:25 1995 Return-Path: cvs-share-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id TAA05833 for cvs-share-outgoing; Mon, 20 Mar 1995 19:57:25 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id TAA05827; Mon, 20 Mar 1995 19:57:10 -0800 Received: from freefall.cdrom.com (freefall.cdrom.com [192.216.222.4]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id TAA15630; Mon, 20 Mar 1995 19:57:03 -0800 Received: from LOCALHOST (LOCALHOST [127.0.0.1]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id TAA05819; Mon, 20 Mar 1995 19:57:00 -0800 X-Authentication-Warning: freefall.cdrom.com: Host LOCALHOST didn't use HELO protocol To: "Rodney W. Grimes" cc: jkh@freebsd.org (Jordan K. Hubbard), CVS-commiters@time.cdrom.com, cvs-share@time.cdrom.com Subject: Re: cvs commit: src/share/mk bsd.port.mk In-reply-to: Your message of "Mon, 20 Mar 95 18:19:48 PST." <199503210219.SAA01666@gndrsh.aac.dev.com> Date: Mon, 20 Mar 1995 19:56:59 -0800 Message-ID: <5818.795758219@freefall.cdrom.com> From: "Jordan K. Hubbard" Sender: cvs-share-owner@freebsd.org Precedence: bulk > While your in there fussing with this one, one other target that I > would really like to have is a fetch-list target so I can easily > prune out the dead stuff in my /ports/distfile, and or batch up > a pile of ncftp's while I sleep to get the ones I don't have and > want. Ok, done. As of the next sup update, make fetch-list ECHO_MSG="echo > /dev/null" Will generate something like: ncftp -N ftp://gatekeeper.dec.com/pub/DEC/magic/6.4/irsim-9.2.tar.Z ||echo irsim-9.2.tar.Z not fetched ncftp -N ftp://gatekeeper.dec.com/pub/DEC/magic/6.4/magic-6.4.4.tar.Z ||echo magic-6.4.4.tar.Z not fetched ncftp -N ftp://pluto.medizin.uni-ulm.de/pub/pcb-1.2/pcb-1.2.patch_02.tar.gz ||echo pcb-1.2.patch_02.tar.gz not fetched ncftp -N ftp://ftp.kiae.su/unix/comm/ecu-3.33.cpio.Z ||echo ecu-3.33.cpio.Z not fetched ncftp -N ftp://sgi.com/sgi/fax/source/flexfax-v2.3beta036special-tar.gz ||echo flexfax-v2.3beta036special-tar.gz not fetched ... And so on. Things that override their fetch targets won't quite work, but it's a start! Jordan