blob: 04f6e59eeae7ee5c567e41baf889df909236c756 [file] [log] [blame]
[email protected]e041ed12009-03-10 16:43:011#!/bin/bash -e
2
[email protected]aac39c92012-02-08 18:39:533# Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]e46cdae2009-08-25 20:59:274# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
[email protected]cf1df402008-10-31 21:45:307# Script to install everything needed to build chromium (well, ideally, anyway)
mostynbdf175a82016-02-08 23:27:208# See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md
[email protected]cf1df402008-10-31 21:45:309
[email protected]1eae2bfb2010-01-26 18:17:5310usage() {
11 echo "Usage: $0 [--options]"
12 echo "Options:"
13 echo "--[no-]syms: enable or disable installation of debugging symbols"
johnme49bb458a2014-11-27 15:45:3114 echo "--lib32: enable installation of 32-bit libraries, e.g. for V8 snapshot"
[email protected]f2826b6a2012-11-15 01:06:2615 echo "--[no-]arm: enable or disable installation of arm cross toolchain"
[email protected]bd29cdd2013-02-22 03:49:2016 echo "--[no-]chromeos-fonts: enable or disable installation of Chrome OS"\
17 "fonts"
[email protected]565416362014-01-16 21:26:4718 echo "--[no-]nacl: enable or disable installation of prerequisites for"\
19 "building standalone NaCl and all its toolchains"
[email protected]e2544ed42012-04-23 04:48:3120 echo "--no-prompt: silently select standard options/defaults"
[email protected]ba48c4ca2013-10-25 16:11:4621 echo "--quick-check: quickly try to determine if dependencies are installed"
22 echo " (this avoids interactive prompts and sudo commands,"
23 echo " so might not be 100% accurate)"
24 echo "--unsupported: attempt installation even on unsupported systems"
[email protected]1eae2bfb2010-01-26 18:17:5325 echo "Script will prompt interactively if options not given."
26 exit 1
27}
28
[email protected]4fc00712013-05-29 23:11:2029# Checks whether a particular package is available in the repos.
30# USAGE: $ package_exists <package name>
31package_exists() {
32 apt-cache pkgnames | grep -x "$1" > /dev/null 2>&1
33}
34
[email protected]fbeddf22014-01-17 23:59:0135# These default to on because (some) bots need them and it keeps things
36# simple for the bot setup if all bots just run the script in its default
37# mode. Developers who don't want stuff they don't need installed on their
38# own workstations can pass --no-arm --no-nacl when running the script.
39do_inst_arm=1
40do_inst_nacl=1
41
[email protected]1eae2bfb2010-01-26 18:17:5342while test "$1" != ""
43do
44 case "$1" in
[email protected]ce774642011-09-12 23:21:3945 --syms) do_inst_syms=1;;
46 --no-syms) do_inst_syms=0;;
[email protected]ce774642011-09-12 23:21:3947 --lib32) do_inst_lib32=1;;
[email protected]f2826b6a2012-11-15 01:06:2648 --arm) do_inst_arm=1;;
49 --no-arm) do_inst_arm=0;;
[email protected]bd29cdd2013-02-22 03:49:2050 --chromeos-fonts) do_inst_chromeos_fonts=1;;
51 --no-chromeos-fonts) do_inst_chromeos_fonts=0;;
[email protected]565416362014-01-16 21:26:4752 --nacl) do_inst_nacl=1;;
53 --no-nacl) do_inst_nacl=0;;
[email protected]e2544ed42012-04-23 04:48:3154 --no-prompt) do_default=1
55 do_quietly="-qq --assume-yes"
56 ;;
[email protected]ba48c4ca2013-10-25 16:11:4657 --quick-check) do_quick_check=1;;
[email protected]fe63a022013-01-15 22:11:4758 --unsupported) do_unsupported=1;;
[email protected]1eae2bfb2010-01-26 18:17:5359 *) usage;;
60 esac
61 shift
62done
63
johnme49bb458a2014-11-27 15:45:3164if test "$do_inst_arm" = "1"; then
65 do_inst_lib32=1
66fi
67
[email protected]0febc9b2014-05-22 20:07:1968# Check for lsb_release command in $PATH
69if ! which lsb_release > /dev/null; then
70 echo "ERROR: lsb_release not found in \$PATH" >&2
71 exit 1;
72fi
[email protected]f2826b6a2012-11-15 01:06:2673
[email protected]0febc9b2014-05-22 20:07:1974lsb_release=$(lsb_release --codename --short)
halton.huo3e728c42016-01-20 05:12:2375ubuntu_codenames="(precise|trusty|utopic|vivid|wily)"
[email protected]ba48c4ca2013-10-25 16:11:4676if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then
[email protected]0febc9b2014-05-22 20:07:1977 if [[ ! $lsb_release =~ $ubuntu_codenames ]]; then
halton.huo48405252015-04-30 01:52:3978 echo "ERROR: Only Ubuntu 12.04 (precise), 14.04 (trusty), " \
halton.huo3e728c42016-01-20 05:12:2379 "14.10 (utopic), 15.04 (vivid) and 15.10 (wily) "
80 "are currently supported" >&2
[email protected]fe63a022013-01-15 22:11:4781 exit 1
82 fi
[email protected]cf1df402008-10-31 21:45:3083
[email protected]fe63a022013-01-15 22:11:4784 if ! uname -m | egrep -q "i686|x86_64"; then
85 echo "Only x86 architectures are currently supported" >&2
86 exit
87 fi
[email protected]e041ed12009-03-10 16:43:0188fi
89
[email protected]ba48c4ca2013-10-25 16:11:4690if [ "x$(id -u)" != x0 ] && [ 0 -eq "${do_quick_check-0}" ]; then
[email protected]e041ed12009-03-10 16:43:0191 echo "Running as non-root user."
92 echo "You might have to enter your password one or more times for 'sudo'."
[email protected]8ada8c52009-03-10 21:53:0893 echo
[email protected]e041ed12009-03-10 16:43:0194fi
95
[email protected]fdc6bf52010-06-07 22:01:5796# Packages needed for chromeos only
dnj6a8491d12015-05-26 21:08:1297chromeos_dev_list="libbluetooth-dev libxkbcommon-dev realpath"
[email protected]fdc6bf52010-06-07 22:01:5798
[email protected]b61f6882013-11-14 20:41:4199# Packages needed for development
halton.huo3e728c42016-01-20 05:12:23100dev_list="bison cdbs curl dpkg-dev elfutils devscripts fakeroot
Henrik Kjellander011f9c82014-09-19 07:28:34101 flex fonts-thai-tlwg g++ git-core git-svn gperf language-pack-da
[email protected]48d96e92014-08-19 18:31:00102 language-pack-fr language-pack-he language-pack-zh-hant
103 libapache2-mod-php5 libasound2-dev libbrlapi-dev libav-tools
104 libbz2-dev libcairo2-dev libcap-dev libcups2-dev libcurl4-gnutls-dev
revemandd26069a2015-11-09 21:39:21105 libdrm-dev libelf-dev libexif-dev libffi-dev libgconf2-dev
106 libglib2.0-dev libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev
107 libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libpci-dev
108 libpulse-dev libsctp-dev libspeechd-dev libsqlite3-dev libssl-dev
109 libudev-dev libwww-perl libxslt1-dev libxss-dev libxt-dev libxtst-dev
110 openbox patch perl php5-cgi pkg-config python python-cherrypy3
111 python-crypto python-dev python-numpy python-opencv python-openssl
112 python-psutil python-yaml rpm ruby subversion ttf-dejavu-core
halton.huo3e728c42016-01-20 05:12:23113 ttf-indic-fonts ttf-kochi-gothic ttf-kochi-mincho wdiff
revemandd26069a2015-11-09 21:39:21114 zip $chromeos_dev_list"
[email protected]fdc6bf52010-06-07 22:01:57115
[email protected]f16aabf2012-08-15 21:00:14116# 64-bit systems need a minimum set of 32-bit compat packages for the pre-built
[email protected]f8ceadb2014-08-18 12:30:23117# NaCl binaries.
ki.stfu0a79d6992015-09-17 07:27:12118if file -L /sbin/init | grep -q 'ELF 64-bit'; then
[email protected]d93d68b12012-10-15 06:39:53119 dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6"
[email protected]f16aabf2012-08-15 21:00:14120fi
121
[email protected]fdc6bf52010-06-07 22:01:57122# Run-time libraries required by chromeos only
[email protected]ba48c4ca2013-10-25 16:11:46123chromeos_lib_list="libpulse0 libbz2-1.0"
[email protected]e041ed12009-03-10 16:43:01124
125# Full list of required run-time libraries
[email protected]d8f52322013-10-29 05:50:38126lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libcap2 libcups2 libexpat1
revemandd26069a2015-11-09 21:39:21127 libexif12 libffi6 libfontconfig1 libfreetype6 libglib2.0-0
128 libgnome-keyring0 libgtk2.0-0 libpam0g libpango1.0-0 libpci3 libpcre3
129 libpixman-1-0 libpng12-0 libspeechd2 libstdc++6 libsqlite3-0 libx11-6
[email protected]8190b882012-12-05 19:40:34130 libxau6 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6
131 libxext6 libxfixes3 libxi6 libxinerama1 libxrandr2 libxrender1
132 libxtst6 zlib1g $chromeos_lib_list"
[email protected]e041ed12009-03-10 16:43:01133
134# Debugging symbols for all of the run-time libraries
revemandd26069a2015-11-09 21:39:21135dbg_list="libatk1.0-dbg libc6-dbg libcairo2-dbg libffi6-dbg libfontconfig1-dbg
[email protected]6ffd19f352012-10-23 02:00:41136 libglib2.0-0-dbg libgtk2.0-0-dbg libpango1.0-0-dbg libpcre3-dbg
137 libpixman-1-0-dbg libsqlite3-0-dbg libx11-6-dbg libxau6-dbg
138 libxcb1-dbg libxcomposite1-dbg libxcursor1-dbg libxdamage1-dbg
139 libxdmcp6-dbg libxext6-dbg libxfixes3-dbg libxi6-dbg libxinerama1-dbg
lfgad917d12015-03-17 23:28:00140 libxrandr2-dbg libxrender1-dbg libxtst6-dbg zlib1g-dbg"
141
142# Find the proper version of libstdc++6-4.x-dbg.
143if [ "x$lsb_release" = "xprecise" ]; then
144 dbg_list="${dbg_list} libstdc++6-4.6-dbg"
145elif [ "x$lsb_release" = "xtrusty" ]; then
146 dbg_list="${dbg_list} libstdc++6-4.8-dbg"
147else
148 dbg_list="${dbg_list} libstdc++6-4.9-dbg"
149fi
[email protected]e041ed12009-03-10 16:43:01150
johnme49bb458a2014-11-27 15:45:31151# 32-bit libraries needed e.g. to compile V8 snapshot for Android or armhf
152lib32_list="linux-libc-dev:i386"
153
[email protected]3f85dac32013-10-29 02:38:46154# arm cross toolchain packages needed to build chrome on armhf
[email protected]a2984e22014-05-22 00:48:12155arm_list="libc6-dev-armhf-cross
156 linux-libc-dev-armhf-cross
johnme49bb458a2014-11-27 15:45:31157 g++-arm-linux-gnueabihf"
[email protected]31a605532011-08-23 22:27:35158
sbcb5d4ded2015-04-01 17:49:03159# Work around for dependency issue Ubuntu/Trusty: http://crbug.com/435056
160if [ "x$lsb_release" = "xtrusty" ]; then
161 arm_list+=" g++-4.8-multilib-arm-linux-gnueabihf
162 gcc-4.8-multilib-arm-linux-gnueabihf"
163fi
164
[email protected]713eac62014-06-02 23:10:03165# Packages to build NaCl, its toolchains, and its ports.
Brad Nelson5e59c2c2014-09-06 06:18:45166naclports_list="ant autoconf bison cmake gawk intltool xutils-dev xsltproc"
167nacl_list="g++-mingw-w64-i686 lib32z1-dev
[email protected]5203a352014-06-19 16:17:50168 libasound2:i386 libcap2:i386 libelf-dev:i386 libexif12:i386
[email protected]419a9a62014-06-19 18:26:18169 libfontconfig1:i386 libgconf-2-4:i386 libglib2.0-0:i386 libgpm2:i386
[email protected]a14d76e2014-07-23 02:25:08170 libgtk2.0-0:i386 libncurses5:i386 lib32ncurses5-dev
Brad Nelson5e59c2c2014-09-06 06:18:45171 libnss3:i386 libpango1.0-0:i386
sbc6ab44c32015-02-13 23:19:17172 libssl1.0.0:i386 libtinfo-dev libtinfo-dev:i386 libtool
[email protected]419a9a62014-06-19 18:26:18173 libxcomposite1:i386 libxcursor1:i386 libxdamage1:i386 libxi6:i386
Brad Nelson5e59c2c2014-09-06 06:18:45174 libxrandr2:i386 libxss1:i386 libxtst6:i386 texinfo xvfb
175 ${naclports_list}"
[email protected]419a9a62014-06-19 18:26:18176
torne8a6eb692015-11-05 12:43:08177# Find the proper version of packages that depend on mesa. Only one -lts variant
178# of mesa can be installed and everything that depends on it must match.
179
180# Query for the name and status of all mesa LTS variants, filter for only
181# installed packages, extract just the name, and eliminate duplicates (there can
182# be more than one with the same name in the case of multiarch). Expand into an
183# array.
184mesa_packages=($(dpkg-query -Wf'${package} ${status}\n' \
torne12cd9f6c2016-02-24 18:52:23185 libgl1-mesa-glx-lts-\* 2>/dev/null | \
torne8a6eb692015-11-05 12:43:08186 grep " ok installed" | cut -d " " -f 1 | sort -u))
187if [ "${#mesa_packages[@]}" -eq 0 ]; then
188 mesa_variant=""
189elif [ "${#mesa_packages[@]}" -eq 1 ]; then
190 # Strip the base package name and leave just "-lts-whatever"
191 mesa_variant="${mesa_packages[0]#libgl1-mesa-glx}"
192else
193 echo "ERROR: unable to determine which libgl1-mesa-glx variant is installed."
194 exit 1
195fi
[email protected]3a4bd5d2014-06-25 23:55:04196dev_list="${dev_list} libgbm-dev${mesa_variant}
vabrf1e8b17f2015-03-17 10:56:37197 libgles2-mesa-dev${mesa_variant} libgl1-mesa-dev${mesa_variant}
198 mesa-common-dev${mesa_variant}"
[email protected]419a9a62014-06-19 18:26:18199nacl_list="${nacl_list} libgl1-mesa-glx${mesa_variant}:i386"
[email protected]565416362014-01-16 21:26:47200
[email protected]757c2962012-03-15 19:05:18201# Some package names have changed over time
[email protected]4fc00712013-05-29 23:11:20202if package_exists ttf-mscorefonts-installer; then
[email protected]757c2962012-03-15 19:05:18203 dev_list="${dev_list} ttf-mscorefonts-installer"
[email protected]b11411c2012-03-21 22:09:41204else
205 dev_list="${dev_list} msttcorefonts"
[email protected]757c2962012-03-15 19:05:18206fi
[email protected]4fc00712013-05-29 23:11:20207if package_exists libnspr4-dbg; then
[email protected]1a0f64a2011-05-20 17:53:55208 dbg_list="${dbg_list} libnspr4-dbg libnss3-dbg"
209 lib_list="${lib_list} libnspr4 libnss3"
[email protected]757c2962012-03-15 19:05:18210else
211 dbg_list="${dbg_list} libnspr4-0d-dbg libnss3-1d-dbg"
212 lib_list="${lib_list} libnspr4-0d libnss3-1d"
213fi
[email protected]4fc00712013-05-29 23:11:20214if package_exists libjpeg-dev; then
[email protected]9e895962013-05-21 08:26:42215 dev_list="${dev_list} libjpeg-dev"
[email protected]b11411c2012-03-21 22:09:41216else
[email protected]9e895962013-05-21 08:26:42217 dev_list="${dev_list} libjpeg62-dev"
[email protected]b11411c2012-03-21 22:09:41218fi
[email protected]4fc00712013-05-29 23:11:20219if package_exists libudev1; then
[email protected]9e895962013-05-21 08:26:42220 dev_list="${dev_list} libudev1"
[email protected]ab9e69082014-06-05 15:28:52221 nacl_list="${nacl_list} libudev1:i386"
[email protected]9e895962013-05-21 08:26:42222else
223 dev_list="${dev_list} libudev0"
[email protected]ab9e69082014-06-05 15:28:52224 nacl_list="${nacl_list} libudev0:i386"
[email protected]9e895962013-05-21 08:26:42225fi
[email protected]3ea42912013-09-06 06:23:57226if package_exists libbrlapi0.6; then
227 dev_list="${dev_list} libbrlapi0.6"
228else
229 dev_list="${dev_list} libbrlapi0.5"
230fi
halton.huo3e728c42016-01-20 05:12:23231if package_exists apache2-bin; then
232 dev_list="${dev_list} apache2-bin"
233else
234 dev_list="${dev_list} apache2.2-bin"
235fi
236if package_exists fonts-stix; then
237 dev_list="${dev_list} fonts-stix"
238else
239 dev_list="${dev_list} xfonts-mathml"
240fi
[email protected]757c2962012-03-15 19:05:18241
[email protected]dc099772013-09-30 22:06:58242# Some packages are only needed if the distribution actually supports
[email protected]757c2962012-03-15 19:05:18243# installing them.
[email protected]4fc00712013-05-29 23:11:20244if package_exists appmenu-gtk; then
[email protected]757c2962012-03-15 19:05:18245 lib_list="$lib_list appmenu-gtk"
[email protected]4da8fad2011-04-11 18:42:42246fi
247
johnme49bb458a2014-11-27 15:45:31248# When cross building for arm/Android on 64-bit systems the host binaries
249# that are part of v8 need to be compiled with -m32 which means
250# that basic multilib support is needed.
ki.stfu0a79d6992015-09-17 07:27:12251if file -L /sbin/init | grep -q 'ELF 64-bit'; then
johnme49bb458a2014-11-27 15:45:31252 # gcc-multilib conflicts with the arm cross compiler (at least in trusty) but
253 # g++-X.Y-multilib gives us the 32-bit support that we need. Find out the
254 # appropriate value of X and Y by seeing what version the current
255 # distribution's g++-multilib package depends on.
256 multilib_package=$(apt-cache depends g++-multilib --important | \
257 grep -E --color=never --only-matching '\bg\+\+-[0-9.]+-multilib\b')
258 lib32_list="$lib32_list $multilib_package"
259fi
260
[email protected]8ada8c52009-03-10 21:53:08261# Waits for the user to press 'Y' or 'N'. Either uppercase of lowercase is
262# accepted. Returns 0 for 'Y' and 1 for 'N'. If an optional parameter has
263# been provided to yes_no(), the function also accepts RETURN as a user input.
264# The parameter specifies the exit code that should be returned in that case.
265# The function will echo the user's selection followed by a newline character.
266# Users can abort the function by pressing CTRL-C. This will call "exit 1".
267yes_no() {
[email protected]e2544ed42012-04-23 04:48:31268 if [ 0 -ne "${do_default-0}" ] ; then
[email protected]dc099772013-09-30 22:06:58269 [ $1 -eq 0 ] && echo "Y" || echo "N"
[email protected]e2544ed42012-04-23 04:48:31270 return $1
271 fi
[email protected]8ada8c52009-03-10 21:53:08272 local c
273 while :; do
274 c="$(trap 'stty echo -iuclc icanon 2>/dev/null' EXIT INT TERM QUIT
275 stty -echo iuclc -icanon 2>/dev/null
276 dd count=1 bs=1 2>/dev/null | od -An -tx1)"
277 case "$c" in
278 " 0a") if [ -n "$1" ]; then
279 [ $1 -eq 0 ] && echo "Y" || echo "N"
280 return $1
281 fi
282 ;;
283 " 79") echo "Y"
284 return 0
285 ;;
286 " 6e") echo "N"
287 return 1
288 ;;
289 "") echo "Aborted" >&2
290 exit 1
291 ;;
292 *) # The user pressed an unrecognized key. As we are not echoing
293 # any incorrect user input, alert the user by ringing the bell.
294 (tput bel) 2>/dev/null
295 ;;
296 esac
297 done
298}
299
[email protected]ba48c4ca2013-10-25 16:11:46300if test "$do_inst_syms" = "" && test 0 -eq ${do_quick_check-0}
[email protected]1eae2bfb2010-01-26 18:17:53301then
302 echo "This script installs all tools and libraries needed to build Chromium."
303 echo ""
304 echo "For most of the libraries, it can also install debugging symbols, which"
305 echo "will allow you to debug code in the system libraries. Most developers"
306 echo "won't need these symbols."
307 echo -n "Do you want me to install them for you (y/N) "
308 if yes_no 1; then
309 do_inst_syms=1
310 fi
311fi
312if test "$do_inst_syms" = "1"; then
[email protected]ba48c4ca2013-10-25 16:11:46313 echo "Including debugging symbols."
[email protected]8ada8c52009-03-10 21:53:08314else
[email protected]ba48c4ca2013-10-25 16:11:46315 echo "Skipping debugging symbols."
[email protected]8ada8c52009-03-10 21:53:08316 dbg_list=
317fi
318
johnme49bb458a2014-11-27 15:45:31319if test "$do_inst_lib32" = "1" ; then
320 echo "Including 32-bit libraries for ARM/Android."
321else
322 echo "Skipping 32-bit libraries for ARM/Android."
323 lib32_list=
[email protected]9f28a9cf2012-12-17 23:31:40324fi
325
[email protected]ba48c4ca2013-10-25 16:11:46326if test "$do_inst_arm" = "1" ; then
[email protected]ba48c4ca2013-10-25 16:11:46327 echo "Including ARM cross toolchain."
[email protected]f2826b6a2012-11-15 01:06:26328else
[email protected]ba48c4ca2013-10-25 16:11:46329 echo "Skipping ARM cross toolchain."
[email protected]f2826b6a2012-11-15 01:06:26330 arm_list=
331fi
332
[email protected]565416362014-01-16 21:26:47333if test "$do_inst_nacl" = "1"; then
[email protected]713eac62014-06-02 23:10:03334 echo "Including NaCl, NaCl toolchain, NaCl ports dependencies."
[email protected]565416362014-01-16 21:26:47335else
[email protected]713eac62014-06-02 23:10:03336 echo "Skipping NaCl, NaCl toolchain, NaCl ports dependencies."
[email protected]565416362014-01-16 21:26:47337 nacl_list=
338fi
339
johnme4bd10302015-01-06 11:25:52340# The `sort -r -s -t: -k2` sorts all the :i386 packages to the front, to avoid
341# confusing dpkg-query (crbug.com/446172).
[email protected]565416362014-01-16 21:26:47342packages="$(
johnme49bb458a2014-11-27 15:45:31343 echo "${dev_list} ${lib_list} ${dbg_list} ${lib32_list} ${arm_list}"\
johnme4bd10302015-01-06 11:25:52344 "${nacl_list}" | tr " " "\n" | sort -u | sort -r -s -t: -k2 | tr "\n" " "
[email protected]565416362014-01-16 21:26:47345)"
[email protected]ba48c4ca2013-10-25 16:11:46346
347if [ 1 -eq "${do_quick_check-0}" ] ; then
348 failed_check="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' \
349 ${packages} 2>&1 | grep -v "ok installed" || :)"
350 if [ -n "${failed_check}" ]; then
351 echo
352 nomatch="$(echo "${failed_check}" | \
353 sed -e "s/^No packages found matching \(.*\).$/\1/;t;d")"
354 missing="$(echo "${failed_check}" | \
355 sed -e "/^No packages found matching/d;s/^\(.*\):.*$/\1/")"
356 if [ "$nomatch" ]; then
357 # Distinguish between packages that actually aren't available to the
358 # system (i.e. not in any repo) and packages that just aren't known to
359 # dpkg (i.e. managed by apt).
360 unknown=""
361 for p in ${nomatch}; do
362 if apt-cache show ${p} > /dev/null 2>&1; then
363 missing="${p}\n${missing}"
364 else
365 unknown="${p}\n${unknown}"
366 fi
367 done
368 if [ -n "${unknown}" ]; then
369 echo "WARNING: The following packages are unknown to your system"
370 echo "(maybe missing a repo or need to 'sudo apt-get update'):"
371 echo -e "${unknown}" | sed -e "s/^/ /"
372 fi
373 fi
374 if [ -n "${missing}" ]; then
375 echo "WARNING: The following packages are not installed:"
376 echo -e "${missing}" | sed -e "s/^/ /"
377 fi
378 exit 1
379 fi
380 exit 0
381fi
382
johnme49bb458a2014-11-27 15:45:31383if test "$do_inst_lib32" = "1" || test "$do_inst_nacl" = "1"; then
thestig83d03502015-03-20 08:06:12384 if [[ ! $lsb_release =~ (precise) ]]; then
johnme49bb458a2014-11-27 15:45:31385 sudo dpkg --add-architecture i386
386 fi
387fi
sbc42564092015-04-01 01:01:28388sudo apt-get update
[email protected]e041ed12009-03-10 16:43:01389
390# We initially run "apt-get" with the --reinstall option and parse its output.
391# This way, we can find all the packages that need to be newly installed
392# without accidentally promoting any packages from "auto" to "manual".
393# We then re-run "apt-get" with just the list of missing packages.
394echo "Finding missing packages..."
[email protected]757c2962012-03-15 19:05:18395# Intentionally leaving $packages unquoted so it's more readable.
[email protected]b6e064522009-08-10 18:47:51396echo "Packages required: " $packages
397echo
[email protected]79a9d2962009-08-06 21:10:58398new_list_cmd="sudo apt-get install --reinstall $(echo $packages)"
[email protected]c3d8b152013-05-10 10:10:03399if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then
[email protected]b6e064522009-08-10 18:47:51400 # We probably never hit this following line.
[email protected]79a9d2962009-08-06 21:10:58401 echo "No missing packages, and the packages are up-to-date."
[email protected]b62f11e72010-05-03 17:20:45402elif [ $? -eq 1 ]; then
[email protected]79a9d2962009-08-06 21:10:58403 # We expect apt-get to have exit status of 1.
[email protected]757c2962012-03-15 19:05:18404 # This indicates that we cancelled the install with "yes n|".
[email protected]b6e064522009-08-10 18:47:51405 new_list=$(echo "$new_list" |
[email protected]79a9d2962009-08-06 21:10:58406 sed -e '1,/The following NEW packages will be installed:/d;s/^ //;t;d')
[email protected]b6e064522009-08-10 18:47:51407 new_list=$(echo "$new_list" | sed 's/ *$//')
408 if [ -z "$new_list" ] ; then
409 echo "No missing packages, and the packages are up-to-date."
410 else
411 echo "Installing missing packages: $new_list."
[email protected]e2544ed42012-04-23 04:48:31412 sudo apt-get install ${do_quietly-} ${new_list}
[email protected]b6e064522009-08-10 18:47:51413 fi
414 echo
[email protected]79a9d2962009-08-06 21:10:58415else
416 # An apt-get exit status of 100 indicates that a real error has occurred.
[email protected]e041ed12009-03-10 16:43:01417
[email protected]79a9d2962009-08-06 21:10:58418 # I am intentionally leaving out the '"'s around new_list_cmd,
419 # as this makes it easier to cut and paste the output
[email protected]79a9d2962009-08-06 21:10:58420 echo "The following command failed: " ${new_list_cmd}
421 echo
422 echo "It produces the following output:"
423 yes n | $new_list_cmd || true
424 echo
425 echo "You will have to install the above packages yourself."
426 echo
427 exit 100
428fi
[email protected]e041ed12009-03-10 16:43:01429
[email protected]d96cc3472013-09-19 00:53:30430# Install the Chrome OS default fonts. This must go after running
431# apt-get, since install-chromeos-fonts depends on curl.
432if test "$do_inst_chromeos_fonts" != "0"; then
433 echo
434 echo "Installing Chrome OS fonts."
435 dir=`echo $0 | sed -r -e 's/\/[^/]+$//'`
436 if ! sudo $dir/linux/install-chromeos-fonts.py; then
437 echo "ERROR: The installation of the Chrome OS default fonts failed."
438 if [ `stat -f -c %T $dir` == "nfs" ]; then
439 echo "The reason is that your repo is installed on a remote file system."
440 else
441 echo "This is expected if your repo is installed on a remote file system."
442 fi
443 echo "It is recommended to install your repo on a local file system."
444 echo "You can skip the installation of the Chrome OS default founts with"
445 echo "the command line option: --no-chromeos-fonts."
446 exit 1
447 fi
448else
449 echo "Skipping installation of Chrome OS fonts."
450fi
451
sbc6ab44c32015-02-13 23:19:17452# $1 - target name
453# $2 - link name
454create_library_symlink() {
455 target=$1
456 linkname=$2
457 if [ -L $linkname ]; then
458 if [ "$(basename $(readlink $linkname))" != "$(basename $target)" ]; then
459 sudo rm $linkname
460 fi
461 fi
462 if [ ! -r $linkname ]; then
463 echo "Creating link: $linkname"
464 sudo ln -fs $target $linkname
465 fi
466}
467
[email protected]713eac62014-06-02 23:10:03468if test "$do_inst_nacl" = "1"; then
469 echo "Installing symbolic links for NaCl."
sbc6ab44c32015-02-13 23:19:17470 # naclports needs to cross build python for i386, but libssl1.0.0:i386
471 # only contains libcrypto.so.1.0.0 and not the symlink needed for
472 # linking (libcrypto.so).
473 create_library_symlink /lib/i386-linux-gnu/libcrypto.so.1.0.0 \
474 /usr/lib/i386-linux-gnu/libcrypto.so
475
476 create_library_symlink /lib/i386-linux-gnu/libssl.so.1.0.0 \
477 /usr/lib/i386-linux-gnu/libssl.so
[email protected]713eac62014-06-02 23:10:03478else
479 echo "Skipping symbolic links for NaCl."
480fi