2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-16 15:56:53 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2020-04-15 11:54:16 +08:00
|
|
|
class Dmxproto(AutotoolsPackage, XorgPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""Distributed Multihead X (DMX) Extension.
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
This extension defines a protocol for clients to access a front-end proxy
|
|
|
|
X server that controls multiple back-end X servers making up a large
|
|
|
|
display."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "http://dmx.sourceforge.net/"
|
2020-04-15 11:54:16 +08:00
|
|
|
xorg_mirror_path = "proto/dmxproto-2.3.1.tar.gz"
|
2016-10-12 00:42:20 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2.3.1', sha256='3262bbf5902211a3ce88f5c6ab4528145ff84f69c52fd386ae0312bc45fb8a40')
|
2016-10-12 00:42:20 +08:00
|
|
|
|
2017-11-23 23:05:38 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|
2016-10-12 00:42:20 +08:00
|
|
|
depends_on('util-macros', type='build')
|