From owner-freebsd-ports Sat Sep 4 19:42:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail-blue.research.att.com (mail-blue.research.att.com [135.207.30.102]) by hub.freebsd.org (Postfix) with ESMTP id 450FF14EB5 for ; Sat, 4 Sep 1999 19:42:43 -0700 (PDT) (envelope-from fenner@research.att.com) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-blue.research.att.com (Postfix) with ESMTP id 4676F4CE15; Sat, 4 Sep 1999 22:40:37 -0400 (EDT) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id WAA22688; Sat, 4 Sep 1999 22:40:36 -0400 (EDT) From: Bill Fenner Received: (from fenner@localhost) by windsor.research.att.com (8.8.8+Sun/8.8.5) id TAA23475; Sat, 4 Sep 1999 19:40:35 -0700 (PDT) Message-Id: <199909050240.TAA23475@windsor.research.att.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII To: jdp@polstra.com Subject: Re: Handling distfiles in multiple subdirs on master site: how? Cc: ports@freebsd.org Date: Sat, 4 Sep 1999 19:40:35 -0700 Versions: dmail (solaris) 2.2d/makemail 2.8u Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The canonical way to do this is kind of ugly: MASTER_SITES= http://m3.polymtl.ca/m3htbin/download/m3/pkg/pm3-1.1.13/ \ http://m3.polymtl.ca/m3htbin/download/m3/pkg/pm3-1.1.13/libs \ http://m3.polymtl.ca/m3htbin/download/m3/pkg/pm3-1.1.13/graphics/gr-libs DISTFILES= set.tgz m3config.tgz ui especially since it causes a bunch of errors to occur before actually fetching the right files. I've been thinking for a while about modifying bsd.port.mk to allow something like MASTER_SITES_1= http://m3.polymtl.ca/m3htbin/download/m3/pkg/pm3-1.1.13/ DISTFILES_1= m3config.tgz MASTER_SITES_2= http://m3.polymtl.ca/m3htbin/download/m3/pkg/pm3-1.1.13/libs DISTFILES_2= set.tgz but it felt like it was getting really hokey really quickly. (I was actually thinking about it in the context of fetching different files from different sets of sites, e.g. like the current xli port does) Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message