summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/wcslib/package.py
blob: fe5f87f4abd36210e29f654132de4eeec8810d5f (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
# 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 Wcslib(AutotoolsPackage):
    """WCSLIB a C implementation of the coordinate transformations
    defined in the FITS WCS papers."""

    homepage = "https://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/"
    url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-7.3.tar.bz2"

    license("LGPL-3.0-or-later")

    version("7.3", sha256="4b01cf425382a26ca4f955ed6841a5f50c55952a2994367f8e067e4183992961")
    version("6.4", sha256="13c11ff70a7725563ec5fa52707a9965fce186a1766db193d08c9766ea107000")

    variant("cfitsio", default=False, description="Include CFITSIO support")
    variant("x", default=False, description="Use the X Window System")

    depends_on("gmake", type="build")
    depends_on("flex@2.5.9:", type="build")
    depends_on("cfitsio", when="+cfitsio")
    depends_on("libx11", when="+x")

    def configure_args(self):
        spec = self.spec

        # TODO: Add PGPLOT package
        args = ["--without-pgplot"]

        if "+cfitsio" in spec:
            args.extend(
                [
                    "--with-cfitsio",
                    "--with-cfitsiolib={0}".format(spec["cfitsio"].libs.directories[0]),
                    "--with-cfitsioinc={0}".format(spec["cfitsio"].headers.directories[0]),
                ]
            )
        else:
            args.append("--without-cfitsio")

        if "+x" in spec:
            args.append("--with-x")
        else:
            args.append("--without-x")

        return args

    @run_after("install")
    def darwin_fix(self):
        # The shared library is not installed correctly on Darwin; fix this
        if self.spec.satisfies("platform=darwin"):
            fix_darwin_install_name(self.prefix.lib)