From nobody Sat Jun 28 01:00:41 2025 X-Original-To: freebsd-ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4bTYyY6Vrlz60VTq for ; Sat, 28 Jun 2025 01:01:09 +0000 (UTC) (envelope-from jamie@catflap.org) Received: from donotpassgo.dyslexicfish.net (donotpassgo.dyslexicfish.net [IPv6:2001:19f0:7400:8808:12:4:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id 4bTYyX3nkkz3b6f; Sat, 28 Jun 2025 01:01:08 +0000 (UTC) (envelope-from jamie@catflap.org) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of jamie@catflap.org designates 2001:19f0:7400:8808:12:4:0:1 as permitted sender) smtp.mailfrom=jamie@catflap.org; dmarc=pass (policy=none) header.from=catflap.org X-Catflap-Envelope-From: X-Catflap-Envelope-To: des@FreeBSD.org Received: from donotpassgo.dyslexicfish.net (donotpassgo.dyslexicfish.net [209.250.224.51]) by donotpassgo.dyslexicfish.net (8.14.5/8.14.5) with ESMTP id 55S10g5n029596; Sat, 28 Jun 2025 02:00:42 +0100 (BST) (envelope-from jamie@donotpassgo.dyslexicfish.net) Received: (from jamie@localhost) by donotpassgo.dyslexicfish.net (8.14.5/8.14.5/Submit) id 55S10fUt029595; Sat, 28 Jun 2025 02:00:41 +0100 (BST) (envelope-from jamie) From: Jamie Landeg-Jones Message-Id: <202506280100.55S10fUt029595@donotpassgo.dyslexicfish.net> Date: Sat, 28 Jun 2025 02:00:41 +0100 Organization: Dyslexic Fish To: portmaster@bsdforge.com, des@FreeBSD.org, void@f-m.fm Cc: freebsd-ports@FreeBSD.org Subject: Re: is there a system-wide setting for qt version? References: <86a55ufprd.fsf@ltc.des.dev> In-Reply-To: User-Agent: Heirloom mailx 12.4 7/29/08 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-ports@freebsd.org Sender: owner-freebsd-ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (donotpassgo.dyslexicfish.net [209.250.224.51]); Sat, 28 Jun 2025 02:00:42 +0100 (BST) X-Spamd-Result: default: False [1.47 / 15.00]; SUBJECT_ENDS_QUESTION(1.00)[]; NEURAL_SPAM_LONG(1.00)[1.000]; NEURAL_SPAM_MEDIUM(0.96)[0.963]; NEURAL_HAM_SHORT(-0.79)[-0.795]; DMARC_POLICY_ALLOW(-0.50)[catflap.org,none]; R_SPF_ALLOW(-0.20)[+mx:dyslexicfish.net:c]; MIME_GOOD(-0.10)[text/plain]; RCVD_NO_TLS_LAST(0.10)[]; TO_DN_NONE(0.00)[]; ASN(0.00)[asn:20473, ipnet:2001:19f0:7400::/38, country:US]; FREEFALL_USER(0.00)[jamie]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; HAS_ORG_HEADER(0.00)[]; ARC_NA(0.00)[]; FREEMAIL_TO(0.00)[bsdforge.com,FreeBSD.org,f-m.fm]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; MLMMJ_DEST(0.00)[freebsd-ports@FreeBSD.org]; R_DKIM_NA(0.00)[] X-Rspamd-Queue-Id: 4bTYyX3nkkz3b6f X-Spamd-Bar: + Chris wrote: > There is however, another option that effectively gives you the end result > you hope to achieve; make --config-recursive. You will need to repeat this > command until you no longer get config dialogs. Once complete, the results > can only relied upon for your current ports tree. Any git pull/tree He was asking about flavours. If you're using options, You can actually do it globally. I'm not sure if options will work in "voids" use-case, but this is how it's done: # Override specific 'dialog' ports options using the following on the # command-line anywhere below the "/usr/ports/" tree, or in /etc/make.conf # # ${port}_SET_FORCE - List of options to enable (overriding each # specific setting in the ports options file) # ${port}_UNSET_FORCE - List of options to disable (overriding each # specific setting in the ports options file) # # For global overrides, use "OPTIONS_SET_FORCE" and "OPTIONS_UNSET_FORCE" # variables, as appropriate. Don't forget, you probably want to use "+=" # rather than "=" when you define them! # # E.G: # # # x11/xterm: # # ~~~~~~~~~ # x11_xterm_SET_FORCE= PCRE 256COLOR # x11_xterm_UNSET_FORCE= LUIT WCHAR # # Global: # # OPTIONS_SET_FORCE+= IPV6 OPTIMIZED_CFLAGS # # # -- SSL - Enable usage of ca_root_nss wherever possible: # OPTIONS_SET_FORCE+= CA_BUNDLE # # # -- Native Language Support: # OPTIONS_SET_FORCE+= NLS Cheers, Jamie