29 lines
948 B
Python
29 lines
948 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Xfwp(AutotoolsPackage, XorgPackage):
|
|
"""xfwp proxies X11 protocol connections, such as through a firewall."""
|
|
|
|
homepage = "https://gitlab.freedesktop.org/xorg/app/xfwp"
|
|
xorg_mirror_path = "app/xfwp-1.0.3.tar.gz"
|
|
|
|
version("1.0.3", sha256="6fe243bde0374637e271a3f038b5d6d79a04621fc18162727782392069c5c04d")
|
|
|
|
depends_on("c", type="build")
|
|
|
|
depends_on("libice")
|
|
|
|
depends_on("xproto", type="build")
|
|
depends_on("xproxymanagementprotocol", type="build")
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("util-macros", type="build")
|
|
|
|
# Fixes this and a long list of other compilation errors:
|
|
# io.c:1039:7: error: implicit declaration of function 'swab'
|
|
def setup_build_environment(self, env):
|
|
env.append_flags("CPPFLAGS", "-D_GNU_SOURCE")
|