2009-03-10 19:43:01 +03:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2012-02-08 22:39:53 +04:00
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
2009-08-26 00:59:27 +04:00
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2008-11-01 00:45:30 +03:00
|
|
|
# Script to install everything needed to build chromium (well, ideally, anyway)
|
2008-11-03 22:47:36 +03:00
|
|
|
# See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions
|
|
|
|
# and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit
|
2009-02-25 23:51:44 +03:00
|
|
|
|
2010-01-26 21:17:53 +03:00
|
|
|
usage() {
|
|
|
|
echo "Usage: $0 [--options]"
|
|
|
|
echo "Options:"
|
|
|
|
echo "--[no-]syms: enable or disable installation of debugging symbols"
|
2014-11-27 18:45:31 +03:00
|
|
|
echo "--lib32: enable installation of 32-bit libraries, e.g. for V8 snapshot"
|
2012-11-15 05:06:26 +04:00
|
|
|
echo "--[no-]arm: enable or disable installation of arm cross toolchain"
|
2013-02-22 07:49:20 +04:00
|
|
|
echo "--[no-]chromeos-fonts: enable or disable installation of Chrome OS"\
|
|
|
|
"fonts"
|
2014-01-17 01:26:47 +04:00
|
|
|
echo "--[no-]nacl: enable or disable installation of prerequisites for"\
|
|
|
|
"building standalone NaCl and all its toolchains"
|
2012-04-23 08:48:31 +04:00
|
|
|
echo "--no-prompt: silently select standard options/defaults"
|
2013-10-25 20:11:46 +04:00
|
|
|
echo "--quick-check: quickly try to determine if dependencies are installed"
|
|
|
|
echo " (this avoids interactive prompts and sudo commands,"
|
|
|
|
echo " so might not be 100% accurate)"
|
|
|
|
echo "--unsupported: attempt installation even on unsupported systems"
|
2010-01-26 21:17:53 +03:00
|
|
|
echo "Script will prompt interactively if options not given."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2013-05-30 03:11:20 +04:00
|
|
|
# Checks whether a particular package is available in the repos.
|
|
|
|
# USAGE: $ package_exists <package name>
|
|
|
|
package_exists() {
|
|
|
|
apt-cache pkgnames | grep -x "$1" > /dev/null 2>&1
|
|
|
|
}
|
|
|
|
|
2014-01-18 03:59:01 +04:00
|
|
|
# These default to on because (some) bots need them and it keeps things
|
|
|
|
# simple for the bot setup if all bots just run the script in its default
|
|
|
|
# mode. Developers who don't want stuff they don't need installed on their
|
|
|
|
# own workstations can pass --no-arm --no-nacl when running the script.
|
|
|
|
do_inst_arm=1
|
|
|
|
do_inst_nacl=1
|
|
|
|
|
2010-01-26 21:17:53 +03:00
|
|
|
while test "$1" != ""
|
|
|
|
do
|
|
|
|
case "$1" in
|
2011-09-13 03:21:39 +04:00
|
|
|
--syms) do_inst_syms=1;;
|
|
|
|
--no-syms) do_inst_syms=0;;
|
|
|
|
--lib32) do_inst_lib32=1;;
|
2012-11-15 05:06:26 +04:00
|
|
|
--arm) do_inst_arm=1;;
|
|
|
|
--no-arm) do_inst_arm=0;;
|
2013-02-22 07:49:20 +04:00
|
|
|
--chromeos-fonts) do_inst_chromeos_fonts=1;;
|
|
|
|
--no-chromeos-fonts) do_inst_chromeos_fonts=0;;
|
2014-01-17 01:26:47 +04:00
|
|
|
--nacl) do_inst_nacl=1;;
|
|
|
|
--no-nacl) do_inst_nacl=0;;
|
2012-04-23 08:48:31 +04:00
|
|
|
--no-prompt) do_default=1
|
|
|
|
do_quietly="-qq --assume-yes"
|
|
|
|
;;
|
2013-10-25 20:11:46 +04:00
|
|
|
--quick-check) do_quick_check=1;;
|
2013-01-16 02:11:47 +04:00
|
|
|
--unsupported) do_unsupported=1;;
|
2010-01-26 21:17:53 +03:00
|
|
|
*) usage;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2014-11-27 18:45:31 +03:00
|
|
|
if test "$do_inst_arm" = "1"; then
|
|
|
|
do_inst_lib32=1
|
|
|
|
fi
|
|
|
|
|
2014-05-23 00:07:19 +04:00
|
|
|
# Check for lsb_release command in $PATH
|
|
|
|
if ! which lsb_release > /dev/null; then
|
|
|
|
echo "ERROR: lsb_release not found in \$PATH" >&2
|
|
|
|
exit 1;
|
|
|
|
fi
|
2012-11-15 05:06:26 +04:00
|
|
|
|
2014-05-23 00:07:19 +04:00
|
|
|
lsb_release=$(lsb_release --codename --short)
|
2014-12-02 13:46:31 +03:00
|
|
|
ubuntu_codenames="(precise|quantal|raring|saucy|trusty|utopic)"
|
2013-10-25 20:11:46 +04:00
|
|
|
if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then
|
2014-05-23 00:07:19 +04:00
|
|
|
if [[ ! $lsb_release =~ $ubuntu_codenames ]]; then
|
2014-12-02 13:46:31 +03:00
|
|
|
echo "ERROR: Only Ubuntu 12.04 (precise) through 14.10 (utopic) are"\
|
2013-01-16 02:11:47 +04:00
|
|
|
"currently supported" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2008-11-01 00:45:30 +03:00
|
|
|
|
2013-01-16 02:11:47 +04:00
|
|
|
if ! uname -m | egrep -q "i686|x86_64"; then
|
|
|
|
echo "Only x86 architectures are currently supported" >&2
|
|
|
|
exit
|
|
|
|
fi
|
2009-03-10 19:43:01 +03:00
|
|
|
fi
|
|
|
|
|
2013-10-25 20:11:46 +04:00
|
|
|
if [ "x$(id -u)" != x0 ] && [ 0 -eq "${do_quick_check-0}" ]; then
|
2009-03-10 19:43:01 +03:00
|
|
|
echo "Running as non-root user."
|
|
|
|
echo "You might have to enter your password one or more times for 'sudo'."
|
2009-03-11 00:53:08 +03:00
|
|
|
echo
|
2009-03-10 19:43:01 +03:00
|
|
|
fi
|
|
|
|
|
2010-06-08 02:01:57 +04:00
|
|
|
# Packages needed for chromeos only
|
2014-08-20 05:57:42 +04:00
|
|
|
chromeos_dev_list="libbluetooth-dev libxkbcommon-dev"
|
2010-06-08 02:01:57 +04:00
|
|
|
|
2013-11-15 00:41:41 +04:00
|
|
|
# Packages needed for development
|
2014-09-19 11:28:34 +04:00
|
|
|
dev_list="apache2.2-bin bison cdbs curl dpkg-dev elfutils devscripts fakeroot
|
|
|
|
flex fonts-thai-tlwg g++ git-core git-svn gperf language-pack-da
|
2014-08-19 22:31:00 +04:00
|
|
|
language-pack-fr language-pack-he language-pack-zh-hant
|
|
|
|
libapache2-mod-php5 libasound2-dev libbrlapi-dev libav-tools
|
|
|
|
libbz2-dev libcairo2-dev libcap-dev libcups2-dev libcurl4-gnutls-dev
|
|
|
|
libdrm-dev libelf-dev libexif-dev libgconf2-dev libgl1-mesa-dev
|
|
|
|
libglib2.0-dev libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev
|
|
|
|
libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libpci-dev
|
|
|
|
libpulse-dev libsctp-dev libspeechd-dev libsqlite3-dev libssl-dev
|
|
|
|
libudev-dev libwww-perl libxslt1-dev libxss-dev libxt-dev libxtst-dev
|
2014-06-27 06:27:14 +04:00
|
|
|
mesa-common-dev openbox patch perl php5-cgi pkg-config python
|
2014-11-21 17:28:50 +03:00
|
|
|
python-cherrypy3 python-crypto python-dev python-numpy python-opencv
|
|
|
|
python-openssl python-psutil rpm ruby subversion ttf-dejavu-core
|
|
|
|
ttf-indic-fonts ttf-kochi-gothic ttf-kochi-mincho wdiff xfonts-mathml
|
|
|
|
zip $chromeos_dev_list"
|
2010-06-08 02:01:57 +04:00
|
|
|
|
2012-08-16 01:00:14 +04:00
|
|
|
# 64-bit systems need a minimum set of 32-bit compat packages for the pre-built
|
2014-08-18 16:30:23 +04:00
|
|
|
# NaCl binaries.
|
2013-10-31 19:15:49 +04:00
|
|
|
if file /sbin/init | grep -q 'ELF 64-bit'; then
|
2012-10-15 10:39:53 +04:00
|
|
|
dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6"
|
2012-08-16 01:00:14 +04:00
|
|
|
fi
|
|
|
|
|
2010-06-08 02:01:57 +04:00
|
|
|
# Run-time libraries required by chromeos only
|
2013-10-25 20:11:46 +04:00
|
|
|
chromeos_lib_list="libpulse0 libbz2-1.0"
|
2009-03-10 19:43:01 +03:00
|
|
|
|
|
|
|
# Full list of required run-time libraries
|
2013-10-29 09:50:38 +04:00
|
|
|
lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libcap2 libcups2 libexpat1
|
2014-03-14 09:56:17 +04:00
|
|
|
libexif12 libfontconfig1 libfreetype6 libglib2.0-0 libgnome-keyring0
|
2012-10-31 02:33:20 +04:00
|
|
|
libgtk2.0-0 libpam0g libpango1.0-0 libpci3 libpcre3 libpixman-1-0
|
2013-05-21 12:26:42 +04:00
|
|
|
libpng12-0 libspeechd2 libstdc++6 libsqlite3-0 libx11-6
|
2012-12-05 23:40:34 +04:00
|
|
|
libxau6 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6
|
|
|
|
libxext6 libxfixes3 libxi6 libxinerama1 libxrandr2 libxrender1
|
|
|
|
libxtst6 zlib1g $chromeos_lib_list"
|
2009-03-10 19:43:01 +03:00
|
|
|
|
|
|
|
# Debugging symbols for all of the run-time libraries
|
2012-10-23 06:00:41 +04:00
|
|
|
dbg_list="libatk1.0-dbg libc6-dbg libcairo2-dbg libfontconfig1-dbg
|
|
|
|
libglib2.0-0-dbg libgtk2.0-0-dbg libpango1.0-0-dbg libpcre3-dbg
|
|
|
|
libpixman-1-0-dbg libsqlite3-0-dbg libx11-6-dbg libxau6-dbg
|
|
|
|
libxcb1-dbg libxcomposite1-dbg libxcursor1-dbg libxdamage1-dbg
|
|
|
|
libxdmcp6-dbg libxext6-dbg libxfixes3-dbg libxi6-dbg libxinerama1-dbg
|
2013-11-10 04:43:40 +04:00
|
|
|
libxrandr2-dbg libxrender1-dbg libxtst6-dbg zlib1g-dbg
|
|
|
|
libstdc++6-4.6-dbg"
|
2009-03-10 19:43:01 +03:00
|
|
|
|
2014-11-27 18:45:31 +03:00
|
|
|
# 32-bit libraries needed e.g. to compile V8 snapshot for Android or armhf
|
|
|
|
lib32_list="linux-libc-dev:i386"
|
|
|
|
|
2013-10-29 06:38:46 +04:00
|
|
|
# arm cross toolchain packages needed to build chrome on armhf
|
2014-05-22 04:48:12 +04:00
|
|
|
arm_list="libc6-dev-armhf-cross
|
|
|
|
linux-libc-dev-armhf-cross
|
2014-11-27 18:45:31 +03:00
|
|
|
g++-arm-linux-gnueabihf"
|
2011-08-24 02:27:35 +04:00
|
|
|
|
2014-06-03 03:10:03 +04:00
|
|
|
# Packages to build NaCl, its toolchains, and its ports.
|
2014-09-06 10:18:45 +04:00
|
|
|
naclports_list="ant autoconf bison cmake gawk intltool xutils-dev xsltproc"
|
|
|
|
nacl_list="g++-mingw-w64-i686 lib32z1-dev
|
2014-06-19 20:17:50 +04:00
|
|
|
libasound2:i386 libcap2:i386 libelf-dev:i386 libexif12:i386
|
2014-06-19 22:26:18 +04:00
|
|
|
libfontconfig1:i386 libgconf-2-4:i386 libglib2.0-0:i386 libgpm2:i386
|
2014-07-23 06:25:08 +04:00
|
|
|
libgtk2.0-0:i386 libncurses5:i386 lib32ncurses5-dev
|
2014-09-06 10:18:45 +04:00
|
|
|
libnss3:i386 libpango1.0-0:i386
|
2014-06-19 22:26:18 +04:00
|
|
|
libssl0.9.8:i386 libtinfo-dev libtinfo-dev:i386 libtool
|
|
|
|
libxcomposite1:i386 libxcursor1:i386 libxdamage1:i386 libxi6:i386
|
2014-09-06 10:18:45 +04:00
|
|
|
libxrandr2:i386 libxss1:i386 libxtst6:i386 texinfo xvfb
|
|
|
|
${naclports_list}"
|
2014-06-19 22:26:18 +04:00
|
|
|
|
|
|
|
# Find the proper version of libgbm-dev. We can't just install libgbm-dev as
|
|
|
|
# it depends on mesa, and only one version of mesa can exists on the system.
|
|
|
|
# Hence we must match the same version or this entire script will fail.
|
|
|
|
mesa_variant=""
|
2014-08-28 11:45:15 +04:00
|
|
|
for variant in "-lts-quantal" "-lts-raring" "-lts-saucy" "-lts-trusty"; do
|
2014-11-03 22:02:46 +03:00
|
|
|
if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \
|
2014-06-19 22:26:18 +04:00
|
|
|
grep -q " ok installed"); then
|
|
|
|
mesa_variant="${variant}"
|
|
|
|
fi
|
|
|
|
done
|
2014-06-26 03:55:04 +04:00
|
|
|
dev_list="${dev_list} libgbm-dev${mesa_variant}
|
|
|
|
libgles2-mesa-dev${mesa_variant}"
|
2014-06-19 22:26:18 +04:00
|
|
|
nacl_list="${nacl_list} libgl1-mesa-glx${mesa_variant}:i386"
|
2014-01-17 01:26:47 +04:00
|
|
|
|
2012-03-15 23:05:18 +04:00
|
|
|
# Some package names have changed over time
|
2013-05-30 03:11:20 +04:00
|
|
|
if package_exists ttf-mscorefonts-installer; then
|
2012-03-15 23:05:18 +04:00
|
|
|
dev_list="${dev_list} ttf-mscorefonts-installer"
|
2012-03-22 02:09:41 +04:00
|
|
|
else
|
|
|
|
dev_list="${dev_list} msttcorefonts"
|
2012-03-15 23:05:18 +04:00
|
|
|
fi
|
2013-05-30 03:11:20 +04:00
|
|
|
if package_exists libnspr4-dbg; then
|
2011-05-20 21:53:55 +04:00
|
|
|
dbg_list="${dbg_list} libnspr4-dbg libnss3-dbg"
|
|
|
|
lib_list="${lib_list} libnspr4 libnss3"
|
2012-03-15 23:05:18 +04:00
|
|
|
else
|
|
|
|
dbg_list="${dbg_list} libnspr4-0d-dbg libnss3-1d-dbg"
|
|
|
|
lib_list="${lib_list} libnspr4-0d libnss3-1d"
|
|
|
|
fi
|
2013-05-30 03:11:20 +04:00
|
|
|
if package_exists libjpeg-dev; then
|
2013-05-21 12:26:42 +04:00
|
|
|
dev_list="${dev_list} libjpeg-dev"
|
2012-03-22 02:09:41 +04:00
|
|
|
else
|
2013-05-21 12:26:42 +04:00
|
|
|
dev_list="${dev_list} libjpeg62-dev"
|
2012-03-22 02:09:41 +04:00
|
|
|
fi
|
2013-05-30 03:11:20 +04:00
|
|
|
if package_exists libudev1; then
|
2013-05-21 12:26:42 +04:00
|
|
|
dev_list="${dev_list} libudev1"
|
2014-06-05 19:28:52 +04:00
|
|
|
nacl_list="${nacl_list} libudev1:i386"
|
2013-05-21 12:26:42 +04:00
|
|
|
else
|
|
|
|
dev_list="${dev_list} libudev0"
|
2014-06-05 19:28:52 +04:00
|
|
|
nacl_list="${nacl_list} libudev0:i386"
|
2013-05-21 12:26:42 +04:00
|
|
|
fi
|
2013-09-06 10:23:57 +04:00
|
|
|
if package_exists libbrlapi0.6; then
|
|
|
|
dev_list="${dev_list} libbrlapi0.6"
|
|
|
|
else
|
|
|
|
dev_list="${dev_list} libbrlapi0.5"
|
|
|
|
fi
|
2013-05-21 12:26:42 +04:00
|
|
|
|
2012-03-15 23:05:18 +04:00
|
|
|
|
2013-10-01 02:06:58 +04:00
|
|
|
# Some packages are only needed if the distribution actually supports
|
2012-03-15 23:05:18 +04:00
|
|
|
# installing them.
|
2013-05-30 03:11:20 +04:00
|
|
|
if package_exists appmenu-gtk; then
|
2012-03-15 23:05:18 +04:00
|
|
|
lib_list="$lib_list appmenu-gtk"
|
2011-04-11 22:42:42 +04:00
|
|
|
fi
|
|
|
|
|
2014-11-27 18:45:31 +03:00
|
|
|
# When cross building for arm/Android on 64-bit systems the host binaries
|
|
|
|
# that are part of v8 need to be compiled with -m32 which means
|
|
|
|
# that basic multilib support is needed.
|
|
|
|
if file /sbin/init | grep -q 'ELF 64-bit'; then
|
|
|
|
# gcc-multilib conflicts with the arm cross compiler (at least in trusty) but
|
|
|
|
# g++-X.Y-multilib gives us the 32-bit support that we need. Find out the
|
|
|
|
# appropriate value of X and Y by seeing what version the current
|
|
|
|
# distribution's g++-multilib package depends on.
|
|
|
|
multilib_package=$(apt-cache depends g++-multilib --important | \
|
|
|
|
grep -E --color=never --only-matching '\bg\+\+-[0-9.]+-multilib\b')
|
|
|
|
lib32_list="$lib32_list $multilib_package"
|
|
|
|
fi
|
|
|
|
|
2009-03-11 00:53:08 +03:00
|
|
|
# Waits for the user to press 'Y' or 'N'. Either uppercase of lowercase is
|
|
|
|
# accepted. Returns 0 for 'Y' and 1 for 'N'. If an optional parameter has
|
|
|
|
# been provided to yes_no(), the function also accepts RETURN as a user input.
|
|
|
|
# The parameter specifies the exit code that should be returned in that case.
|
|
|
|
# The function will echo the user's selection followed by a newline character.
|
|
|
|
# Users can abort the function by pressing CTRL-C. This will call "exit 1".
|
|
|
|
yes_no() {
|
2012-04-23 08:48:31 +04:00
|
|
|
if [ 0 -ne "${do_default-0}" ] ; then
|
2013-10-01 02:06:58 +04:00
|
|
|
[ $1 -eq 0 ] && echo "Y" || echo "N"
|
2012-04-23 08:48:31 +04:00
|
|
|
return $1
|
|
|
|
fi
|
2009-03-11 00:53:08 +03:00
|
|
|
local c
|
|
|
|
while :; do
|
|
|
|
c="$(trap 'stty echo -iuclc icanon 2>/dev/null' EXIT INT TERM QUIT
|
|
|
|
stty -echo iuclc -icanon 2>/dev/null
|
|
|
|
dd count=1 bs=1 2>/dev/null | od -An -tx1)"
|
|
|
|
case "$c" in
|
|
|
|
" 0a") if [ -n "$1" ]; then
|
|
|
|
[ $1 -eq 0 ] && echo "Y" || echo "N"
|
|
|
|
return $1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
" 79") echo "Y"
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
" 6e") echo "N"
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
"") echo "Aborted" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*) # The user pressed an unrecognized key. As we are not echoing
|
|
|
|
# any incorrect user input, alert the user by ringing the bell.
|
|
|
|
(tput bel) 2>/dev/null
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2013-10-25 20:11:46 +04:00
|
|
|
if test "$do_inst_syms" = "" && test 0 -eq ${do_quick_check-0}
|
2010-01-26 21:17:53 +03:00
|
|
|
then
|
|
|
|
echo "This script installs all tools and libraries needed to build Chromium."
|
|
|
|
echo ""
|
|
|
|
echo "For most of the libraries, it can also install debugging symbols, which"
|
|
|
|
echo "will allow you to debug code in the system libraries. Most developers"
|
|
|
|
echo "won't need these symbols."
|
|
|
|
echo -n "Do you want me to install them for you (y/N) "
|
|
|
|
if yes_no 1; then
|
|
|
|
do_inst_syms=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$do_inst_syms" = "1"; then
|
2013-10-25 20:11:46 +04:00
|
|
|
echo "Including debugging symbols."
|
2009-03-11 00:53:08 +03:00
|
|
|
else
|
2013-10-25 20:11:46 +04:00
|
|
|
echo "Skipping debugging symbols."
|
2009-03-11 00:53:08 +03:00
|
|
|
dbg_list=
|
|
|
|
fi
|
|
|
|
|
2014-11-27 18:45:31 +03:00
|
|
|
if test "$do_inst_lib32" = "1" ; then
|
|
|
|
echo "Including 32-bit libraries for ARM/Android."
|
|
|
|
else
|
|
|
|
echo "Skipping 32-bit libraries for ARM/Android."
|
|
|
|
lib32_list=
|
2012-12-18 03:31:40 +04:00
|
|
|
fi
|
|
|
|
|
2013-10-25 20:11:46 +04:00
|
|
|
if test "$do_inst_arm" = "1" ; then
|
|
|
|
echo "Including ARM cross toolchain."
|
2012-11-15 05:06:26 +04:00
|
|
|
else
|
2013-10-25 20:11:46 +04:00
|
|
|
echo "Skipping ARM cross toolchain."
|
2012-11-15 05:06:26 +04:00
|
|
|
arm_list=
|
|
|
|
fi
|
|
|
|
|
2014-01-17 01:26:47 +04:00
|
|
|
if test "$do_inst_nacl" = "1"; then
|
2014-06-03 03:10:03 +04:00
|
|
|
echo "Including NaCl, NaCl toolchain, NaCl ports dependencies."
|
2014-01-17 01:26:47 +04:00
|
|
|
else
|
2014-06-03 03:10:03 +04:00
|
|
|
echo "Skipping NaCl, NaCl toolchain, NaCl ports dependencies."
|
2014-01-17 01:26:47 +04:00
|
|
|
nacl_list=
|
|
|
|
fi
|
|
|
|
|
2015-01-06 14:25:52 +03:00
|
|
|
# The `sort -r -s -t: -k2` sorts all the :i386 packages to the front, to avoid
|
|
|
|
# confusing dpkg-query (crbug.com/446172).
|
2014-01-17 01:26:47 +04:00
|
|
|
packages="$(
|
2014-11-27 18:45:31 +03:00
|
|
|
echo "${dev_list} ${lib_list} ${dbg_list} ${lib32_list} ${arm_list}"\
|
2015-01-06 14:25:52 +03:00
|
|
|
"${nacl_list}" | tr " " "\n" | sort -u | sort -r -s -t: -k2 | tr "\n" " "
|
2014-01-17 01:26:47 +04:00
|
|
|
)"
|
2013-10-25 20:11:46 +04:00
|
|
|
|
|
|
|
if [ 1 -eq "${do_quick_check-0}" ] ; then
|
|
|
|
failed_check="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' \
|
|
|
|
${packages} 2>&1 | grep -v "ok installed" || :)"
|
|
|
|
if [ -n "${failed_check}" ]; then
|
|
|
|
echo
|
|
|
|
nomatch="$(echo "${failed_check}" | \
|
|
|
|
sed -e "s/^No packages found matching \(.*\).$/\1/;t;d")"
|
|
|
|
missing="$(echo "${failed_check}" | \
|
|
|
|
sed -e "/^No packages found matching/d;s/^\(.*\):.*$/\1/")"
|
|
|
|
if [ "$nomatch" ]; then
|
|
|
|
# Distinguish between packages that actually aren't available to the
|
|
|
|
# system (i.e. not in any repo) and packages that just aren't known to
|
|
|
|
# dpkg (i.e. managed by apt).
|
|
|
|
unknown=""
|
|
|
|
for p in ${nomatch}; do
|
|
|
|
if apt-cache show ${p} > /dev/null 2>&1; then
|
|
|
|
missing="${p}\n${missing}"
|
|
|
|
else
|
|
|
|
unknown="${p}\n${unknown}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ -n "${unknown}" ]; then
|
|
|
|
echo "WARNING: The following packages are unknown to your system"
|
|
|
|
echo "(maybe missing a repo or need to 'sudo apt-get update'):"
|
|
|
|
echo -e "${unknown}" | sed -e "s/^/ /"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ -n "${missing}" ]; then
|
|
|
|
echo "WARNING: The following packages are not installed:"
|
|
|
|
echo -e "${missing}" | sed -e "s/^/ /"
|
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2014-11-27 18:45:31 +03:00
|
|
|
if test "$do_inst_lib32" = "1" || test "$do_inst_nacl" = "1"; then
|
|
|
|
if [[ ! $lsb_release =~ (precise|quantal|raring) ]]; then
|
|
|
|
sudo dpkg --add-architecture i386
|
|
|
|
fi
|
|
|
|
fi
|
2009-03-10 19:43:01 +03:00
|
|
|
sudo apt-get update
|
|
|
|
|
|
|
|
# We initially run "apt-get" with the --reinstall option and parse its output.
|
|
|
|
# This way, we can find all the packages that need to be newly installed
|
|
|
|
# without accidentally promoting any packages from "auto" to "manual".
|
|
|
|
# We then re-run "apt-get" with just the list of missing packages.
|
|
|
|
echo "Finding missing packages..."
|
2012-03-15 23:05:18 +04:00
|
|
|
# Intentionally leaving $packages unquoted so it's more readable.
|
2009-08-10 22:47:51 +04:00
|
|
|
echo "Packages required: " $packages
|
|
|
|
echo
|
2009-08-07 01:10:58 +04:00
|
|
|
new_list_cmd="sudo apt-get install --reinstall $(echo $packages)"
|
2013-05-10 14:10:03 +04:00
|
|
|
if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then
|
2009-08-10 22:47:51 +04:00
|
|
|
# We probably never hit this following line.
|
2009-08-07 01:10:58 +04:00
|
|
|
echo "No missing packages, and the packages are up-to-date."
|
2010-05-03 21:20:45 +04:00
|
|
|
elif [ $? -eq 1 ]; then
|
2009-08-07 01:10:58 +04:00
|
|
|
# We expect apt-get to have exit status of 1.
|
2012-03-15 23:05:18 +04:00
|
|
|
# This indicates that we cancelled the install with "yes n|".
|
2009-08-10 22:47:51 +04:00
|
|
|
new_list=$(echo "$new_list" |
|
2009-08-07 01:10:58 +04:00
|
|
|
sed -e '1,/The following NEW packages will be installed:/d;s/^ //;t;d')
|
2009-08-10 22:47:51 +04:00
|
|
|
new_list=$(echo "$new_list" | sed 's/ *$//')
|
|
|
|
if [ -z "$new_list" ] ; then
|
|
|
|
echo "No missing packages, and the packages are up-to-date."
|
|
|
|
else
|
|
|
|
echo "Installing missing packages: $new_list."
|
2012-04-23 08:48:31 +04:00
|
|
|
sudo apt-get install ${do_quietly-} ${new_list}
|
2009-08-10 22:47:51 +04:00
|
|
|
fi
|
|
|
|
echo
|
2009-08-07 01:10:58 +04:00
|
|
|
else
|
|
|
|
# An apt-get exit status of 100 indicates that a real error has occurred.
|
2009-03-10 19:43:01 +03:00
|
|
|
|
2009-08-07 01:10:58 +04:00
|
|
|
# I am intentionally leaving out the '"'s around new_list_cmd,
|
|
|
|
# as this makes it easier to cut and paste the output
|
|
|
|
echo "The following command failed: " ${new_list_cmd}
|
|
|
|
echo
|
|
|
|
echo "It produces the following output:"
|
|
|
|
yes n | $new_list_cmd || true
|
|
|
|
echo
|
|
|
|
echo "You will have to install the above packages yourself."
|
|
|
|
echo
|
|
|
|
exit 100
|
|
|
|
fi
|
2009-03-10 19:43:01 +03:00
|
|
|
|
2013-09-19 04:53:30 +04:00
|
|
|
# Install the Chrome OS default fonts. This must go after running
|
|
|
|
# apt-get, since install-chromeos-fonts depends on curl.
|
|
|
|
if test "$do_inst_chromeos_fonts" != "0"; then
|
|
|
|
echo
|
|
|
|
echo "Installing Chrome OS fonts."
|
|
|
|
dir=`echo $0 | sed -r -e 's/\/[^/]+$//'`
|
|
|
|
if ! sudo $dir/linux/install-chromeos-fonts.py; then
|
|
|
|
echo "ERROR: The installation of the Chrome OS default fonts failed."
|
|
|
|
if [ `stat -f -c %T $dir` == "nfs" ]; then
|
|
|
|
echo "The reason is that your repo is installed on a remote file system."
|
|
|
|
else
|
|
|
|
echo "This is expected if your repo is installed on a remote file system."
|
|
|
|
fi
|
|
|
|
echo "It is recommended to install your repo on a local file system."
|
|
|
|
echo "You can skip the installation of the Chrome OS default founts with"
|
|
|
|
echo "the command line option: --no-chromeos-fonts."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Skipping installation of Chrome OS fonts."
|
|
|
|
fi
|
|
|
|
|
2014-06-03 03:10:03 +04:00
|
|
|
if test "$do_inst_nacl" = "1"; then
|
|
|
|
echo "Installing symbolic links for NaCl."
|
|
|
|
if [ ! -r /usr/lib/i386-linux-gnu/libcrypto.so ]; then
|
|
|
|
sudo ln -fs libcrypto.so.0.9.8 /usr/lib/i386-linux-gnu/libcrypto.so
|
|
|
|
fi
|
|
|
|
if [ ! -r /usr/lib/i386-linux-gnu/libssl.so ]; then
|
|
|
|
sudo ln -fs libssl.so.0.9.8 /usr/lib/i386-linux-gnu/libssl.so
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Skipping symbolic links for NaCl."
|
|
|
|
fi
|