From owner-freebsd-questions Sat Aug 3 14: 1:54 2002 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 8E59637B400 for ; Sat, 3 Aug 2002 14:01:52 -0700 (PDT) Received: from mailc.telia.com (mailc.telia.com [194.22.190.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70F5F43E42 for ; Sat, 3 Aug 2002 14:01:51 -0700 (PDT) (envelope-from erikt@midgard.homeip.net) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailc.telia.com (8.12.5/8.12.5) with ESMTP id g73L1nxZ018262 for ; Sat, 3 Aug 2002 23:01:50 +0200 (CEST) X-Original-Recipient: Received: from falcon.midgard.homeip.net (h62n2fls20o913.telia.com [212.181.163.62]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id XAA07594 for ; Sat, 3 Aug 2002 23:01:45 +0200 (CEST) Received: (qmail 36689 invoked by uid 1001); 3 Aug 2002 21:01:39 -0000 Date: Sat, 3 Aug 2002 23:01:38 +0200 From: Erik Trulsson To: cd9@buffalo.edu Cc: freebsd-questions@freebsd.org Subject: Re: How to adjust Makefile vars in ports? Message-ID: <20020803210136.GA34800@falcon.midgard.homeip.net> Mail-Followup-To: cd9@buffalo.edu, freebsd-questions@freebsd.org References: <20020803201531.76405.qmail@web10802.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020803201531.76405.qmail@web10802.mail.yahoo.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Aug 03, 2002 at 01:15:31PM -0700, The Sapphire Cat wrote: > I have GNOME installed on my system, but I've gone back to fvwm2. I > want to rebuild gaim to not use the panel UI, as I no longer have a > panel. I've tried the following options: > > - Change /usr/ports/net/gaim/Makefile to read "WANT_GNOME = no" > - use make WANT_GNOME=no > - set $WANT_GNOME to no, then use make -E WANT_GNOME WANT_GNOME=no > - set $WANT_GNOME to no, then use make -e > - use gmake > > Kernel and userland stuff is 4.6-STABLE; ports tree is 4.6-RELEASE. Is > this broken in that particular port version, or is there some secret > way of doing it right? Try 'make WITHOUT_GNOME=yes' For most make options all that matters is if they are defined or not. The value they have is ignored. Thus WANT_GNOME=yes and WANT_GNOME=no and WANT_GNOME=foo are all equivalent. Most (all?) of the WANT_FOO options can be overridden by WITH_FOO or WITHOUT_FOO. More information can be found by reading the makefiles in /usr/ports/Mk/ and in the ports(7) manpage. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message