2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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)
|
|
|
|
|
2016-06-16 15:56:53 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Xfindproxy(AutotoolsPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""xfindproxy is used to locate available X11 proxy services.
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
It utilizes the Proxy Management Protocol to communicate with a proxy
|
|
|
|
manager. The proxy manager keeps track of all available proxy
|
|
|
|
services, starts new proxies when necessary, and makes sure that
|
|
|
|
proxies are shared whenever possible."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/xfindproxy"
|
|
|
|
url = "https://www.x.org/archive/individual/app/xfindproxy-1.0.4.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.0.4', sha256='fa6152fcf9c16fbb2ef52259731df5df899a39a86894b0508456613f26ff924a')
|
2016-10-12 00:42:20 +08:00
|
|
|
|
|
|
|
depends_on('libice')
|
|
|
|
depends_on('libxt')
|
|
|
|
|
|
|
|
depends_on('xproto', type='build')
|
|
|
|
depends_on('xproxymanagementprotocol', type='build')
|
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')
|