From owner-freebsd-ports@FreeBSD.ORG Mon Aug 21 21:51:47 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FB2316A4E0 for ; Mon, 21 Aug 2006 21:51:47 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (host-212-158-207-124.bulldogdsl.com [212.158.207.124]) by mx1.FreeBSD.org (Postfix) with SMTP id 8FA5343D4C for ; Mon, 21 Aug 2006 21:51:46 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:4bd0:201e::fe03]) by dione.picobyte.net (Postfix) with ESMTP; Mon, 21 Aug 2006 22:51:44 +0100 (BST) Date: Mon, 21 Aug 2006 22:51:44 +0100 From: Shaun Amott To: Jona Joachim Message-ID: <20060821215144.GA2649@picobyte.net> Mail-Followup-To: Jona Joachim , freebsd-ports@FreeBSD.org References: <44EA14CA.7070604@web.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <44EA14CA.7070604@web.de> User-Agent: Mutt/1.5.11 (FreeBSD i386) Cc: freebsd-ports@FreeBSD.org Subject: Re: Troubles with MASTER_SITES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 21:51:47 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 21, 2006 at 10:17:14PM +0200, Jona Joachim wrote: >=20 > I must be missing something obvious with MASTER_SITES. > If you consider the devel/tigcc port which I maintain you can read: >=20 > MASTER_SITES=3D ${MASTER_SITE_GCC}:gcc \ > ${MASTER_SITE_GNU}:gas \ The problem is that you are taking the value of ${MASTER_SITE_xxx} and sticking the site-group on the end - i.e., on the last site in either group. To fix this, change the above lines to: MASTER_SITES=3D ${MASTER_SITE_GCC:S/$/:gcc/} \ ${MASTER_SITE_GNU:S/$/:gas/} \ This will attach :gcc and :gas to the end of each individual site. --=20 Shaun Amott [ PGP: 0x6B387A9A ] Scientia Est Potentia. --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFE6irwkmhdCGs4epoRAnxtAJoDMrw5bczHSJCScIBVZOvYyJUpmwCeLH1t z9AMgqMfJ7EiRZ43G3B+Nxk= =eTCq -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO--