| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # This is here to record where we fetched the source packages. | 6 # This is here to record where we fetched the source packages. |
| 7 | |
| 8 function getxfromy() { | 7 function getxfromy() { |
| 9 if [ \! -f "$1" ] ; then | 8 if [ \! -f "$1" ] ; then |
| 10 wget "$2"/"$1" | 9 wget -O "$1" "$2"/"${3-${1}}" |
| 11 fi | 10 fi |
| 12 } | 11 } |
| 13 | 12 |
| 14 getxfromy util-macros-1.11.0.tar.gz \ | 13 getxfromy util-macros-1.11.0.tar.gz \ |
| 15 http://xorg.freedesktop.org/releases/individual/util | 14 http://xorg.freedesktop.org/releases/individual/util |
| 16 | 15 |
| 17 getxfromy xproto-7.0.20.tar.gz \ | 16 getxfromy xproto-7.0.20.tar.gz \ |
| 18 http://xorg.freedesktop.org/releases/individual/proto | 17 http://xorg.freedesktop.org/releases/individual/proto |
| 19 | 18 |
| 20 getxfromy dri2proto-2.3.tar.gz \ | 19 getxfromy dri2proto-2.3.tar.gz \ |
| 21 http://xorg.freedesktop.org/releases/individual/proto | 20 http://xorg.freedesktop.org/releases/individual/proto |
| 22 | 21 |
| 23 getxfromy xcb-proto-1.6.tar.gz \ | 22 getxfromy xcb-proto-1.6.tar.gz \ |
| 24 http://xorg.freedesktop.org/releases/individual/xcb | 23 http://xorg.freedesktop.org/releases/individual/xcb |
| 25 | 24 |
| 26 getxfromy libXfont-1.4.3.tar.gz \ | 25 getxfromy libXfont-1.4.3.tar.gz \ |
| 27 http://xorg.freedesktop.org/releases/individual/lib | 26 http://xorg.freedesktop.org/releases/individual/lib |
| 28 | 27 |
| 29 getxfromy libxkbfile-1.0.7.tar.gz \ | 28 getxfromy libxkbfile-1.0.7.tar.gz \ |
| 30 http://xorg.freedesktop.org/releases/individual/lib | 29 http://xorg.freedesktop.org/releases/individual/lib |
| 31 | 30 |
| 32 getxfromy xorg-server-1.9.3.901.tar.gz \ | 31 getxfromy xorg-server-1.9.3.901.tar.gz \ |
| 33 http://xorg.freedesktop.org/releases/individual/xserver | 32 http://xorg.freedesktop.org/releases/individual/xserver |
| 34 | 33 |
| 35 getxfromy libdrm-2.4.26.tar.gz http://dri.freedesktop.org/libdrm | 34 getxfromy libdrm-2.4.26.tar.gz http://dri.freedesktop.org/libdrm |
| 36 getxfromy MesaGLUT-7.11.tar.gz ftp://ftp.freedesktop.org/pub/mesa/7.11 | 35 |
| 37 getxfromy MesaLib-7.11.tar.gz ftp://ftp.freedesktop.org/pub/mesa/7.11 | |
| 38 getxfromy libXmu-1.0.5.tar.gz http://ftp.x.org/pub/individual/lib | 36 getxfromy libXmu-1.0.5.tar.gz http://ftp.x.org/pub/individual/lib |
| 37 |
| 38 mesa=${MESA_VER-8.0.1} |
| 39 getxfromy MesaLib-${mesa}.tar.gz ftp://ftp.freedesktop.org/pub/mesa/${mesa} |
| OLD | NEW |