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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: xvfb/building/fetch-source
===================================================================
--- xvfb/building/fetch-source (revision 0)
+++ xvfb/building/fetch-source (revision 0)
@@ -0,0 +1,35 @@
+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
+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
+test -f xproto-7.0.20.tar.gz -a \
+ -f dri2proto-2.3.tar.gz || \
+wget http://xorg.freedesktop.org/releases/individual/proto/xproto-7.0.20.tar.gz \
+ 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.
+test -f xcb-proto-1.6.tar.gz || \
+wget http://xorg.freedesktop.org/releases/individual/xcb/xcb-proto-1.6.tar.gz
+test -f libXfont-1.4.3.tar.gz -a \
+ -f libxkbfile-1.0.7.tar.gz || \
+wget http://xorg.freedesktop.org/releases/individual/lib/libXfont-1.4.3.tar.gz \
+ http://xorg.freedesktop.org/releases/individual/lib/libxkbfile-1.0.7.tar.gz
+
+test -f xorg-server-1.9.3.901.tar.gz || \
+wget http://xorg.freedesktop.org/releases/individual/xserver/xorg-server-1.9.3.901.tar.gz
+
+#test -f talloc-2.0.1.tar.gz || {\
+# wget https://launchpad.net/ubuntu/+archive/primary/+files/talloc_2.0.1.orig.tar.bz2 && \
+# bunzip2 talloc_2.0.1.orig.tar.bz2 && \
+# mv talloc_2.0.1.orig.tar talloc-2.0.1.tar && \
+# 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.
+
+test -f libdrm-2.4.26.tar.gz || \
+ wget http://dri.freedesktop.org/libdrm/libdrm-2.4.26.tar.gz
+
+test -f MesaGLUT-7.11.tar.gz -a -f MesaLib-7.11.tar.gz ||\
+{ wget ftp://ftp.freedesktop.org/pub/mesa/7.11/MesaGLUT-7.11.tar.gz ; \
+ wget ftp://ftp.freedesktop.org/pub/mesa/7.11/MesaLib-7.11.tar.gz ; }
+
+# failing in 2012
+#test -f libXmu-libXmu-1.0.5.tar.gz || \
+# wget http://cgit.freedesktop.org/xorg/lib/libXmu/snapshot/libXmu-libXmu-1.0.5.tar.gz
+# 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.
+test -f libXmu-1.0.5.tar.gz || \
+ wget http://ftp.x.org/pub/individual/lib/libXmu-1.0.5.tar.gz

Powered by Google App Engine
This is Rietveld 408576698