summaryrefslogtreecommitdiff
path: root/math/py-matplotlib/files/patch-mplsetup.cfg
diff options
context:
space:
mode:
authorWen Heping <wen@FreeBSD.org>2023-04-07 22:44:22 +0800
committerWen Heping <wen@FreeBSD.org>2023-04-07 22:48:00 +0800
commitf27cc9e0310a5be6f72c297e1d64c123ff83172f (patch)
tree80d4151e5e0c7d8160096ec57481ad77771ebb09 /math/py-matplotlib/files/patch-mplsetup.cfg
parentsysutils/cpu-x: try to further improve the port (part one) (diff)
math/py-matplotlib: Update to 3.7.1
PR: 270326 Reported by: wen@ Approved by: maintainer Exp-run by: antoine@
Diffstat (limited to 'math/py-matplotlib/files/patch-mplsetup.cfg')
-rw-r--r--math/py-matplotlib/files/patch-mplsetup.cfg41
1 files changed, 41 insertions, 0 deletions
diff --git a/math/py-matplotlib/files/patch-mplsetup.cfg b/math/py-matplotlib/files/patch-mplsetup.cfg
new file mode 100644
index 000000000000..99a3541ace30
--- /dev/null
+++ b/math/py-matplotlib/files/patch-mplsetup.cfg
@@ -0,0 +1,41 @@
+--- mplsetup.cfg.orig 2023-03-07 12:24:54 UTC
++++ mplsetup.cfg
+@@ -0,0 +1,38 @@
++# Rename this file to mplsetup.cfg to modify Matplotlib's build options.
++
++[libs]
++# By default, Matplotlib builds with LTO, which may be slow if you re-compile
++# often, and don't need the space saving/speedup.
++#
++#enable_lto = True
++#
++# By default, Matplotlib downloads and builds its own copies of FreeType and of
++# Qhull. You may set the following to True to instead link against a system
++# FreeType/Qhull. As an exception, Matplotlib defaults to the system version
++# of FreeType on AIX.
++#
++system_freetype = True
++system_qhull = True
++
++[packages]
++# Some of Matplotlib's components are optional: the MacOSX backend (installed
++# by default on MacOSX; requires the Cocoa headers included with XCode), and
++# the test data (i.e., the baseline image files; not installed by default).
++# You can control whether they are installed by uncommenting the following
++# lines. Note that the MacOSX backend is never built on Linux or Windows,
++# regardless of the config value.
++#
++#tests = False
++#macosx = True
++
++[rc_options]
++# User-configurable options
++#
++# Default backend, one of: Agg, Cairo, GTK3Agg, GTK3Cairo, GTK4Agg, GTK4Cairo,
++# MacOSX, Pdf, Ps, QtAgg, QtCairo, SVG, TkAgg, WX, WXAgg.
++#
++# The Agg, Ps, Pdf and SVG backends do not require external dependencies. Do
++# not choose MacOSX if you have disabled the relevant extension modules. The
++# default is determined by fallback.
++#
++backend = TkAgg