aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Piotrowski <0mp@FreeBSD.org>2021-01-16 23:10:44 +0000
committerMateusz Piotrowski <0mp@FreeBSD.org>2021-04-17 20:17:38 +0000
commitc0e41dff700cf8a4a06000f19bd2342cd6fe284d (patch)
treef0776f9e61e3184c59ac65b938b74949fd103a59
parent8403170b3d39326f836bc999534fe8c4d41cda11 (diff)
downloadsrc-c0e41dff700cf8a4a06000f19bd2342cd6fe284d.tar.gz
src-c0e41dff700cf8a4a06000f19bd2342cd6fe284d.zip
ports.7: Add an example of setting variables for selected ports
Reviewed by: crees MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D28202
-rw-r--r--share/man/man7/ports.714
1 files changed, 13 insertions, 1 deletions
diff --git a/share/man/man7/ports.7 b/share/man/man7/ports.7
index c3dbbc680050..64db0e669b1d 100644
--- a/share/man/man7/ports.7
+++ b/share/man/man7/ports.7
@@ -25,7 +25,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd April 6, 2021
+.Dd April 17, 2021
.Dt PORTS 7
.Os
.Sh NAME
@@ -645,6 +645,18 @@ shells_zsh_UNSET= DOCS EXAMPLES
.Pp
These and other options-related variables are documented in
.Pa /usr/ports/Mk/bsd.options.mk .
+.It Sy Example 5\&: No Setting Xr make 1 Variables for Specific Ports via Xr make.conf 5
+.Pp
+The following example shows how to set arbitrary
+.Xr make 1
+variables only specific ports:
+.Bd -literal -offset 2n
+# Set DISABLE_MAKE_JOBS for the lang/rust port:
+\&.if ${.CURDIR:M*/lang/rust}
+DISABLE_MAKE_JOBS= yes
+TRYBROKEN= yes
+\&.endif
+.Ed
.El
.Sh SEE ALSO
.Xr make 1 ,