summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libx11/package.py
blob: 89c3bd28a1af8e1a37d865495acbf2cf0681c156 (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
# Copyright 2013-2024 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 Libx11(AutotoolsPackage, XorgPackage):
    """libX11 - Core X11 protocol client library."""

    homepage = "https://www.x.org/"
    xorg_mirror_path = "lib/libX11-1.6.7.tar.gz"

    license("X11")

    version("1.8.4", sha256="efd3a3a43c1f177edc2c205bedb0719b6648203595e54c0b83a32576aeaca7cd")
    version("1.7.0", sha256="c48ec61785ec68fc6a9a6aca0a9578393414fe2562e3cc9cca30234345c7b6ac")
    version("1.6.7", sha256="f62ab88c2a87b55e1dc338726a55bb6ed8048084fe6a3294a7ae324ca45159d1")
    version("1.6.5", sha256="3abce972ba62620611fab5b404dafb852da3da54e7c287831c30863011d28fb3")
    version("1.6.3", sha256="0b03b9d22f4c9e59b4ba498f294e297f013cae27050dfa0f3496640200db5376")

    depends_on("libxcb@1.1.92:")

    depends_on("xproto@7.0.25:", when="@1.7.0:")
    depends_on("xproto@7.0.17:")
    depends_on("xextproto")
    depends_on("xtrans")
    depends_on("kbproto")
    depends_on("inputproto")
    depends_on("pkgconfig", type="build")
    depends_on("util-macros", type="build")
    depends_on("perl", type="build")

    def configure_args(self):
        config_args = []

        # -Werror flags are not properly interpreted by the NVIDIA compiler
        if self.spec.satisfies("%nvhpc@:20.11"):
            config_args.append("--disable-selective-werror")

        return config_args

    def setup_dependent_build_environment(self, env, dependent_spec):
        env.prepend_path("XLOCALEDIR", self.prefix.share.X11.locale)

    def setup_dependent_run_environment(self, env, dependent_spec):
        env.prepend_path("XLOCALEDIR", self.prefix.share.X11.locale)

    @property
    def libs(self):
        for dir in ["lib64", "lib"]:
            libs = find_libraries(
                "libX11", join_path(self.prefix, dir), shared=True, recursive=False
            )
            if libs:
                return libs
        return None