svn commit: r447413 - head/Mk/Scripts

Koop Mast kwm at FreeBSD.org
Sat Aug 5 22:07:46 UTC 2017


Author: kwm
Date: Sat Aug  5 22:07:45 2017
New Revision: 447413
URL: https://svnweb.freebsd.org/changeset/ports/447413

Log:
  Add gstreamer 0.10 and 1.0 hints to the qa script.
  
  Approved by:	portmgr (bapt@)
  Differential Revision:	https://reviews.freebsd.org/D11610

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Sat Aug  5 21:14:58 2017	(r447412)
+++ head/Mk/Scripts/qa.sh	Sat Aug  5 22:07:45 2017	(r447413)
@@ -527,6 +527,14 @@ proxydeps_suggest_uses() {
 	elif [ ${pkg} = "x11/kf5-plasma-framework" ]; then warn "you need to use USE_KDE+=plasma-framework"
 	elif expr ${pkg} : '.*/kf5-.*' > /dev/null; then
 		warn "you need USE_KDE+=$(echo ${pkg} | sed -E 's|.*/kf5-k||')"
+	# GStreamer 0.10
+	elif [ ${pkg} = "multimedia/gstreamer" ]; then warn "you need to use USE_GSTREAMER+=yes"
+	elif [ ${pkg} = "multimedia/gstreamer-plugins" ]; then warn "you need to use USE_GSTREAMER+=yes"
+	elif [ ${pkg} = "multimedia/gstreamer-plugins-bad" ]; then warn "you need to use USE_GSTREAMER+=bad"
+	# GStreamer 1
+	elif [ ${pkg} = "multimedia/gstreamer1" ]; then warn "you need to use USE_GSTREAMER1+=yes"
+	elif [ ${pkg} = "multimedia/gstreamer1-plugins" ]; then warn "you need to use USE_GSTREAMER1+=yes"
+	elif [ ${pkg} = "multimedia/gstreamer1-plugins-bad" ]; then warn "you need to use USE_GSTREAMER1+=bad"
 	# sdl-related
 	elif [ ${pkg} = 'devel/sdl12' ]; then
 		warn "you need USE_SDL+=sdl"


More information about the svn-ports-all mailing list