
* py-matplotlib: add v3.8.4 * matplotlib requires exact version of freetype for tests to pass * Add version constraints to fontconfig deps * Fix freetype build * Freetype cmake build is useless * Typo * Fix download * Fix build of older freetype * cmake is useless
108 lines
4.6 KiB
Python
108 lines
4.6 KiB
Python
# Copyright 2013-2024 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.package import *
|
|
|
|
|
|
class Cairo(AutotoolsPackage):
|
|
"""Cairo is a 2D graphics library with support for multiple output
|
|
devices."""
|
|
|
|
homepage = "https://www.cairographics.org/"
|
|
url = "https://www.cairographics.org/releases/cairo-1.16.0.tar.xz"
|
|
|
|
license("LGPL-2.1-or-later OR MPL-1.1", checked_by="tgamblin")
|
|
|
|
version("1.18.0", sha256="243a0736b978a33dee29f9cca7521733b78a65b5418206fef7bd1c3d4cf10b64")
|
|
version(
|
|
"1.17.4",
|
|
sha256="74b24c1ed436bbe87499179a3b27c43f4143b8676d8ad237a6fa787401959705",
|
|
url="https://cairographics.org/snapshots/cairo-1.17.4.tar.xz",
|
|
) # Snapshot
|
|
version(
|
|
"1.17.2",
|
|
sha256="6b70d4655e2a47a22b101c666f4b29ba746eda4aa8a0f7255b32b2e9408801df",
|
|
url="https://cairographics.org/snapshots/cairo-1.17.2.tar.xz",
|
|
) # Snapshot
|
|
version(
|
|
"1.16.0",
|
|
sha256="5e7b29b3f113ef870d1e3ecf8adf21f923396401604bda16d44be45e66052331",
|
|
preferred=True,
|
|
)
|
|
version("1.14.12", sha256="8c90f00c500b2299c0a323dd9beead2a00353752b2092ead558139bd67f7bf16")
|
|
version("1.14.8", sha256="d1f2d98ae9a4111564f6de4e013d639cf77155baf2556582295a0f00a9bc5e20")
|
|
version("1.14.0", sha256="2cf5f81432e77ea4359af9dcd0f4faf37d015934501391c311bfd2d19a0134b7")
|
|
|
|
variant("X", default=False, description="Build with X11 support")
|
|
variant("pdf", default=False, description="Enable cairo's PDF surface backend feature")
|
|
variant("gobject", default=False, description="Enable cairo's gobject functions feature")
|
|
variant("ft", default=False, description="Enable cairo's FreeType font backend feature")
|
|
variant("fc", default=False, description="Enable cairo's Fontconfig font backend feature")
|
|
variant("png", default=False, description="Enable cairo's PNG functions feature")
|
|
variant("svg", default=False, description="Enable cairo's SVN functions feature")
|
|
variant("shared", default=True, description="Build shared libraries")
|
|
variant("pic", default=True, description="Enable position-independent code (PIC)")
|
|
|
|
depends_on("libx11", when="+X")
|
|
depends_on("libxext", when="+X")
|
|
depends_on("libxrender", when="+X")
|
|
depends_on("libxcb", when="+X")
|
|
depends_on("python", when="+X", type="build")
|
|
depends_on("libpng", when="+png")
|
|
depends_on("librsvg", when="+svg")
|
|
depends_on("glib")
|
|
depends_on("pixman@0.36.0:", when="@1.17.2:")
|
|
depends_on("pixman")
|
|
depends_on("automake", type="build")
|
|
depends_on("autoconf", type="build")
|
|
depends_on("libtool", type="build")
|
|
depends_on("m4", type="build")
|
|
depends_on("freetype build_system=autotools", when="+ft")
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("fontconfig@2.10.91:", when="+fc") # Require newer version of fontconfig.
|
|
depends_on("which", type="build")
|
|
|
|
conflicts("+png", when="platform=darwin")
|
|
conflicts("+svg", when="platform=darwin")
|
|
conflicts("+shared~pic")
|
|
|
|
# patch from https://gitlab.freedesktop.org/cairo/cairo/issues/346
|
|
patch("fontconfig.patch", when="@1.16.0:1.17.2")
|
|
# Don't regenerate docs to avoid a dependency on gtk-doc
|
|
patch("disable-gtk-docs.patch", when="^autoconf@2.70:")
|
|
|
|
def autoreconf(self, spec, prefix):
|
|
# Regenerate, directing the script *not* to call configure before Spack
|
|
# does
|
|
which("sh")("./autogen.sh", extra_env={"NOCONFIGURE": "1"})
|
|
|
|
def configure_args(self):
|
|
args = ["--disable-trace", "--enable-tee"] # can cause problems with libiberty
|
|
|
|
if "+X" in self.spec:
|
|
args.extend(["--enable-xlib", "--enable-xcb"])
|
|
else:
|
|
args.extend(["--disable-xlib", "--disable-xcb"])
|
|
|
|
args.extend(self.enable_or_disable("pdf"))
|
|
args.extend(self.enable_or_disable("gobject"))
|
|
args.extend(self.enable_or_disable("ft"))
|
|
args.extend(self.enable_or_disable("fc"))
|
|
args.extend(self.enable_or_disable("shared"))
|
|
args.extend(self.with_or_without("pic"))
|
|
|
|
if self.spec.satisfies("+ft ^freetype~shared"):
|
|
pkgconf = which("pkg-config")
|
|
ldflags = pkgconf("--libs-only-L", "--static", "freetype2", output=str)
|
|
libs = pkgconf("--libs-only-l", "--static", "freetype2", output=str)
|
|
args.append(f"LDFLAGS={ldflags}")
|
|
args.append(f"LIBS={libs}")
|
|
|
|
return args
|
|
|
|
def check(self):
|
|
"""The checks are only for the cairo devs: They write others shouldn't bother"""
|
|
pass
|