diff options
author | Ross Burton <ross.burton@intel.com> | 2015-02-27 21:12:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-27 21:15:50 +0000 |
commit | d27319770647b0da86d0a09d1996f01eb8d86496 (patch) | |
tree | a09b1fa6d4b5c5655de91b35ee25bdd4be63f726 /meta/recipes-multimedia/gstreamer/gst-player_git.bb | |
parent | 89bf0bf2ab034e2cc384d8c46fb2a3b061e4ab1a (diff) | |
download | poky-d27319770647b0da86d0a09d1996f01eb8d86496.tar.gz |
gst-player: only depend on -ugly plugins if commercial licenses enabled
gstreamer1.0-plugins-ugly is protected by the "commercial" LICENSE_FLAGS, so
only recommend it if those licenses are enabled.
(From OE-Core rev: 66be46e44d93c8a772acaa68f5d8296c1f9fc793)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-player_git.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-player_git.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-player_git.bb b/meta/recipes-multimedia/gstreamer/gst-player_git.bb index a7df526b82..cd96d775d8 100644 --- a/meta/recipes-multimedia/gstreamer/gst-player_git.bb +++ b/meta/recipes-multimedia/gstreamer/gst-player_git.bb | |||
@@ -28,4 +28,7 @@ do_install_append() { | |||
28 | FILES_${PN}-bin += "${datadir}/applications/*.desktop" | 28 | FILES_${PN}-bin += "${datadir}/applications/*.desktop" |
29 | 29 | ||
30 | RDEPENDS_${PN}-bin = "gstreamer1.0-plugins-base-playback" | 30 | RDEPENDS_${PN}-bin = "gstreamer1.0-plugins-base-playback" |
31 | RRECOMMENDS_${PN}-bin = "gstreamer1.0-plugins-base-meta gstreamer1.0-plugins-good-meta gstreamer1.0-plugins-bad-meta gstreamer1.0-plugins-ugly-meta" | 31 | RRECOMMENDS_${PN}-bin = "gstreamer1.0-plugins-base-meta \ |
32 | gstreamer1.0-plugins-good-meta \ | ||
33 | gstreamer1.0-plugins-bad-meta \ | ||
34 | ${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", "commercial", "gstreamer1.0-plugins-ugly-meta", "", d)}" | ||