summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ncview/package.py
blob: 2c1ffed53d2f02d0ace8463ece2a3ed25a305af9 (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
# Copyright 2013-2023 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 Ncview(AutotoolsPackage):
    """Simple viewer for NetCDF files."""

    homepage = "https://cirrus.ucsd.edu/ncview/"

    license("GPL-3.0-only")

    version("2.1.9", sha256="e2317ac094af62f0adcf68421d70658209436aae344640959ec8975a645891af")
    version("2.1.8", sha256="e8badc507b9b774801288d1c2d59eb79ab31b004df4858d0674ed0d87dfc91be")
    version("2.1.7", sha256="a14c2dddac0fc78dad9e4e7e35e2119562589738f4ded55ff6e0eca04d682c82")

    depends_on("netcdf-c")
    depends_on("udunits")
    depends_on("libpng")
    depends_on("libxaw")

    def patch(self):
        # Disable the netcdf-c compiler check, save and restore the
        # modification timestamp of the file to prevent autoreconf.
        patched_file = "configure"
        with keep_modification_time(patched_file):
            filter_file(
                "if test x$CC_TEST_SAME != x$NETCDF_CC_TEST_SAME; then",
                "if false; then",
                patched_file,
                string=True,
            )

    def url_for_version(self, version):
        if version >= Version("2.1.9"):
            return "https://cirrus.ucsd.edu/~pierce/ncview/ncview-2.1.9.tar.gz"
        else:
            return "ftp://cirrus.ucsd.edu/pub/ncview/ncview-2.1.7.tar.gz"