From owner-freebsd-ports@FreeBSD.ORG Fri Jun 7 20:49:58 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 613F78D5; Fri, 7 Jun 2013 20:49:58 +0000 (UTC) (envelope-from jtrigg@spamcop.net) Received: from argent.heraldsnet.net (argent.heraldsnet.net [69.60.117.17]) by mx1.freebsd.org (Postfix) with ESMTP id CD9991458; Fri, 7 Jun 2013 20:49:57 +0000 (UTC) Received: by argent.heraldsnet.net (Postfix, from userid 11001) id C22065C90; Fri, 7 Jun 2013 16:49:56 -0400 (EDT) Date: Fri, 7 Jun 2013 16:49:56 -0400 From: Jim Trigg To: Chris Rees Subject: Re: Conversion to new options framework over Message-ID: <20130607204956.GF9419@spamcop.net> References: <20130606064509.GI38896@ithaqua.etoilebsd.net> <20130607175537.GE9419@spamcop.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "ports@freebsd.org" , Baptiste Daroussin X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Jun 2013 20:49:58 -0000 On Fri, Jun 07, 2013 at 08:09:30PM +0100, Chris Rees wrote: > On 7 June 2013 18:55, Jim Trigg wrote: > > On Thu, Jun 06, 2013 at 08:45:10AM +0200, Baptiste Daroussin wrote: > >> The compatibility code to parse the WITH/WITHOUT entries in make.conf > >> will be removed in 6 months either. > >> > >> Do not forget to convert your configuration (make.conf, portsconf etc). > >> A reminder will be send a month before the removal of the compatibility > >> code. > > > > It would be useful to provide a pointer to instructions for doing so -- > > what exactly replaces WITH/WITHOUT entries in make.conf? For example, > > my dedicated server has WITHOUT_X11=yes in /etc/make.conf because it's > > headless and doesn't run an X server. What should that become? > > > > I tried googling, and the github doc page's only mention of make.conf is > > to add "WITH_PKGNG=yes". Likewise the FreeBSD Handbook. The wiki > > apparently just points to the Handbook. > > WITH_PKGNG is not a classical OPTION, because it doesn't apply to any > port in particular. I hadn't meant to refer to that as one of the WITH_ options that needed to be changed... > There is some documentation for users at [1], basically you need to > change any WITH_ variables to OPTIONS_SET=, and WITHOUT_ to > OPTIONS_UNSET=. I'll hopefully find some time soon to get it in the > Handbook.... > > For example; > > WITHOUT_X11=yes > WITH_CUPS=yes > WITHOUT_PULSEAUDIO=yes > > becomes > > OPTIONS_SET=CUPS > OPTIONS_UNSET=PULSEAUDIO X11 That works for binary options, but what about version options? E.g., WITH_BDB_VER=47 ... Thanks, Jim