From 7b2237ff88d28229d720c13b2965a990c4db8598 Mon Sep 17 00:00:00 2001 From: Edwin Flores Date: Sat, 22 Jun 2013 11:17:32 +1200 Subject: [PATCH] Bug 794282 - Add gstreamer packages to bootstrap scripts r=gps --- python/mozboot/mozboot/centos.py | 2 ++ python/mozboot/mozboot/debian.py | 2 ++ python/mozboot/mozboot/fedora.py | 2 ++ python/mozboot/mozboot/mint.py | 2 ++ python/mozboot/mozboot/ubuntu.py | 2 ++ 5 files changed, 10 insertions(+) diff --git a/python/mozboot/mozboot/centos.py b/python/mozboot/mozboot/centos.py index 36a9e92f6418..fe7fc5949890 100644 --- a/python/mozboot/mozboot/centos.py +++ b/python/mozboot/mozboot/centos.py @@ -27,6 +27,8 @@ class CentOSBootstrapper(BaseBootstrapper): 'curl-devel', 'dbus-glib-devel', 'glibc-static', + 'gstreamer-devel', + 'gstreamer-plugins-base-devel', 'gtk2-devel', 'libstdc++-static', 'libXt-devel', diff --git a/python/mozboot/mozboot/debian.py b/python/mozboot/mozboot/debian.py index 0ad808768426..0249a00b57e0 100644 --- a/python/mozboot/mozboot/debian.py +++ b/python/mozboot/mozboot/debian.py @@ -20,6 +20,8 @@ class DebianBootstrapper(BaseBootstrapper): 'autoconf2.13', 'libasound2-dev', 'libcurl4-openssl-dev', + 'libgstreamer0.10-dev', + 'libgstreamer-plugins-base0.10-dev', 'libiw-dev', 'libnotify-dev', 'libxt-dev', diff --git a/python/mozboot/mozboot/fedora.py b/python/mozboot/mozboot/fedora.py index 7e6494567cba..c52ac8210593 100644 --- a/python/mozboot/mozboot/fedora.py +++ b/python/mozboot/mozboot/fedora.py @@ -23,6 +23,8 @@ class FedoraBootstrapper(BaseBootstrapper): 'alsa-lib-devel', 'autoconf213', 'glibc-static', + 'gstreamer-devel', + 'gstreamer-plugins-base-devel', 'libstdc++-static', 'libXt-devel', 'mercurial', diff --git a/python/mozboot/mozboot/mint.py b/python/mozboot/mozboot/mint.py index 10aa0a7edb94..fc30e13cd803 100644 --- a/python/mozboot/mozboot/mint.py +++ b/python/mozboot/mozboot/mint.py @@ -21,6 +21,8 @@ class MintBootstrapper(BaseBootstrapper): 'mercurial', 'libasound2-dev', 'libcurl4-openssl-dev', + 'libgstreamer0.10-dev', + 'libgstreamer-plugins-base0.10-dev', 'libnotify-dev', 'libiw-dev', 'libxt-dev', diff --git a/python/mozboot/mozboot/ubuntu.py b/python/mozboot/mozboot/ubuntu.py index a2f3ada1e0d8..f428e598758d 100644 --- a/python/mozboot/mozboot/ubuntu.py +++ b/python/mozboot/mozboot/ubuntu.py @@ -20,6 +20,8 @@ class UbuntuBootstrapper(BaseBootstrapper): 'autoconf2.13', 'libasound2-dev', 'libcurl4-openssl-dev', + 'libgstreamer0.10-dev', + 'libgstreamer-plugins-base0.10-dev', 'libiw-dev', 'libnotify-dev', 'libxt-dev',