From owner-freebsd-ports@FreeBSD.ORG Mon Jun 14 23:53:41 2004 Return-Path: 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 5E9E716A4CE for ; Mon, 14 Jun 2004 23:53:41 +0000 (GMT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3C4643D54 for ; Mon, 14 Jun 2004 23:53:40 +0000 (GMT) (envelope-from kutulu@kutulu.org) Received: from wombat.jungle (wombat.jungle [192.168.69.3]) by basement.kutulu.org (Postfix) with ESMTP id 20CB2A90E; Mon, 14 Jun 2004 19:53:19 -0400 (EDT) Received: by wombat.jungle (Postfix, from userid 1001) id AED2EB878; Mon, 14 Jun 2004 19:53:19 -0400 (EDT) Date: Mon, 14 Jun 2004 19:53:19 -0400 From: Michael Edenfield To: pbdlists@pinboard.com, freebsd-ports@freebsd.org Message-ID: <20040614235319.GA1859@wombat.jungle> Mail-Followup-To: pbdlists@pinboard.com, freebsd-ports@freebsd.org References: <20040614224308.A39347@pinboard.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <20040614224308.A39347@pinboard.com> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.6i Subject: Re: RUN_DEPENDS with environment X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jun 2004 23:53:41 -0000 * pbdlists@pinboard.com [040614 19:15]: > The user should not need to know about these settings, so I want to set > these in the Makefile for my port, before the bind84 port is > automatically installed, but I just can't figure out how to do this. Just > setting them in my own Makefile does not do the trick, neither does > something like the following work: >=20 > pre-fetch: > export PORT_REPLACES_BASE_BIND8=3Dyes > export PORT_REPLACES_BASE_BIND8_INCLUDES=3Dyes >=20 > Has anybody done this before and found a workable solution? >=20 Change the .MAKEFLAGS variable to include -D=3Dyes before the make runs for those ports. The new value of that variable should get stuck into the MAKEFLAGS env. var for any child make invocations to pick up. --Mike