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

Side by Side Diff: xvfb/building/fetch-source

Issue 9348009: Add a new tool holding Xvfb bits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: '' Created 8 years, 10 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
OLDNEW
(Empty)
1 test -f util-macros-1.11.0.tar.gz || \
cmp 2012/02/07 19:52:14 Add #!/bin/sh to the top, add a Chromium license h
Peter Mayo 2012/02/08 05:32:48 I was worried that adding a shebang would over-rep
2 wget http://xorg.freedesktop.org/releases/individual/util/util-macros-1.11.0.tar .gz
cmp 2012/02/07 19:52:14 80 cols (here and below)
Peter Mayo 2012/02/08 05:32:48 We would rather break up URLs? Yuck ... refactore
3 test -f xproto-7.0.20.tar.gz -a \
4 -f dri2proto-2.3.tar.gz || \
5 wget http://xorg.freedesktop.org/releases/individual/proto/xproto-7.0.20.tar.gz \
6 http://xorg.freedesktop.org/releases/individual/proto/dri2proto-2.3.tar.gz
cmp 2012/02/07 19:52:14 if either xproto* or dri2proto* are missing (but t
Peter Mayo 2012/02/08 05:32:48 Done.
7 test -f xcb-proto-1.6.tar.gz || \
8 wget http://xorg.freedesktop.org/releases/individual/xcb/xcb-proto-1.6.tar.gz
9 test -f libXfont-1.4.3.tar.gz -a \
10 -f libxkbfile-1.0.7.tar.gz || \
11 wget http://xorg.freedesktop.org/releases/individual/lib/libXfont-1.4.3.tar.gz \
12 http://xorg.freedesktop.org/releases/individual/lib/libxkbfile-1.0.7.tar.gz
13
14 test -f xorg-server-1.9.3.901.tar.gz || \
15 wget http://xorg.freedesktop.org/releases/individual/xserver/xorg-server-1.9.3.9 01.tar.gz
16
17 #test -f talloc-2.0.1.tar.gz || {\
18 # wget https://launchpad.net/ubuntu/+archive/primary/+files/talloc_2.0.1.orig. tar.bz2 && \
19 # bunzip2 talloc_2.0.1.orig.tar.bz2 && \
20 # mv talloc_2.0.1.orig.tar talloc-2.0.1.tar && \
21 # gzip talloc-2.0.1.tar ; }
cmp 2012/02/07 19:52:14 can lines 17-21 be removed / replaced with a comme
Peter Mayo 2012/02/08 05:32:48 Done.
22
23 test -f libdrm-2.4.26.tar.gz || \
24 wget http://dri.freedesktop.org/libdrm/libdrm-2.4.26.tar.gz
25
26 test -f MesaGLUT-7.11.tar.gz -a -f MesaLib-7.11.tar.gz ||\
27 { wget ftp://ftp.freedesktop.org/pub/mesa/7.11/MesaGLUT-7.11.tar.gz ; \
28 wget ftp://ftp.freedesktop.org/pub/mesa/7.11/MesaLib-7.11.tar.gz ; }
29
30 # failing in 2012
31 #test -f libXmu-libXmu-1.0.5.tar.gz || \
32 # wget http://cgit.freedesktop.org/xorg/lib/libXmu/snapshot/libXmu-libXmu-1.0.5 .tar.gz
33 # Go here instead, and use a more normal name.
cmp 2012/02/07 19:52:14 can lines 30-33 be removed / replaced with a comme
Peter Mayo 2012/02/08 05:32:48 Done.
34 test -f libXmu-1.0.5.tar.gz || \
35 wget http://ftp.x.org/pub/individual/lib/libXmu-1.0.5.tar.gz
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698