summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/postgis/package.py
blob: 9101f5fa50d0e3f5d7a4f4202f6debadfb22e330 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class Postgis(AutotoolsPackage):
    """
    PostGIS is a spatial database extender for PostgreSQL object-relational
    database. It adds support for geographic objects allowing location
    queries to be run in SQL
    """

    homepage = "https://postgis.net/"
    url      = "https://download.osgeo.org/postgis/source/postgis-2.5.3.tar.gz"

    version('3.0.1', sha256='5a5432f95150d9bae9215c6d1c7bb354e060482a7c379daa9b8384e1d03e6353')
    version('3.0.0', sha256='c06fd2cd5cea0119106ffe17a7235d893c2bbe6f4b63c8617c767630973ba594')
    version('2.5.3', sha256='72e8269d40f981e22fb2b78d3ff292338e69a4f5166e481a77b015e1d34e559a')

    variant('gui', default=False, description='Build with GUI support, creating shp2pgsql-gui graphical interface to shp2pgsql')

    # Refs:
    # https://postgis.net/docs/postgis_installation.html
    # https://postgis.net/source/

    depends_on('postgresql')
    depends_on('geos')
    depends_on('proj')
    depends_on('gdal')
    depends_on('libxml2')
    depends_on('json-c')

    depends_on('sfcgal')
    depends_on('pcre')
    depends_on('perl', type=('build', 'run'))
    depends_on('protobuf-c')

    depends_on('gtkplus@:2.24.32', when='+gui')

    def setup_build_environment(self, env):
        env.set('POSTGIS_GDAL_ENABLED_DRIVERS', 'ENABLE_ALL')

    def setup_run_environment(self, env):
        env.set('POSTGIS_GDAL_ENABLED_DRIVERS', 'ENABLE_ALL')

    def configure_args(self):
        args = []
        args.append('--with-sfcgal=' + str(self.spec['sfcgal'].prefix.bin) +
                    '/sfcgal-config')
        if '+gui' in self.spec:
            args.append('--with-gui')
        return args

    # By default package installs under postgresql prefix.
    # Apparently this is a known bug:
    # https://postgis.net/docs/postgis_installation.html
    # The following modifacations that fixed this issue are found in
    # Guix recipe for postgis.
    # https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/geo.scm#n720

    def build(self, spec, prefix):
        make('bindir=' + prefix.bin, 'libdir=' + prefix.lib,
             'pkglibdir=' + prefix.lib, 'datadir=' + prefix.share,
             'docdir=' + prefix.share.doc)

    def install(self, spec, prefix):
        make('install', 'bindir=' + prefix.bin, 'libdir=' + prefix.lib,
             'pkglibdir=' + prefix.lib, 'datadir=' + prefix.share,
             'docdir=' + prefix.share.doc)

    @run_before('build')
    def fix_raster_bindir(self):
        makefile = FileFilter('raster/loader/Makefile')
        makefile.filter('$(DESTDIR)$(PGSQL_BINDIR)', self.prefix.bin,
                        string=True)
        makefile = FileFilter('raster/scripts/Makefile')
        makefile.filter('$(DESTDIR)$(PGSQL_BINDIR)', self.prefix.bin,
                        string=True)