diff options
| author | Jack Nagel | 2011-10-17 14:58:00 -0500 |
|---|---|---|
| committer | Jack Nagel | 2011-10-17 14:58:29 -0500 |
| commit | cdcccb0577dce3ba3cb2311282c3408365a3e3c9 (patch) | |
| tree | 7ab608be0fffbdcf3d64d881e24bb2bda1da4b75 | |
| parent | 81c5270a0a955a1f428871e42e4f3752fde6c34e (diff) | |
| download | homebrew-cdcccb0577dce3ba3cb2311282c3408365a3e3c9.tar.bz2 | |
Utilize mirror support where appropriate
These formulae were using mirrors before we added mirror support to
Homebrew; fix them.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/gd.rb | 7 | ||||
| -rw-r--r-- | Library/Formula/ossp-uuid.rb | 5 |
2 files changed, 4 insertions, 8 deletions
diff --git a/Library/Formula/gd.rb b/Library/Formula/gd.rb index 8452b7a35..a9ea29148 100644 --- a/Library/Formula/gd.rb +++ b/Library/Formula/gd.rb @@ -1,12 +1,9 @@ require 'formula' class Gd < Formula - # Official site has been down a lot, so use a mirror - # homepage "http://www.libgd.org" - # url "http://www.libgd.org/releases/gd-2.0.36RC1.tar.gz" - + url "http://www.libgd.org/releases/gd-2.0.36RC1.tar.gz" homepage "http://bitbucket.org/pierrejoye/gd-libgd" - url "http://download.osgeo.org/mapserver/libgd/gd-2.0.36RC1.tar.gz" + mirror "http://download.osgeo.org/mapserver/libgd/gd-2.0.36RC1.tar.gz" md5 "39ac48e6d5e0012a3bd2248a0102f209" head "http://bitbucket.org/pierrejoye/gd-libgd", :using => :hg diff --git a/Library/Formula/ossp-uuid.rb b/Library/Formula/ossp-uuid.rb index 5c4fd6b22..e73d3b875 100644 --- a/Library/Formula/ossp-uuid.rb +++ b/Library/Formula/ossp-uuid.rb @@ -1,9 +1,8 @@ require 'formula' class OsspUuid < Formula - # url 'ftp://ftp.ossp.org/pkg/lib/uuid/uuid-1.6.2.tar.gz' - # Official site is down, use a mirror - url 'http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-1.6.2.tar.gz' + url 'ftp://ftp.ossp.org/pkg/lib/uuid/uuid-1.6.2.tar.gz' + mirror 'http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-1.6.2.tar.gz' homepage 'http://www.ossp.org/pkg/lib/uuid/' md5 '5db0d43a9022a6ebbbc25337ae28942f' |
