Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Side by Side Diff: build/install-build-deps.sh

Issue 7237053: Add libwww-perl to the list of installed packages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash -e 1 #!/bin/bash -e
2 2
3 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Script to install everything needed to build chromium (well, ideally, anyway) 7 # Script to install everything needed to build chromium (well, ideally, anyway)
8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions 8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions
9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit 9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit
10 10
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 # Packages needed for chromeos only 100 # Packages needed for chromeos only
101 chromeos_dev_list="libpulse-dev" 101 chromeos_dev_list="libpulse-dev"
102 102
103 # Packages need for development 103 # Packages need for development
104 dev_list="apache2.2-bin bison fakeroot flex g++ gperf language-pack-fr 104 dev_list="apache2.2-bin bison fakeroot flex g++ gperf language-pack-fr
105 libapache2-mod-php5 libasound2-dev libbz2-dev libcairo2-dev 105 libapache2-mod-php5 libasound2-dev libbz2-dev libcairo2-dev
106 libcups2-dev libdbus-glib-1-dev libgconf2-dev 106 libcups2-dev libdbus-glib-1-dev libgconf2-dev
107 libgl1-mesa-dev libglu1-mesa-dev libglib2.0-dev libgnome-keyring-dev 107 libgl1-mesa-dev libglu1-mesa-dev libglib2.0-dev libgnome-keyring-dev
108 libgtk2.0-dev libjpeg62-dev libnspr4-dev libnss3-dev libpam0g-dev 108 libgtk2.0-dev libjpeg62-dev libnspr4-dev libnss3-dev libpam0g-dev
109 libsctp-dev libsqlite3-dev libxslt1-dev libxss-dev libxtst-dev 109 libsctp-dev libsqlite3-dev libxslt1-dev libxss-dev libxtst-dev
110 mesa-common-dev msttcorefonts patch perl php5-cgi pkg-config python 110 mesa-common-dev msttcorefonts patch perl libwww-perl php5-cgi
111 python-dev rpm subversion ttf-dejavu-core ttf-kochi-gothic 111 pkg-config python python-dev rpm subversion ttf-dejavu-core
112 ttf-kochi-mincho wdiff libcurl4-gnutls-dev ttf-indic-fonts 112 ttf-kochi-gothic ttf-kochi-mincho wdiff libcurl4-gnutls-dev
113 ttf-thai-tlwg 113 ttf-indic-fonts ttf-thai-tlwg
114 $chromeos_dev_list" 114 $chromeos_dev_list"
115 115
116 # Run-time libraries required by chromeos only 116 # Run-time libraries required by chromeos only
117 chromeos_lib_list="libpulse0 libbz2-1.0 libcurl4-gnutls-dev" 117 chromeos_lib_list="libpulse0 libbz2-1.0 libcurl4-gnutls-dev"
118 118
119 # Full list of required run-time libraries 119 # Full list of required run-time libraries
120 lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libcups2 libdbus-glib-1-2 120 lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libcups2 libdbus-glib-1-2
121 libexpat1 libfontconfig1 libfreetype6 libglib2.0-0 libgnome-keyring0 121 libexpat1 libfontconfig1 libfreetype6 libglib2.0-0 libgnome-keyring0
122 libgtk2.0-0 libpam0g libpango1.0-0 libpcre3 libpixman-1-0 122 libgtk2.0-0 libpam0g libpango1.0-0 libpcre3 libpixman-1-0
123 libpng12-0 libstdc++6 libsqlite3-0 libx11-6 libxau6 libxcb1 123 libpng12-0 libstdc++6 libsqlite3-0 libx11-6 libxau6 libxcb1
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 sed -e 's/[.]so[.][0-9].*/.so/' | 453 sed -e 's/[.]so[.][0-9].*/.so/' |
454 sort -u); do 454 sort -u); do
455 [ "x${i##*/}" = "xld-linux.so" ] && continue 455 [ "x${i##*/}" = "xld-linux.so" ] && continue
456 [ -r "$i" ] && continue 456 [ -r "$i" ] && continue
457 j="$(ls "$i."* | sed -e 's/.*[.]so[.]\([^.]*\)$/\1/;t;d' | 457 j="$(ls "$i."* | sed -e 's/.*[.]so[.]\([^.]*\)$/\1/;t;d' |
458 sort -n | tail -n 1)" 458 sort -n | tail -n 1)"
459 [ -r "$i.$j" ] || continue 459 [ -r "$i.$j" ] || continue
460 sudo ln -s "${i##*/}.$j" "$i" 460 sudo ln -s "${i##*/}.$j" "$i"
461 done 461 done
462 fi 462 fi
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698