aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorJason E. Hale <jhale@FreeBSD.org>2023-08-21 13:57:29 +0000
committerJason E. Hale <jhale@FreeBSD.org>2023-08-21 14:24:20 +0000
commit3b2ff2ef194c83835fe7dc6618427b8fd50ea31d (patch)
treec504987094f991f628e27ba6f0460c78d2153fc1 /CHANGES
parent944e00e9f40f573dc08548e56398332475746a44 (diff)
downloadports-3b2ff2ef194c83835fe7dc6618427b8fd50ea31d.tar.gz
ports-3b2ff2ef194c83835fe7dc6618427b8fd50ea31d.zip
Mk: Add Uses/ebur128.mk
Handles dependencies for the chosen implementation of libebur128 set via DEFAULT_VERSIONS: audio/libebur128 (legacy) and audio/ebur128 (rust). PR: 272843
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 3a28ea34e815..2f6c9a61499d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,25 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20230821:
+AUTHOR: jhale@FreeBSD.org
+
+ A new uses 'ebur128' has been added to transparently depend on the
+ proper variant of 'rust' or 'legacy' depending on the default version
+ set by the user.
+
+ Usage: USES=ebur128:ARGS
+ Valid ARGS: <none>, build, lib, run, test
+ <none>: (default) same as lib
+ build: add BUILD_DEPENDS
+ lib: add LIB_DEPENDS
+ run: add RUN_DEPENDS
+ test: add TEST_DEPENDS
+
+ If you prefer not to use rust, add the following to your make.conf:
+
+ DEFAULT_VERSIONS+=ebur128=legacy
+
20230728:
AUTHOR: andrew@tao11.riddles.org.uk, fuz@FreeBSD.org