diff options
| author | Pete Deffendol | 2011-09-15 23:15:17 -0600 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-16 17:38:29 -0700 |
| commit | eab7bcadad04403700a08ea46baaaab4c7463fd5 (patch) | |
| tree | 5e25c4a00c26ba4227be48de628c1eb6d8e2dc17 | |
| parent | 07db5e1213441fad6310f1c4ebab9737a59c8075 (diff) | |
| download | homebrew-eab7bcadad04403700a08ea46baaaab4c7463fd5.tar.bz2 | |
MapServer: updated to 6.0.1
Also removes a patch that is no longer required.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
| -rw-r--r-- | Library/Formula/mapserver.rb | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Library/Formula/mapserver.rb b/Library/Formula/mapserver.rb index 6908ffccc..282c42c6a 100644 --- a/Library/Formula/mapserver.rb +++ b/Library/Formula/mapserver.rb @@ -1,23 +1,17 @@ require 'formula' class Mapserver < Formula - url 'http://download.osgeo.org/mapserver/mapserver-6.0.0.tar.gz' + url 'http://download.osgeo.org/mapserver/mapserver-6.0.1.tar.gz' homepage 'http://mapserver.org/' - md5 '5bcb1a6fb4a743e9f069466fbdf4ab76' + md5 'b96287449dcbca9a2fcea3a64905915a' depends_on 'gd' depends_on 'proj' depends_on 'gdal' - depends_on 'libagg' - - def patches - # http://trac.osgeo.org/mapserver/ticket/3877 (patch from the 6.0 release branch) - { :p4 => "http://trac.osgeo.org/mapserver/changeset/11714?format=diff&new=11714" } - end def install system "./configure", "--prefix=#{prefix}", "--with-png=/usr/X11", - "--with-proj", "--with-gdal", "--with-agg" + "--with-proj", "--with-gdal" system "make" bin.install "mapserv" end |
