From 8420c610fa593699731a3a4b957a00f9baaeba0d Mon Sep 17 00:00:00 2001 From: iarspider Date: Thu, 1 Dec 2022 17:11:14 +0100 Subject: gnuplot: make readline optional (#34179) * gnuplot: make readline optional * Update package.py Co-authored-by: iarspider --- var/spack/repos/builtin/packages/gnuplot/package.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/var/spack/repos/builtin/packages/gnuplot/package.py b/var/spack/repos/builtin/packages/gnuplot/package.py index 6a2175c6a9..9dbc40905e 100644 --- a/var/spack/repos/builtin/packages/gnuplot/package.py +++ b/var/spack/repos/builtin/packages/gnuplot/package.py @@ -51,9 +51,10 @@ class Gnuplot(AutotoolsPackage): description="Enable PBM (Portable Bit Map) and other older bitmap terminals", ) variant("qt", default=False, description="Build with QT") + variant("readline", default=True, description="Build with readline") # required dependencies - depends_on("readline") + depends_on("readline", when="+readline") depends_on("pkgconfig", type="build") depends_on("libxpm") depends_on("iconv") @@ -79,9 +80,10 @@ class Gnuplot(AutotoolsPackage): "--disable-silent-rules", # Per upstream: "--with-tutorial is horribly out of date." "--without-tutorial", - "--with-readline=%s" % spec["readline"].prefix, ] + options += self.with_or_without("readline", "prefix") + if "+pbm" in spec: options.append("--with-bitmap-terminals") else: -- cgit v1.2.3-70-g09d2