Bug 562629 – gnome-shell-build-setup.sh: more Ubuntu dependencies

Improve gnome-build-setup.sh by:
 - Adding more required dependencies
 - Fixing message when $reqs has multiple words
 - Remove stray + from file
Patch from RainCT (Siegfried Gevatter).

svn path=/trunk/; revision=93
This commit is contained in:
Owen Taylor 2008-11-29 21:44:17 +00:00
parent e0f713785f
commit 097346766e

View File

@ -50,21 +50,19 @@ fi
system=`lsb_release -is`
if test x$system = xUbuntu -o x$system = xDebian ; then
reqd=""
for pkg in libgconf2-dev git-core gtk-doc-tools libgl1-mesa-dev \
mesa-common-dev libffi-dev libgtk2.0-dev flex build-essential \
curl xulrunner-1.9-dev; do
if dpkg --status $pkg > /dev/null 2>&1; then : ; else
for pkg in build-essential automake gnome-common flex bison curl \
git-core subversion gtk-doc-tools mesa-common-dev xulrunner-1.9-dev \
libdbus-glib-1-dev libffi-dev libgconf2-dev libgtk2.0-dev libgl1-mesa-dev \
libgstreamer-plugins-base0.10-dev python2.5-dev; do
if ! dpkg --status $pkg > /dev/null 2>&1; then
reqd="$pkg $reqd"
fi
done
if test ! x$reqd = x; then
echo "Please run, as root, 'apt-get install $reqd' before building gnome-shell."
if test ! "x$reqd" = x; then
echo "Please run 'sudo apt-get install $reqd' before building gnome-shell."
echo
fi
fi
+
echo "Done."
echo "Done."