2018-10-07 13:52:23 -07:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-16 00:56:53 -07:00
|
|
|
#
|
2018-10-07 13:52:23 -07:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-16 00:56:53 -07:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 01:50:00 -07:00
|
|
|
|
2017-01-18 12:34:09 -06:00
|
|
|
class Xconsole(AutotoolsPackage):
|
2016-10-11 11:42:20 -05:00
|
|
|
"""xconsole displays in a X11 window the messages which are usually sent
|
|
|
|
to /dev/console."""
|
2016-06-16 00:56:53 -07:00
|
|
|
|
2016-10-11 11:42:20 -05:00
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/xconsole"
|
|
|
|
url = "https://www.x.org/archive/individual/app/xconsole-1.0.6.tar.gz"
|
2016-06-16 00:56:53 -07:00
|
|
|
|
2016-10-11 11:42:20 -05:00
|
|
|
version('1.0.6', '46cb988e31a0cf9a02c2bbc4a82bd572')
|
|
|
|
|
|
|
|
depends_on('libxaw')
|
|
|
|
depends_on('libxmu')
|
|
|
|
depends_on('libxt@1.0:')
|
|
|
|
depends_on('libx11')
|
|
|
|
|
|
|
|
depends_on('xproto@7.0.17:')
|
2017-11-23 16:05:38 +01:00
|
|
|
depends_on('pkgconfig', type='build')
|
2016-10-11 11:42:20 -05:00
|
|
|
depends_on('util-macros', type='build')
|