Subject: Re: option in gnome-base to avoid smb?
To: Greg Troxel <gdt@ir.bbn.com>
From: Roland Illig <rillig@NetBSD.org>
List: tech-pkg
Date: 11/03/2007 18:23:36
Greg Troxel wrote:
> In my pkgsrc tree, I have commented out gnome-vfs-smb from
> meta-pkgs/gnome-base since I don't need it but want the rest of gnome.
> Would it be reasonable to add 'smb' to mk/default/options.description,
> and to gnome-base (defaulting on), so that I could do
> 
> PKG_DEFAULT_OPTIONS-=         smb

There is no "-=" operator in bmake. Use this instead:

PKG_DEFAULT_OPTIONS+=        -smb

Roland