aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2022-04-29 04:52:18 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2022-04-30 08:03:20 +0000
commitca3f925d6eb53ff27e2a49775f6d33f52a587ae4 (patch)
tree8330d02f36a17f334c0d38f6741d0d042f6d6f38 /CHANGES
parentdc8bd44c128467d5b76d40478fa87da62d56d35d (diff)
framework: convert bsd.gstreamer.mk to Uses/gstreamer.mk
- convert bsd.gstreamer.mk to Uses/gstreamer.mk - convert ports tree to make use of USES=gstreamer - remove duplicate dependency lines from the tree Differential Revision: https://reviews.freebsd.org/D35097
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index e96e1b0d4a0d..6a40475bf8d5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,28 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20220430:
+AUTHOR: tcberner@FreeBSD.org
+
+ A new USES has been added to handle dependency on gstreamer.
+
+ Instead of writing
+
+ USE_GSTREAMER1=[list of components]
+
+ you now have to write
+
+ USES=gstreamer
+ USE_GSTREAMER=[list of components]
+
+ If your port previously set just
+
+ USE_GSTREAMER=yes
+
+ this now is simply
+
+ USES=gstreamer
+
20220415:
AUTHOR: amdmi3@FreeBSD.org