Date: Sat, 3 Aug 2002 23:01:38 +0200 From: Erik Trulsson <ertr1013@student.uu.se> 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> In-Reply-To: <20020803201531.76405.qmail@web10802.mail.yahoo.com> References: <20020803201531.76405.qmail@web10802.mail.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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. -- <Insert your favourite quote here.> Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020803210136.GA34800>