summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xphelloworld/package.py
blob: 3eec5ffc2163e5793234a89a95d5dff4546cd959 (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
# 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 Xphelloworld(AutotoolsPackage, XorgPackage):
    """Xprint sample applications."""

    homepage = "https://cgit.freedesktop.org/xorg/app/xphelloworld"
    xorg_mirror_path = "app/xphelloworld-1.0.1.tar.gz"

    version("1.0.1", sha256="ead6437c4dc9540698a41e174c9d1ac792de07baeead81935d72cb123196f866")

    depends_on("libx11")
    depends_on("libxaw")
    depends_on("libxprintapputil")
    depends_on("libxprintutil")
    depends_on("libxp")
    depends_on("libxt")

    # FIXME: xphelloworld requires libxaw8, but libxaw only provides 6 and 7.
    # It looks like xprint support was removed from libxaw at some point.
    # But even the oldest version of libxaw doesn't build libxaw8.

    depends_on("pkgconfig", type="build")
    depends_on("util-macros", type="build")