homebrew-core/Formula/gdal.rb

239 lines
7.4 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Gdal < Formula
homepage 'http://www.gdal.org/'
url 'http://download.osgeo.org/gdal/1.10.0/gdal-1.10.0.tar.gz'
sha1 'e522b95056905e4c41047fdb42c0ca172ef3ad25'
2012-05-10 14:10:12 +00:00
head 'https://svn.osgeo.org/gdal/trunk/gdal'
2011-07-25 16:40:40 +00:00
option 'complete', 'Use additional Homebrew libraries to provide more drivers.'
option 'with-postgres', 'Specify PostgreSQL as a dependency.'
option 'with-mysql', 'Specify MySQL as a dependency.'
option 'enable-opencl', 'Build with OpenCL acceleration.'
option 'enable-armadillo', 'Build with Armadillo accelerated TPS transforms.'
option 'enable-unsupported', "Allow configure to drag in any library it can find. Invoke this at your own risk."
# For creating up to date man pages.
depends_on 'doxygen' => :build if build.head?
2012-04-19 20:49:00 +00:00
depends_on :python => :recommended
depends_on :libpng
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
depends_on 'jpeg'
depends_on 'giflib'
depends_on 'libtiff'
depends_on 'libgeotiff'
depends_on 'proj'
depends_on 'geos'
depends_on 'sqlite' # To ensure compatibility with SpatiaLite.
depends_on 'freexl'
depends_on 'libspatialite'
depends_on "postgresql" => :optional
depends_on "mysql" => :optional
2011-07-25 16:40:40 +00:00
# Without Numpy, the Python bindings can't deal with raster data.
depends_on 'numpy' => :python if build.with? 'python'
depends_on 'homebrew/science/armadillo' if build.include? 'enable-armadillo'
2012-05-07 20:32:01 +00:00
if build.include? 'complete'
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# Raster libraries
depends_on "netcdf" # Also brings in HDF5
depends_on "jasper"
depends_on "webp"
depends_on "cfitsio"
depends_on "epsilon"
depends_on "libdap"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# Vector libraries
depends_on "unixodbc" # OS X version is not complete enough
depends_on "xerces-c"
# Other libraries
depends_on "xz" # get liblzma compression algorithm library from XZutils
depends_on "poppler"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
end
def png_prefix
MacOS.version >= :mountain_lion ? HOMEBREW_PREFIX/"opt/libpng" : MacOS::X11.prefix
end
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
def get_configure_args
args = [
# Base configuration.
2012-04-19 20:49:00 +00:00
"--prefix=#{prefix}",
"--mandir=#{man}",
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
"--disable-debug",
"--with-local=#{prefix}",
"--with-threads",
"--with-libtool",
# GDAL native backends.
"--with-pcraster=internal",
"--with-pcidsk=internal",
"--with-bsb",
"--with-grib",
"--with-pam",
# Backends supported by OS X.
"--with-libiconv-prefix=/usr",
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
"--with-libz=/usr",
"--with-png=#{png_prefix}",
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
"--with-expat=/usr",
"--with-curl=/usr/bin/curl-config",
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# Default Homebrew backends.
"--with-jpeg=#{HOMEBREW_PREFIX}",
"--without-jpeg12", # Needs specially configured JPEG and TIFF libraries.
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
"--with-gif=#{HOMEBREW_PREFIX}",
"--with-libtiff=#{HOMEBREW_PREFIX}",
"--with-geotiff=#{HOMEBREW_PREFIX}",
"--with-sqlite3=#{Formula.factory('sqlite').opt_prefix}",
"--with-freexl=#{HOMEBREW_PREFIX}",
"--with-spatialite=#{HOMEBREW_PREFIX}",
"--with-geos=#{HOMEBREW_PREFIX}/bin/geos-config",
"--with-static-proj4=#{HOMEBREW_PREFIX}",
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# GRASS backend explicitly disabled. Creates a chicken-and-egg problem.
# Should be installed separately after GRASS installation using the
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# official GDAL GRASS plugin.
"--without-grass",
"--without-libgrass"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
]
# Optional Homebrew packages supporting additional formats.
supported_backends = %w[
liblzma
cfitsio
hdf5
netcdf
jasper
xerces
odbc
dods-root
epsilon
webp
poppler
]
if build.include? 'complete'
supported_backends.delete 'liblzma'
args << '--with-liblzma=yes'
args.concat supported_backends.map {|b| '--with-' + b + '=' + HOMEBREW_PREFIX}
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
else
args.concat supported_backends.map {|b| '--without-' + b} unless build.include? 'enable-unsupported'
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
end
# The following libraries are either proprietary, not available for public
# download or have no stable version in the Homebrew core that is
# compatible with GDAL. Interested users will have to install such software
# manually and most likely have to tweak the install routine.
#
# Podofo is disabled because Poppler provides the same functionality and
# then some.
unsupported_backends = %w[
gta
ogdi
fme
hdf4
openjpeg
fgdb
ecw
kakadu
mrsid
jp2mrsid
mrsid_lidar
msg
oci
ingres
libkml
dwgdirect
idb
sde
podofo
rasdaman
]
args.concat unsupported_backends.map {|b| '--without-' + b} unless build.include? 'enable-unsupported'
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# Database support.
args << (build.with?("postgres") ? "--with-pg=#{HOMEBREW_PREFIX}/bin/pg_config" : "--without-pg")
args << (build.with?("mysql") ? "--with-mysql=#{HOMEBREW_PREFIX}/bin/mysql_config" : "--without-mysql")
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# Python is installed manually to ensure everything is properly sandboxed.
args << '--without-python'
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# Scripting APIs that have not been re-worked to respect Homebrew prefixes.
#
# Currently disabled as they install willy-nilly into locations outside of
# the Homebrew prefix. Enable if you feel like it, but uninstallation may be
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# a manual affair.
#
# TODO: Fix installation of script bindings so they install into the
# Homebrew prefix.
args << "--without-perl"
args << "--without-php"
args << "--without-ruby"
args << (build.include?("enable-opencl") ? "--with-opencl" : "--without-opencl")
args << (build.include?("enable-armadillo") ? "--with-armadillo=yes" : "--with-armadillo=no")
2012-05-07 20:32:01 +00:00
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
return args
end
def install
# Linking flags for SQLite are not added at a critical moment when the GDAL
# library is being assembled. This causes the build to fail due to missing
# symbols. Also, ensure Homebrew SQLite is used so that Spatialite is
# functional.
#
# Fortunately, this can be remedied using LDFLAGS.
sqlite = Formula.factory 'sqlite'
ENV.append 'LDFLAGS', "-L#{sqlite.opt_prefix}/lib -lsqlite3"
ENV.append 'CFLAGS', "-I#{sqlite.opt_prefix}/include"
# Needed by libdap.
2013-06-14 00:29:28 +00:00
ENV.libxml2 if build.include? 'complete'
# Reset ARCHFLAGS to match how we build.
ENV['ARCHFLAGS'] = "-arch #{MacOS.preferred_arch}"
# Fix hardcoded mandir: http://trac.osgeo.org/gdal/ticket/5092
inreplace 'configure', %r[^mandir='\$\{prefix\}/man'$], ''
2012-04-19 20:49:00 +00:00
system "./configure", *get_configure_args
system "make"
system "make install"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
python do
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
# `python-config` may try to talk us into building bindings for more
# architectures than we really should.
2011-03-18 17:30:47 +00:00
if MacOS.prefer_64_bit?
ENV.append_to_cflags "-arch #{Hardware::CPU.arch_64_bit}"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
else
ENV.append_to_cflags "-arch #{Hardware::CPU.arch_32_bit}"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
end
cd 'swig/python' do
system python, "setup.py", "install", "--prefix=#{prefix}", "--record=installed.txt", "--single-version-externally-managed"
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
bin.install Dir['scripts/*']
end
end
2012-04-19 20:49:00 +00:00
system 'make', 'man' if build.head?
2012-04-19 20:49:00 +00:00
system 'make', 'install-man'
# Clean up any stray doxygen files.
Dir[bin + '*.dox'].each { |p| rm p }
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
end
def caveats
if python
python.standard_caveats +
<<-EOS.undent
This version of GDAL was built with Python support. In addition to providing
modules that makes GDAL functions available to Python scripts, the Python
binding provides ~18 additional command line tools.
Refactored GDAL formula to increase functionality The usefullness of the GDAL library is limited by the number of formats it supports. In light of this, the formula has been re-worked to provide maximum support for file formats without increasing the dependency list, with the exception of common image formats such as JPEG and GIF. Changes made in persuit of this goal are: - Removed libtiff as a dependency-- now provided by an internal GDAL library for support of the BigTIFF format. - Added `jpeg` and `giflib` as dependencies to complete support for common image file formats. - Enabled GDAL-native BSB, GRIB and PCRaster support. - Added support for Expat, CURL, and Sqlite3 which are provided by OS X. - Added support for `--HEAD` builds that compile from the gdal-dev source available via SVN. Also, disabled drivers have been grouped according to open-source/proprietary status. Additionally, a `--complete` installation option has been added. This option is will trigger the installation of additional Homebrew formulae that increase the capabilities of GDAL. By specifying the `--complete` flag, GDAL will now depend on and link against the following libraries in order to provide more drivers for reading and writing data: Raster Formats: - HDF5 - NetCDF - JasPer Vector Formats: - ODBC - LibSpatialite - Xerces-C Support for database servers has been added via the `--with-postgres` and `--with-mysql` flags. These will cause PostgreSQL or MySQL to be added the dependency list of GDAL. Python bindings are now built by default as they provide ~18 additional command line tools in addition to the Python module. The formula ensures that these bindings are installed into the Homebrew prefix and not some random Python site directory. Compilation of the bindings can be disabled by passing the `--without-python` flag to `brew install`. The Perl, PHP and Ruby bindings remain disabled as they install outside of the Homebrew prefix. Users may manually enable them at their discretion. Getting these bindings to install into the brew prefix is an area for further development. Finally, some cleanup of the configure options has occurred: - Removed invalid configuration options. - Fixed threading support. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-25 17:58:18 +00:00
EOS
end
end
end