summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mapnik/package.py
blob: 25d69f4e561253907665e3ce275daa0efd079359 (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
# 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 *
from spack.pkg.builtin.boost import Boost


class Mapnik(AutotoolsPackage):
    """
    mapnik combines pixel-perfect image output with lightning-fast
    cartographic algorithms, and exposes interfaces in C++, Python, and Node
    """

    homepage = "https://mapnik.org/"
    url      = "https://github.com/mapnik/mapnik/releases/download/v3.0.22/mapnik-v3.0.22.tar.bz2"

    version('3.0.23', sha256='4b1352e01f7ce25ab099e586d7ae98e0b74145a3bf94dd365cb0a2bdab3b9dc2')
    version('3.0.22', sha256='930612ad9e604b6a29b9cea1bc1de85cf7cf2b2b8211f57ec8b6b94463128ab9')

    depends_on('python', type=('build', 'run'))
    depends_on('boost@:1.72.0 +regex+filesystem+system+icu+program_options cxxstd=11', when='@3.0.23')
    depends_on('boost@:1.69.0 +regex+filesystem+system+icu+program_options cxxstd=11', when='@3.0.22')

    # TODO: replace this with an explicit list of components of Boost,
    # for instance depends_on('boost +filesystem')
    # See https://github.com/spack/spack/pull/22303 for reference
    depends_on(Boost.with_default_variants)
    depends_on('icu4c')
    depends_on('zlib')
    depends_on('freetype')
    depends_on('libxml2')
    depends_on('harfbuzz')
    depends_on('libpng')
    depends_on('libjpeg')
    depends_on('libtiff')
    depends_on('proj')
    depends_on('cairo+pdf')  # +pdf needed for mapnik.printing
    depends_on('postgresql', type=('build', 'link', 'run'))
    depends_on('gdal', type=('build', 'link', 'run'))
    depends_on('sqlite+rtree', type=('build', 'link', 'run'))
    depends_on('libwebp')

    def setup_build_environment(self, env):
        spec = self.spec
        env.set('GDAL_DATA', spec['gdal'].prefix.share.gdal)

    def configure_args(self):
        return [
            'CXXFLAGS="-std=c++11"',
            'PREFIX=' + self.prefix,
            'BOOST_INCLUDES=' + self.spec['boost'].prefix.include,
            'BOOST_LIBS=' + self.spec['boost'].prefix.lib.directories[0],
            'PROJ_INCLUDES=' + self.spec['proj'].prefix.include,
            'PROJ_LIBS=' + self.spec['proj'].prefix.lib.directories[0],
            'CAIRO_INCLUDES=' + self.spec['cairo'].prefix.include,
            'CAIRO_LIBS=' + self.spec['cairo'].prefix.lib.directories[0],
        ]