From owner-freebsd-questions@FreeBSD.ORG Wed Jul 20 12:45:19 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2174716A41F for ; Wed, 20 Jul 2005 12:45:19 +0000 (GMT) (envelope-from christopher.illies@molmed.ki.se) Received: from humle.it.ki.se (humle.it.ki.se [130.237.101.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C26543D4C for ; Wed, 20 Jul 2005 12:45:17 +0000 (GMT) (envelope-from christopher.illies@molmed.ki.se) Received: from Klabautermann.ks.se (gate2.ks.se [193.10.63.101]) by humle.it.ki.se (8.13.1/8.13.1) with ESMTP id j6KCjFDX003555; Wed, 20 Jul 2005 14:45:16 +0200 (MEST) Received: by Klabautermann.ks.se (Postfix, from userid 1001) id 51504C173; Wed, 20 Jul 2005 14:49:17 +0200 (CEST) Date: Wed, 20 Jul 2005 14:49:17 +0200 From: Christopher Illies To: Rob Paxon Message-ID: <20050720124916.GA55577@Klabautermann.ks.se> Mail-Followup-To: Rob Paxon , freebsd-questions@freebsd.org References: <2ee9ec8505071919425acd3ac3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2ee9ec8505071919425acd3ac3@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: storing make options / interactive configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jul 2005 12:45:19 -0000 On Tue, Jul 19, 2005 at 10:42:19PM -0400, Rob Paxon wrote: > 3.) Where do you guys prefer to store your make options? I've read > using 'pkgtools.conf', but assume this doesn't effect 'make install', > only portupgrade et al. I use something like the following in my /etc/make.conf: ###################### #port specific options ###################### .if ${.CURDIR:M*/www/mplayer-plugin} WITH_MOZILLA=firefox .endif This way it works well both with 'make install' and portupgrade/ portmanager. I took the idea from the portmanager man page. Christopher