blob: 6473794ddd522a403ef84947af2c5de3b26e847a [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)
[email protected]592ea8ca2008-11-03 19:47:368# See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions
9# and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit
[email protected]cf1df402008-10-31 21:45:3010
[email protected]1eae2bfb2010-01-26 18:17:5311usage() {
12 echo "Usage: $0 [--options]"
13 echo "Options:"
14 echo "--[no-]syms: enable or disable installation of debugging symbols"
johnme49bb458a2014-11-27 15:45:3115 echo "--lib32: enable installation of 32-bit libraries, e.g. for V8 snapshot"
[email protected]f2826b6a2012-11-15 01:06:2616 echo "--[no-]arm: enable or disable installation of arm cross toolchain"
[email protected]bd29cdd2013-02-22 03:49:2017 echo "--[no-]chromeos-fonts: enable or disable installation of Chrome OS"\
18 "fonts"
[email protected]565416362014-01-16 21:26:4719 echo "--[no-]nacl: enable or disable installation of prerequisites for"\
20 "building standalone NaCl and all its toolchains"
[email protected]e2544ed42012-04-23 04:48:3121 echo "--no-prompt: silently select standard options/defaults"
[email protected]ba48c4ca2013-10-25 16:11:4622 echo "--quick-check: quickly try to determine if dependencies are installed"
23 echo " (this avoids interactive prompts and sudo commands,"
24 echo " so might not be 100% accurate)"
25 echo "--unsupported: attempt installation even on unsupported systems"
[email protected]1eae2bfb2010-01-26 18:17:5326 echo "Script will prompt interactively if options not given."
27 exit 1
28}
29
[email protected]4fc00712013-05-29 23:11:2030# Checks whether a particular package is available in the repos.
31# USAGE: $ package_exists <package name>
32package_exists() {
33 apt-cache pkgnames | grep -x "$1" > /dev/null 2>&1
34}
35
[email protected]fbeddf22014-01-17 23:59:0136# These default to on because (some) bots need them and it keeps things
37# simple for the bot setup if all bots just run the script in its default
38# mode. Developers who don't want stuff they don't need installed on their
39# own workstations can pass --no-arm --no-nacl when running the script.
40do_inst_arm=1
41do_inst_nacl=1
42
[email protected]1eae2bfb2010-01-26 18:17:5343while test "$1" != ""
44do
45 case "$1" in
[email protected]ce774642011-09-12 23:21:3946 --syms) do_inst_syms=1;;
47 --no-syms) do_inst_syms=0;;
[email protected]ce774642011-09-12 23:21:3948 --lib32) do_inst_lib32=1;;
[email protected]f2826b6a2012-11-15 01:06:2649 --arm) do_inst_arm=1;;
50 --no-arm) do_inst_arm=0;;
[email protected]bd29cdd2013-02-22 03:49:2051 --chromeos-fonts) do_inst_chromeos_fonts=1;;
52 --no-chromeos-fonts) do_inst_chromeos_fonts=0;;
[email protected]565416362014-01-16 21:26:4753 --nacl) do_inst_nacl=1;;
54 --no-nacl) do_inst_nacl=0;;
[email protected]e2544ed42012-04-23 04:48:3155 --no-prompt) do_default=1
56 do_quietly="-qq --assume-yes"
57 ;;
[email protected]ba48c4ca2013-10-25 16:11:4658 --quick-check) do_quick_check=1;;
[email protected]fe63a022013-01-15 22:11:4759 --unsupported) do_unsupported=1;;
[email protected]1eae2bfb2010-01-26 18:17:5360 *) usage;;
61 esac
62 shift
63done
64
johnme49bb458a2014-11-27 15:45:3165if test "$do_inst_arm" = "1"; then
66 do_inst_lib32=1
67fi
68
[email protected]0febc9b2014-05-22 20:07:1969# Check for lsb_release command in $PATH
70if ! which lsb_release > /dev/null; then
71 echo "ERROR: lsb_release not found in \$PATH" >&2
72 exit 1;
73fi
[email protected]f2826b6a2012-11-15 01:06:2674
[email protected]0febc9b2014-05-22 20:07:1975lsb_release=$(lsb_release --codename --short)
thestig83d03502015-03-20 08:06:1276ubuntu_codenames="(precise|trusty|utopic)"
[email protected]ba48c4ca2013-10-25 16:11:4677if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then
[email protected]0febc9b2014-05-22 20:07:1978 if [[ ! $lsb_release =~ $ubuntu_codenames ]]; then
thestig83d03502015-03-20 08:06:1279 echo "ERROR: Only Ubuntu 12.04 (precise), 14.04 (trusty) and " \
80 "14.10 (utopic) 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
[email protected]22997202014-08-20 01:57:4297chromeos_dev_list="libbluetooth-dev libxkbcommon-dev"
[email protected]fdc6bf52010-06-07 22:01:5798
[email protected]b61f6882013-11-14 20:41:4199# Packages needed for development
Henrik Kjellander011f9c82014-09-19 07:28:34100dev_list="apache2.2-bin bison cdbs curl dpkg-dev elfutils devscripts fakeroot
101 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
vabrf1e8b17f2015-03-17 10:56:37105 libdrm-dev libelf-dev libexif-dev libgconf2-dev libglib2.0-dev
106 libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev libkrb5-dev
107 libnspr4-dev libnss3-dev libpam0g-dev libpci-dev libpulse-dev
108 libsctp-dev libspeechd-dev libsqlite3-dev libssl-dev libudev-dev
109 libwww-perl libxslt1-dev libxss-dev libxt-dev libxtst-dev openbox
110 patch perl php5-cgi pkg-config python python-cherrypy3 python-crypto
111 python-dev python-numpy python-opencv python-openssl python-psutil
112 rpm ruby subversion ttf-dejavu-core ttf-indic-fonts ttf-kochi-gothic
113 ttf-kochi-mincho wdiff xfonts-mathml zip $chromeos_dev_list"
[email protected]fdc6bf52010-06-07 22:01:57114
[email protected]f16aabf2012-08-15 21:00:14115# 64-bit systems need a minimum set of 32-bit compat packages for the pre-built
[email protected]f8ceadb2014-08-18 12:30:23116# NaCl binaries.
[email protected]9161abe2013-10-31 15:15:49117if file /sbin/init | grep -q 'ELF 64-bit'; then
[email protected]d93d68b12012-10-15 06:39:53118 dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6"
[email protected]f16aabf2012-08-15 21:00:14119fi
120
[email protected]fdc6bf52010-06-07 22:01:57121# Run-time libraries required by chromeos only
[email protected]ba48c4ca2013-10-25 16:11:46122chromeos_lib_list="libpulse0 libbz2-1.0"
[email protected]e041ed12009-03-10 16:43:01123
124# Full list of required run-time libraries
[email protected]d8f52322013-10-29 05:50:38125lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libcap2 libcups2 libexpat1
[email protected]e8796012014-03-14 05:56:17126 libexif12 libfontconfig1 libfreetype6 libglib2.0-0 libgnome-keyring0
[email protected]ca3a1d262012-10-30 22:33:20127 libgtk2.0-0 libpam0g libpango1.0-0 libpci3 libpcre3 libpixman-1-0
[email protected]9e895962013-05-21 08:26:42128 libpng12-0 libspeechd2 libstdc++6 libsqlite3-0 libx11-6
[email protected]8190b882012-12-05 19:40:34129 libxau6 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6
130 libxext6 libxfixes3 libxi6 libxinerama1 libxrandr2 libxrender1
131 libxtst6 zlib1g $chromeos_lib_list"
[email protected]e041ed12009-03-10 16:43:01132
133# Debugging symbols for all of the run-time libraries
[email protected]6ffd19f352012-10-23 02:00:41134dbg_list="libatk1.0-dbg libc6-dbg libcairo2-dbg libfontconfig1-dbg
135 libglib2.0-0-dbg libgtk2.0-0-dbg libpango1.0-0-dbg libpcre3-dbg
136 libpixman-1-0-dbg libsqlite3-0-dbg libx11-6-dbg libxau6-dbg
137 libxcb1-dbg libxcomposite1-dbg libxcursor1-dbg libxdamage1-dbg
138 libxdmcp6-dbg libxext6-dbg libxfixes3-dbg libxi6-dbg libxinerama1-dbg
lfgad917d12015-03-17 23:28:00139 libxrandr2-dbg libxrender1-dbg libxtst6-dbg zlib1g-dbg"
140
141# Find the proper version of libstdc++6-4.x-dbg.
142if [ "x$lsb_release" = "xprecise" ]; then
143 dbg_list="${dbg_list} libstdc++6-4.6-dbg"
144elif [ "x$lsb_release" = "xtrusty" ]; then
145 dbg_list="${dbg_list} libstdc++6-4.8-dbg"
146else
147 dbg_list="${dbg_list} libstdc++6-4.9-dbg"
148fi
[email protected]e041ed12009-03-10 16:43:01149
johnme49bb458a2014-11-27 15:45:31150# 32-bit libraries needed e.g. to compile V8 snapshot for Android or armhf
151lib32_list="linux-libc-dev:i386"
152
[email protected]3f85dac32013-10-29 02:38:46153# arm cross toolchain packages needed to build chrome on armhf
[email protected]a2984e22014-05-22 00:48:12154arm_list="libc6-dev-armhf-cross
155 linux-libc-dev-armhf-cross
johnme49bb458a2014-11-27 15:45:31156 g++-arm-linux-gnueabihf"
[email protected]31a605532011-08-23 22:27:35157
sbcb5d4ded2015-04-01 17:49:03158# Work around for dependency issue Ubuntu/Trusty: http://crbug.com/435056
159if [ "x$lsb_release" = "xtrusty" ]; then
160 arm_list+=" g++-4.8-multilib-arm-linux-gnueabihf
161 gcc-4.8-multilib-arm-linux-gnueabihf"
162fi
163
[email protected]713eac62014-06-02 23:10:03164# Packages to build NaCl, its toolchains, and its ports.
Brad Nelson5e59c2c2014-09-06 06:18:45165naclports_list="ant autoconf bison cmake gawk intltool xutils-dev xsltproc"
166nacl_list="g++-mingw-w64-i686 lib32z1-dev
[email protected]5203a352014-06-19 16:17:50167 libasound2:i386 libcap2:i386 libelf-dev:i386 libexif12:i386
[email protected]419a9a62014-06-19 18:26:18168 libfontconfig1:i386 libgconf-2-4:i386 libglib2.0-0:i386 libgpm2:i386
[email protected]a14d76e2014-07-23 02:25:08169 libgtk2.0-0:i386 libncurses5:i386 lib32ncurses5-dev
Brad Nelson5e59c2c2014-09-06 06:18:45170 libnss3:i386 libpango1.0-0:i386
sbc6ab44c32015-02-13 23:19:17171 libssl1.0.0:i386 libtinfo-dev libtinfo-dev:i386 libtool
[email protected]419a9a62014-06-19 18:26:18172 libxcomposite1:i386 libxcursor1:i386 libxdamage1:i386 libxi6:i386
Brad Nelson5e59c2c2014-09-06 06:18:45173 libxrandr2:i386 libxss1:i386 libxtst6:i386 texinfo xvfb
174 ${naclports_list}"
[email protected]419a9a62014-06-19 18:26:18175
176# Find the proper version of libgbm-dev. We can't just install libgbm-dev as
177# it depends on mesa, and only one version of mesa can exists on the system.
178# Hence we must match the same version or this entire script will fail.
179mesa_variant=""
thestig83d03502015-03-20 08:06:12180for variant in "-lts-trusty" "-lts-utopic"; do
primianob83ed9b2014-11-03 19:02:46181 if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \
[email protected]419a9a62014-06-19 18:26:18182 grep -q " ok installed"); then
183 mesa_variant="${variant}"
184 fi
185done
[email protected]3a4bd5d2014-06-25 23:55:04186dev_list="${dev_list} libgbm-dev${mesa_variant}
vabrf1e8b17f2015-03-17 10:56:37187 libgles2-mesa-dev${mesa_variant} libgl1-mesa-dev${mesa_variant}
188 mesa-common-dev${mesa_variant}"
[email protected]419a9a62014-06-19 18:26:18189nacl_list="${nacl_list} libgl1-mesa-glx${mesa_variant}:i386"
[email protected]565416362014-01-16 21:26:47190
[email protected]757c2962012-03-15 19:05:18191# Some package names have changed over time
[email protected]4fc00712013-05-29 23:11:20192if package_exists ttf-mscorefonts-installer; then
[email protected]757c2962012-03-15 19:05:18193 dev_list="${dev_list} ttf-mscorefonts-installer"
[email protected]b11411c2012-03-21 22:09:41194else
195 dev_list="${dev_list} msttcorefonts"
[email protected]757c2962012-03-15 19:05:18196fi
[email protected]4fc00712013-05-29 23:11:20197if package_exists libnspr4-dbg; then
[email protected]1a0f64a2011-05-20 17:53:55198 dbg_list="${dbg_list} libnspr4-dbg libnss3-dbg"
199 lib_list="${lib_list} libnspr4 libnss3"
[email protected]757c2962012-03-15 19:05:18200else
201 dbg_list="${dbg_list} libnspr4-0d-dbg libnss3-1d-dbg"
202 lib_list="${lib_list} libnspr4-0d libnss3-1d"
203fi
[email protected]4fc00712013-05-29 23:11:20204if package_exists libjpeg-dev; then
[email protected]9e895962013-05-21 08:26:42205 dev_list="${dev_list} libjpeg-dev"
[email protected]b11411c2012-03-21 22:09:41206else
[email protected]9e895962013-05-21 08:26:42207 dev_list="${dev_list} libjpeg62-dev"
[email protected]b11411c2012-03-21 22:09:41208fi
[email protected]4fc00712013-05-29 23:11:20209if package_exists libudev1; then
[email protected]9e895962013-05-21 08:26:42210 dev_list="${dev_list} libudev1"
[email protected]ab9e69082014-06-05 15:28:52211 nacl_list="${nacl_list} libudev1:i386"
[email protected]9e895962013-05-21 08:26:42212else
213 dev_list="${dev_list} libudev0"
[email protected]ab9e69082014-06-05 15:28:52214 nacl_list="${nacl_list} libudev0:i386"
[email protected]9e895962013-05-21 08:26:42215fi
[email protected]3ea42912013-09-06 06:23:57216if package_exists libbrlapi0.6; then
217 dev_list="${dev_list} libbrlapi0.6"
218else
219 dev_list="${dev_list} libbrlapi0.5"
220fi
[email protected]9e895962013-05-21 08:26:42221
[email protected]757c2962012-03-15 19:05:18222
[email protected]dc099772013-09-30 22:06:58223# Some packages are only needed if the distribution actually supports
[email protected]757c2962012-03-15 19:05:18224# installing them.
[email protected]4fc00712013-05-29 23:11:20225if package_exists appmenu-gtk; then
[email protected]757c2962012-03-15 19:05:18226 lib_list="$lib_list appmenu-gtk"
[email protected]4da8fad2011-04-11 18:42:42227fi
228
johnme49bb458a2014-11-27 15:45:31229# When cross building for arm/Android on 64-bit systems the host binaries
230# that are part of v8 need to be compiled with -m32 which means
231# that basic multilib support is needed.
232if file /sbin/init | grep -q 'ELF 64-bit'; then
233 # gcc-multilib conflicts with the arm cross compiler (at least in trusty) but
234 # g++-X.Y-multilib gives us the 32-bit support that we need. Find out the
235 # appropriate value of X and Y by seeing what version the current
236 # distribution's g++-multilib package depends on.
237 multilib_package=$(apt-cache depends g++-multilib --important | \
238 grep -E --color=never --only-matching '\bg\+\+-[0-9.]+-multilib\b')
239 lib32_list="$lib32_list $multilib_package"
240fi
241
[email protected]8ada8c52009-03-10 21:53:08242# Waits for the user to press 'Y' or 'N'. Either uppercase of lowercase is
243# accepted. Returns 0 for 'Y' and 1 for 'N'. If an optional parameter has
244# been provided to yes_no(), the function also accepts RETURN as a user input.
245# The parameter specifies the exit code that should be returned in that case.
246# The function will echo the user's selection followed by a newline character.
247# Users can abort the function by pressing CTRL-C. This will call "exit 1".
248yes_no() {
[email protected]e2544ed42012-04-23 04:48:31249 if [ 0 -ne "${do_default-0}" ] ; then
[email protected]dc099772013-09-30 22:06:58250 [ $1 -eq 0 ] && echo "Y" || echo "N"
[email protected]e2544ed42012-04-23 04:48:31251 return $1
252 fi
[email protected]8ada8c52009-03-10 21:53:08253 local c
254 while :; do
255 c="$(trap 'stty echo -iuclc icanon 2>/dev/null' EXIT INT TERM QUIT
256 stty -echo iuclc -icanon 2>/dev/null
257 dd count=1 bs=1 2>/dev/null | od -An -tx1)"
258 case "$c" in
259 " 0a") if [ -n "$1" ]; then
260 [ $1 -eq 0 ] && echo "Y" || echo "N"
261 return $1
262 fi
263 ;;
264 " 79") echo "Y"
265 return 0
266 ;;
267 " 6e") echo "N"
268 return 1
269 ;;
270 "") echo "Aborted" >&2
271 exit 1
272 ;;
273 *) # The user pressed an unrecognized key. As we are not echoing
274 # any incorrect user input, alert the user by ringing the bell.
275 (tput bel) 2>/dev/null
276 ;;
277 esac
278 done
279}
280
[email protected]ba48c4ca2013-10-25 16:11:46281if test "$do_inst_syms" = "" && test 0 -eq ${do_quick_check-0}
[email protected]1eae2bfb2010-01-26 18:17:53282then
283 echo "This script installs all tools and libraries needed to build Chromium."
284 echo ""
285 echo "For most of the libraries, it can also install debugging symbols, which"
286 echo "will allow you to debug code in the system libraries. Most developers"
287 echo "won't need these symbols."
288 echo -n "Do you want me to install them for you (y/N) "
289 if yes_no 1; then
290 do_inst_syms=1
291 fi
292fi
293if test "$do_inst_syms" = "1"; then
[email protected]ba48c4ca2013-10-25 16:11:46294 echo "Including debugging symbols."
[email protected]8ada8c52009-03-10 21:53:08295else
[email protected]ba48c4ca2013-10-25 16:11:46296 echo "Skipping debugging symbols."
[email protected]8ada8c52009-03-10 21:53:08297 dbg_list=
298fi
299
johnme49bb458a2014-11-27 15:45:31300if test "$do_inst_lib32" = "1" ; then
301 echo "Including 32-bit libraries for ARM/Android."
302else
303 echo "Skipping 32-bit libraries for ARM/Android."
304 lib32_list=
[email protected]9f28a9cf2012-12-17 23:31:40305fi
306
[email protected]ba48c4ca2013-10-25 16:11:46307if test "$do_inst_arm" = "1" ; then
[email protected]ba48c4ca2013-10-25 16:11:46308 echo "Including ARM cross toolchain."
[email protected]f2826b6a2012-11-15 01:06:26309else
[email protected]ba48c4ca2013-10-25 16:11:46310 echo "Skipping ARM cross toolchain."
[email protected]f2826b6a2012-11-15 01:06:26311 arm_list=
312fi
313
[email protected]565416362014-01-16 21:26:47314if test "$do_inst_nacl" = "1"; then
[email protected]713eac62014-06-02 23:10:03315 echo "Including NaCl, NaCl toolchain, NaCl ports dependencies."
[email protected]565416362014-01-16 21:26:47316else
[email protected]713eac62014-06-02 23:10:03317 echo "Skipping NaCl, NaCl toolchain, NaCl ports dependencies."
[email protected]565416362014-01-16 21:26:47318 nacl_list=
319fi
320
johnme4bd10302015-01-06 11:25:52321# The `sort -r -s -t: -k2` sorts all the :i386 packages to the front, to avoid
322# confusing dpkg-query (crbug.com/446172).
[email protected]565416362014-01-16 21:26:47323packages="$(
johnme49bb458a2014-11-27 15:45:31324 echo "${dev_list} ${lib_list} ${dbg_list} ${lib32_list} ${arm_list}"\
johnme4bd10302015-01-06 11:25:52325 "${nacl_list}" | tr " " "\n" | sort -u | sort -r -s -t: -k2 | tr "\n" " "
[email protected]565416362014-01-16 21:26:47326)"
[email protected]ba48c4ca2013-10-25 16:11:46327
328if [ 1 -eq "${do_quick_check-0}" ] ; then
329 failed_check="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' \
330 ${packages} 2>&1 | grep -v "ok installed" || :)"
331 if [ -n "${failed_check}" ]; then
332 echo
333 nomatch="$(echo "${failed_check}" | \
334 sed -e "s/^No packages found matching \(.*\).$/\1/;t;d")"
335 missing="$(echo "${failed_check}" | \
336 sed -e "/^No packages found matching/d;s/^\(.*\):.*$/\1/")"
337 if [ "$nomatch" ]; then
338 # Distinguish between packages that actually aren't available to the
339 # system (i.e. not in any repo) and packages that just aren't known to
340 # dpkg (i.e. managed by apt).
341 unknown=""
342 for p in ${nomatch}; do
343 if apt-cache show ${p} > /dev/null 2>&1; then
344 missing="${p}\n${missing}"
345 else
346 unknown="${p}\n${unknown}"
347 fi
348 done
349 if [ -n "${unknown}" ]; then
350 echo "WARNING: The following packages are unknown to your system"
351 echo "(maybe missing a repo or need to 'sudo apt-get update'):"
352 echo -e "${unknown}" | sed -e "s/^/ /"
353 fi
354 fi
355 if [ -n "${missing}" ]; then
356 echo "WARNING: The following packages are not installed:"
357 echo -e "${missing}" | sed -e "s/^/ /"
358 fi
359 exit 1
360 fi
361 exit 0
362fi
363
johnme49bb458a2014-11-27 15:45:31364if test "$do_inst_lib32" = "1" || test "$do_inst_nacl" = "1"; then
thestig83d03502015-03-20 08:06:12365 if [[ ! $lsb_release =~ (precise) ]]; then
johnme49bb458a2014-11-27 15:45:31366 sudo dpkg --add-architecture i386
367 fi
368fi
sbc42564092015-04-01 01:01:28369sudo apt-get update
[email protected]e041ed12009-03-10 16:43:01370
371# We initially run "apt-get" with the --reinstall option and parse its output.
372# This way, we can find all the packages that need to be newly installed
373# without accidentally promoting any packages from "auto" to "manual".
374# We then re-run "apt-get" with just the list of missing packages.
375echo "Finding missing packages..."
[email protected]757c2962012-03-15 19:05:18376# Intentionally leaving $packages unquoted so it's more readable.
[email protected]b6e064522009-08-10 18:47:51377echo "Packages required: " $packages
378echo
[email protected]79a9d2962009-08-06 21:10:58379new_list_cmd="sudo apt-get install --reinstall $(echo $packages)"
[email protected]c3d8b152013-05-10 10:10:03380if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then
[email protected]b6e064522009-08-10 18:47:51381 # We probably never hit this following line.
[email protected]79a9d2962009-08-06 21:10:58382 echo "No missing packages, and the packages are up-to-date."
[email protected]b62f11e72010-05-03 17:20:45383elif [ $? -eq 1 ]; then
[email protected]79a9d2962009-08-06 21:10:58384 # We expect apt-get to have exit status of 1.
[email protected]757c2962012-03-15 19:05:18385 # This indicates that we cancelled the install with "yes n|".
[email protected]b6e064522009-08-10 18:47:51386 new_list=$(echo "$new_list" |
[email protected]79a9d2962009-08-06 21:10:58387 sed -e '1,/The following NEW packages will be installed:/d;s/^ //;t;d')
[email protected]b6e064522009-08-10 18:47:51388 new_list=$(echo "$new_list" | sed 's/ *$//')
389 if [ -z "$new_list" ] ; then
390 echo "No missing packages, and the packages are up-to-date."
391 else
392 echo "Installing missing packages: $new_list."
[email protected]e2544ed42012-04-23 04:48:31393 sudo apt-get install ${do_quietly-} ${new_list}
[email protected]b6e064522009-08-10 18:47:51394 fi
395 echo
[email protected]79a9d2962009-08-06 21:10:58396else
397 # An apt-get exit status of 100 indicates that a real error has occurred.
[email protected]e041ed12009-03-10 16:43:01398
[email protected]79a9d2962009-08-06 21:10:58399 # I am intentionally leaving out the '"'s around new_list_cmd,
400 # as this makes it easier to cut and paste the output
[email protected]79a9d2962009-08-06 21:10:58401 echo "The following command failed: " ${new_list_cmd}
402 echo
403 echo "It produces the following output:"
404 yes n | $new_list_cmd || true
405 echo
406 echo "You will have to install the above packages yourself."
407 echo
408 exit 100
409fi
[email protected]e041ed12009-03-10 16:43:01410
[email protected]d96cc3472013-09-19 00:53:30411# Install the Chrome OS default fonts. This must go after running
412# apt-get, since install-chromeos-fonts depends on curl.
413if test "$do_inst_chromeos_fonts" != "0"; then
414 echo
415 echo "Installing Chrome OS fonts."
416 dir=`echo $0 | sed -r -e 's/\/[^/]+$//'`
417 if ! sudo $dir/linux/install-chromeos-fonts.py; then
418 echo "ERROR: The installation of the Chrome OS default fonts failed."
419 if [ `stat -f -c %T $dir` == "nfs" ]; then
420 echo "The reason is that your repo is installed on a remote file system."
421 else
422 echo "This is expected if your repo is installed on a remote file system."
423 fi
424 echo "It is recommended to install your repo on a local file system."
425 echo "You can skip the installation of the Chrome OS default founts with"
426 echo "the command line option: --no-chromeos-fonts."
427 exit 1
428 fi
429else
430 echo "Skipping installation of Chrome OS fonts."
431fi
432
sbc6ab44c32015-02-13 23:19:17433# $1 - target name
434# $2 - link name
435create_library_symlink() {
436 target=$1
437 linkname=$2
438 if [ -L $linkname ]; then
439 if [ "$(basename $(readlink $linkname))" != "$(basename $target)" ]; then
440 sudo rm $linkname
441 fi
442 fi
443 if [ ! -r $linkname ]; then
444 echo "Creating link: $linkname"
445 sudo ln -fs $target $linkname
446 fi
447}
448
[email protected]713eac62014-06-02 23:10:03449if test "$do_inst_nacl" = "1"; then
450 echo "Installing symbolic links for NaCl."
sbc6ab44c32015-02-13 23:19:17451 # naclports needs to cross build python for i386, but libssl1.0.0:i386
452 # only contains libcrypto.so.1.0.0 and not the symlink needed for
453 # linking (libcrypto.so).
454 create_library_symlink /lib/i386-linux-gnu/libcrypto.so.1.0.0 \
455 /usr/lib/i386-linux-gnu/libcrypto.so
456
457 create_library_symlink /lib/i386-linux-gnu/libssl.so.1.0.0 \
458 /usr/lib/i386-linux-gnu/libssl.so
[email protected]713eac62014-06-02 23:10:03459else
460 echo "Skipping symbolic links for NaCl."
461fi