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 |