From owner-freebsd-ports@FreeBSD.ORG Wed May 10 00:39:44 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 A3EC916A402 for ; Wed, 10 May 2006 00:39:44 +0000 (UTC) (envelope-from fernan@iib.unsam.edu.ar) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7669443D46 for ; Wed, 10 May 2006 00:39:41 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from omega.iib.unsam.edu.ar (omega.iib.unsam.edu.ar [192.168.10.14]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id k4A0eHKq094834; Tue, 9 May 2006 21:40:17 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from omega.iib.unsam.edu.ar (localhost [127.0.0.1]) by omega.iib.unsam.edu.ar (8.13.4/8.13.4) with ESMTP id k4A0dRO7002084; Tue, 9 May 2006 21:39:27 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by omega.iib.unsam.edu.ar (8.13.4/8.13.3/Submit) id k4A0dLjR002083; Tue, 9 May 2006 21:39:21 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: omega.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Tue, 9 May 2006 21:39:21 -0300 From: Fernan Aguero To: Florent Thoumie Message-ID: <20060510003921.GA2074@iib.unsam.edu.ar> Mail-Followup-To: Florent Thoumie , Sideris Michael , Jeremy Chadwick , Ulrich Spoerlein , freebsd-ports@freebsd.org References: <20060508200926.GA6005@daemons.gr> <20060509061026.GA14039@pentarou.parodius.com> <20060509111435.GA1228@roadrunner.aventurien.local> <1147183253.4810.38.camel@mayday.esat.net> <20060509212049.GE1733@iib.unsam.edu.ar> <1147206782.29638.14.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1147206782.29638.14.camel@localhost> User-Agent: Mutt/1.5.11 Cc: Sideris Michael , freebsd-ports@freebsd.org, Ulrich Spoerlein , Jeremy Chadwick Subject: Re: ports structure and improvement suggestions 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: Wed, 10 May 2006 00:39:44 -0000 +----[ Florent Thoumie (09.May.2006 18:36): | | > Now, i see this works fine for WITH_X=yes stuff, but it's | > not working for me with the following case: | > | > x11/xterm: CONFIGURE_ARGS=--disable-bold-color --enable-256-color --enable-tcap-query | > | > or this (now quoted) | > | > x11/xterm: CONFIGURE_ARGS='--disable-bold-color --enable-256-color --enable-tcap-query' | | Refetch the script and use the following format: | | cat/port: VAR="VAL"|VAR2="VAL2 VAL3" | | That should work. | +----] Florent, thanks now for a fast turnaround :) unfortunately, this doesn't work. My /etc/ports.conf: # requires mkconf shell script in ${PATH} # http://people.freebsd.org/~flz/local/mkconf # cat/port: VAR="VAL"|VAR2="VAL2 VAL3" mail/mutt-devel: WITH_MUTT_NCURSES="1"|WITH_MUTT_SIGNATURE_MENU="1" math/gnuplot: WITH_HISTOGRAMS="1" sysutils/screen: WITH_XTERM_256="1" print/ghostscript-gnu: A4="1" textproc/aspell: ASPELL_EN="1"|ASPELL_ES="1" x11/xterm: CONFIGURE_ARGS="--enable-me --and-me" I'm testing this with a simple cd /usr/ports/category/port && make clean For all ports above it works, except for x11/xterm. The problem seems to be the space within the quoted value: the following works: x11/xterm: CONFIGURE_ARGS='--enable-me' but this doesn't: x11/xterm: CONFIGURE_ARGS='--enable-me --and-me' "/etc/make.conf", line 16: Need an operator make: fatal errors encountered -- cannot continue line 16 of my /etc/make.conf is the ${i} within the .for loop Fernan