summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xphelloworld/package.py
blob: 31c5f00a92216e121e60aee013860e7e591b393a (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-2019 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 import *


class Xphelloworld(AutotoolsPackage):
    """Xprint sample applications."""

    homepage = "http://cgit.freedesktop.org/xorg/app/xphelloworld"
    url      = "https://www.x.org/archive/individual/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')