pkgsrc/graphics/py-matplotlib/Makefile

37 lines
1.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.69 2021/06/29 08:42:00 nia Exp $
DISTNAME= matplotlib-3.4.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
py-matplotlib: updated to 3.1.0 REL: v3.1.0 The first release of the v3.1 series This version of Matplotlib support Python 3.6+ Highlights of this release include: - A helper method for scatter legends - Secondary axis support (ex, degrees and radians) - A concise date formatter - No longer requires a framework build of Python to use OSX backend - Major and minor ticks will no longer collide by default - A progress callback for animations - mplot3D is always registered - deprecated mlab functions have been removed - Many function calls have become stricter about invalid or ignored input REL: v3.0.3 The third and last planned bug-fix release of the 3.0 series * fix several possible memory leaks * documentation fixes jquery-ui is no longer bundled in git repo and is downloaded during the install or sdist process. If you are installing from pypi the files will be included, but if you are installing from git you will need internet access the first time you run `pip install .`. The install process tries to cache the files and will not need internet access on future installations. REL: v3.0.2 This is the second bug-fix release for the v3.0 series. - Un-breaks basemap which was broken by partially restoring private APIs for cartopy. - Fixes bug in warning code when used in an embedded context. - Fixes crash when using Tk and closing the first open window before showing it - Many documentation improvements. - Restore a corner case on ColorBar tick usage. - Change the default behavior of `matplotlib.use` to silently allow more 'safe' switching after auto-discovery, but before starting an event loop. - Improvements to bounding box calculations. - Provide the correct length for RcParams instances. REL: v3.0.1 This is the first bug fix release for the 3.0 series which fixes several - Fix failure to import bug when used with backend-fallback on Python 3.6.7 and 3.7.1 - Fixed a number of failure to import bugs around finding fonts - Fix Qt4 backend - Fix bug on OSX that recursively searched current directory for fonts - Fix bouncing-rocket on OSX when doing backend fallback and not selecting OSX - Temporarily restore several private APIs to unbreak cartopy - Make pyplot more tolerant of varying signatures in 3rd-party sub-classe - Improve datetime64 unit handling - Fixed several poor interactions with tight_layout REL: v3.0.0 The first release of the Matplotlib 3.0 series This is the first version of Matplotlib to only support Python 3. Highlights of this release include: - GUI backend is selected at run-time based on what toolkits are installed. A GUI toolkit will not be selected on a headless server. - New cyclic color map *twilight* - Improvements to automatic layout of titles, ticks, and GridSpec - Many bug fixes!
2019-06-16 15:11:34 +02:00
CATEGORIES= graphics python
MASTER_SITES= ${MASTER_SITE_PYPI:=m/matplotlib/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://matplotlib.org/
COMMENT= Matlab-style plotting package for Python
py-matplotlib: updated to 3.1.0 REL: v3.1.0 The first release of the v3.1 series This version of Matplotlib support Python 3.6+ Highlights of this release include: - A helper method for scatter legends - Secondary axis support (ex, degrees and radians) - A concise date formatter - No longer requires a framework build of Python to use OSX backend - Major and minor ticks will no longer collide by default - A progress callback for animations - mplot3D is always registered - deprecated mlab functions have been removed - Many function calls have become stricter about invalid or ignored input REL: v3.0.3 The third and last planned bug-fix release of the 3.0 series * fix several possible memory leaks * documentation fixes jquery-ui is no longer bundled in git repo and is downloaded during the install or sdist process. If you are installing from pypi the files will be included, but if you are installing from git you will need internet access the first time you run `pip install .`. The install process tries to cache the files and will not need internet access on future installations. REL: v3.0.2 This is the second bug-fix release for the v3.0 series. - Un-breaks basemap which was broken by partially restoring private APIs for cartopy. - Fixes bug in warning code when used in an embedded context. - Fixes crash when using Tk and closing the first open window before showing it - Many documentation improvements. - Restore a corner case on ColorBar tick usage. - Change the default behavior of `matplotlib.use` to silently allow more 'safe' switching after auto-discovery, but before starting an event loop. - Improvements to bounding box calculations. - Provide the correct length for RcParams instances. REL: v3.0.1 This is the first bug fix release for the 3.0 series which fixes several - Fix failure to import bug when used with backend-fallback on Python 3.6.7 and 3.7.1 - Fixed a number of failure to import bugs around finding fonts - Fix Qt4 backend - Fix bug on OSX that recursively searched current directory for fonts - Fix bouncing-rocket on OSX when doing backend fallback and not selecting OSX - Temporarily restore several private APIs to unbreak cartopy - Make pyplot more tolerant of varying signatures in 3rd-party sub-classe - Improve datetime64 unit handling - Fixed several poor interactions with tight_layout REL: v3.0.0 The first release of the Matplotlib 3.0 series This is the first version of Matplotlib to only support Python 3. Highlights of this release include: - GUI backend is selected at run-time based on what toolkits are installed. A GUI toolkit will not be selected on a headless server. - New cyclic color map *twilight* - Improvements to automatic layout of titles, ticks, and GridSpec - Many bug fixes!
2019-06-16 15:11:34 +02:00
# LICENSE= see ${WRKSRC}/LICENSE/LICENSE
py-matplotlib: updated to 3.3.3 v3.3.3 This release contains several critical bug-fixes: Fix calls to Axis.grid with argument visible=True. Fix fully masked imshow. Fix inconsistent color mapping in scatter for 3D plots. Fix notebook/nbAgg figures when used with ipywidgets in the same cell. Fix notebook/nbAgg/WebAgg on older (e.g., Firefox ESR) browsers. Fix pcolormesh with datetime coordinates. Fix performance regression with datetimes. Fix singular ticks with small log ranges. Fix timers/animations on wx and notebook backends. Remove certifi as a hard runtime dependency. v3.3.2 This release contains several critical bug-fixes: fix Axis scale on twinned Axes fix auto-close of Figures in nbagg fix automatic title placement if Axes is off the Figure fix autoranging of log scales with barstacked histogram fix extra redraws when using Button or TextBox widgets fix imshow with LogNorm and large vmin/vmax ranges fix plotting Pandas DataFrame with string MultiIndex fix scatter with marker='' fix scatter3d color/linewidth re-projection fix state of mode buttons in TkAgg backends include license files in built distribution reduce Visual C++ runtime requirements on Windows v3.3.1 This release contains several critical bug-fixes: fix docstring import issues when running Python with optimization fix hist with categorical data, such as with Pandas fix install on BSD systems fix nbagg compatibility with Chrome 84+ fix ordering of scatter marker size in 3D plots fix performance regression when plotting Paths fix reading from URL in imread fix several regressions with new date epoch handling fix some bad constrained and tight layout interactions with colorbars fix use of customized toolbars in TkAgg and WXAgg backends v3.3.0 Highlights of this release include: Provisional API for composing semantic axes layouts from text or nested lists New Axes.sharex, Axes.sharey methods Turbo colormap colors.BoundaryNorm supports extend keyword argument Text color for legend labels Pcolor and Pcolormesh now accept shading='nearest' and 'auto' Allow tick formatters to be set with str or function inputs New Axes.axline method Dates use a modern epoch Improved font weight detection Axes3D no longer distorts the 3D plot to match the 2D aspect ratio More consistent toolbar behavior across backends Toolbar icons are now styled for dark themes Cursor text now uses a number of significant digits matching pointing precision Functions to compute a Path's size savefig() gained a backend keyword argument Saving SVG now supports adding metadata Saving PDF metadata via PGF now consistent with PDF backend NbAgg and WebAgg no longer use jQuery & jQuery UI
2021-01-10 21:27:33 +01:00
DEPENDS+= ${PYPKGPREFIX}-Pillow>=6.2.0:../../graphics/py-Pillow
DEPENDS+= ${PYPKGPREFIX}-cairo-[0-9]*:../../graphics/py-cairo
py-matplotlib: updated to 2.2.2 v2.2.2 LTS This release fixes a number of critical bugs: - restores matplotlib.verbose (fixing embedding in pycharm) - preserve precision when color mapping small portions of data with extreme outliers - fixes saving long movies with ffmpeg - fixes UnbourdLocal error in contour labeling - fixes import failure on python 3.4.0 and 3.4.1 - fixes compile time failures with clang on 32bit platforms - fixes an icon in the Tk backends - fixes several issues with Tables - fixes expanding offset boxes with tight_layout - revert changes to the font caching to avoid a possible bug in backports.lru_cache - numerous docstring and documentation fixes We have reverted the deprecation of font_manager.TempCache. v2.2.1 did not actually restore matplotlib.verbose. v2.2.1 LTS This release fixes a number of critical bugs: - restores matplotlib.verbose (fixing embedding in pycharm) - preserve precision when color mapping small portions of data with extreme outliers - fixes saving long movies with ffmpeg - fixes UnbourdLocal error in contour labeling - fixes import failure on python 3.4.0 and 3.4.1 - fixes compile time failures with clang on 32bit platforms - fixes an icon in the Tk backends - fixes several issues with Tables - fixes expanding offset boxes with tight_layout - revert changes to the font caching to avoid a possible bug in backports.lru_cache - numerous docstring and documentation fixes We have reverted the deprecation of font_manager.TempCache. v2.2.0 LTS This release includes new features including: - An experimental constrained layout manager - Color blind friendly color map (cividis) and color cycle (tableau-colorblind10) - native support for numpy.datetime64 types - animated gif writing via pillow - TkAgg now works with pypy - cairo based backends for Qt, Tk, and WX There are several API changes in this release: - To support the constrained layout Matplotlib has a new required dependency (kiwisolver). - The matplotlib.finance module has been removed, development has moved to a stand-alone project.
2018-04-14 14:52:56 +02:00
DEPENDS+= ${PYPKGPREFIX}-cycler>=0.10:../../graphics/py-cycler
py-matplotlib: updated to 3.4.1 What's new in Matplotlib 3.4.0 * Figure and Axes creation / management - New subfigure functionality - Single-line string notation for subplot_mosaic - Changes to behavior of Axes creation methods (gca, add_axes, add_subplot) - add_subplot/add_axes gained an axes_class parameter - Subplot and subplot2grid can now work with constrained layout * Plotting methods - axline supports transform parameter - New automatic labeling for bar charts - A list of hatches can be specified to bar and barh - Setting BarContainer orientation - Contour plots now default to using ScalarFormatter - Axes.errorbar cycles non-color properties correctly - errorbar errorevery parameter matches markevery - hexbin supports data reference for C parameter - Support callable for formatting of Sankey labels - Axes.spines access shortcuts - New stairs method and StepPatch artist - Added orientation parameter for stem plots - Angles on Bracket arrow styles - TickedStroke patheffect * Colors and colormaps - Collection color specification and mapping - Transparency (alpha) can be set as an array in collections - pcolormesh has improved transparency handling by enabling snapping - IPython representations for Colormap objects - Colormap.set_extremes and Colormap.with_extremes - Get under/over/bad colors of Colormap objects - New cm.unregister_cmap function - New CenteredNorm for symmetrical data around a center - New FuncNorm for arbitrary normalizations - GridSpec-based colorbars can now be positioned above or to the left of the main axes * Titles, ticks, and labels - supxlabel and supylabel - Shared-axes subplots tick label visibility is now correct for top or left labels - An iterable object with labels can be passed to Axes.plot * Fonts and Text - Text transform can rotate text direction - matplotlib.mathtext now supports overset and underset LaTeX symbols - math_fontfamily parameter to change Text font family - TextArea/AnchoredText support horizontalalignment - PDF supports URLs on Text artists * rcParams improvements - New rcParams for dates: set converter and whether to use interval_multiples - Date formatters now respect usetex rcParam - Setting image.cmap to a Colormap - Tick and tick label colors can be set independently using rcParams * 3D Axes improvements - Errorbar method in 3D Axes - Stem plots in 3D Axes - 3D Collection properties are now modifiable - Panning in 3D Axes * Interactive tool improvements - New RangeSlider widget - Sliders can now snap to arbitrary values - Pausing and Resuming Animations * Sphinx extensions - plot_directive caption option * Backend-specific improvements - Consecutive rasterized draws now merged - Support raw/rgba frame format in FFMpegFileWriter - nbAgg/WebAgg support middle-click and double-click - nbAgg support binary communication - Indexed color for PNG images in PDF files when possible - Improved font subsettings in PDF/PS - Kerning added to strings in PDFs - Fully-fractional HiDPI in QtAgg - wxAgg supports fullscreen toggle
2021-05-05 12:11:29 +02:00
DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.7:../../time/py-dateutil
py-matplotlib: updated to 2.2.2 v2.2.2 LTS This release fixes a number of critical bugs: - restores matplotlib.verbose (fixing embedding in pycharm) - preserve precision when color mapping small portions of data with extreme outliers - fixes saving long movies with ffmpeg - fixes UnbourdLocal error in contour labeling - fixes import failure on python 3.4.0 and 3.4.1 - fixes compile time failures with clang on 32bit platforms - fixes an icon in the Tk backends - fixes several issues with Tables - fixes expanding offset boxes with tight_layout - revert changes to the font caching to avoid a possible bug in backports.lru_cache - numerous docstring and documentation fixes We have reverted the deprecation of font_manager.TempCache. v2.2.1 did not actually restore matplotlib.verbose. v2.2.1 LTS This release fixes a number of critical bugs: - restores matplotlib.verbose (fixing embedding in pycharm) - preserve precision when color mapping small portions of data with extreme outliers - fixes saving long movies with ffmpeg - fixes UnbourdLocal error in contour labeling - fixes import failure on python 3.4.0 and 3.4.1 - fixes compile time failures with clang on 32bit platforms - fixes an icon in the Tk backends - fixes several issues with Tables - fixes expanding offset boxes with tight_layout - revert changes to the font caching to avoid a possible bug in backports.lru_cache - numerous docstring and documentation fixes We have reverted the deprecation of font_manager.TempCache. v2.2.0 LTS This release includes new features including: - An experimental constrained layout manager - Color blind friendly color map (cividis) and color cycle (tableau-colorblind10) - native support for numpy.datetime64 types - animated gif writing via pillow - TkAgg now works with pypy - cairo based backends for Qt, Tk, and WX There are several API changes in this release: - To support the constrained layout Matplotlib has a new required dependency (kiwisolver). - The matplotlib.finance module has been removed, development has moved to a stand-alone project.
2018-04-14 14:52:56 +02:00
DEPENDS+= ${PYPKGPREFIX}-kiwisolver>=1.0.1:../../math/py-kiwisolver
py-matplotlib: updated to 3.4.1 What's new in Matplotlib 3.4.0 * Figure and Axes creation / management - New subfigure functionality - Single-line string notation for subplot_mosaic - Changes to behavior of Axes creation methods (gca, add_axes, add_subplot) - add_subplot/add_axes gained an axes_class parameter - Subplot and subplot2grid can now work with constrained layout * Plotting methods - axline supports transform parameter - New automatic labeling for bar charts - A list of hatches can be specified to bar and barh - Setting BarContainer orientation - Contour plots now default to using ScalarFormatter - Axes.errorbar cycles non-color properties correctly - errorbar errorevery parameter matches markevery - hexbin supports data reference for C parameter - Support callable for formatting of Sankey labels - Axes.spines access shortcuts - New stairs method and StepPatch artist - Added orientation parameter for stem plots - Angles on Bracket arrow styles - TickedStroke patheffect * Colors and colormaps - Collection color specification and mapping - Transparency (alpha) can be set as an array in collections - pcolormesh has improved transparency handling by enabling snapping - IPython representations for Colormap objects - Colormap.set_extremes and Colormap.with_extremes - Get under/over/bad colors of Colormap objects - New cm.unregister_cmap function - New CenteredNorm for symmetrical data around a center - New FuncNorm for arbitrary normalizations - GridSpec-based colorbars can now be positioned above or to the left of the main axes * Titles, ticks, and labels - supxlabel and supylabel - Shared-axes subplots tick label visibility is now correct for top or left labels - An iterable object with labels can be passed to Axes.plot * Fonts and Text - Text transform can rotate text direction - matplotlib.mathtext now supports overset and underset LaTeX symbols - math_fontfamily parameter to change Text font family - TextArea/AnchoredText support horizontalalignment - PDF supports URLs on Text artists * rcParams improvements - New rcParams for dates: set converter and whether to use interval_multiples - Date formatters now respect usetex rcParam - Setting image.cmap to a Colormap - Tick and tick label colors can be set independently using rcParams * 3D Axes improvements - Errorbar method in 3D Axes - Stem plots in 3D Axes - 3D Collection properties are now modifiable - Panning in 3D Axes * Interactive tool improvements - New RangeSlider widget - Sliders can now snap to arbitrary values - Pausing and Resuming Animations * Sphinx extensions - plot_directive caption option * Backend-specific improvements - Consecutive rasterized draws now merged - Support raw/rgba frame format in FFMpegFileWriter - nbAgg/WebAgg support middle-click and double-click - nbAgg support binary communication - Indexed color for PNG images in PDF files when possible - Improved font subsettings in PDF/PS - Kerning added to strings in PDFs - Fully-fractional HiDPI in QtAgg - wxAgg supports fullscreen toggle
2021-05-05 12:11:29 +02:00
DEPENDS+= ${PYPKGPREFIX}-pyparsing>=2.2.1:../../devel/py-pyparsing
BUILD_DEPENDS+= ${PYPKGPREFIX}-certifi>=2020.06.20:../../security/py-certifi
py-matplotlib: updated to 3.1.0 REL: v3.1.0 The first release of the v3.1 series This version of Matplotlib support Python 3.6+ Highlights of this release include: - A helper method for scatter legends - Secondary axis support (ex, degrees and radians) - A concise date formatter - No longer requires a framework build of Python to use OSX backend - Major and minor ticks will no longer collide by default - A progress callback for animations - mplot3D is always registered - deprecated mlab functions have been removed - Many function calls have become stricter about invalid or ignored input REL: v3.0.3 The third and last planned bug-fix release of the 3.0 series * fix several possible memory leaks * documentation fixes jquery-ui is no longer bundled in git repo and is downloaded during the install or sdist process. If you are installing from pypi the files will be included, but if you are installing from git you will need internet access the first time you run `pip install .`. The install process tries to cache the files and will not need internet access on future installations. REL: v3.0.2 This is the second bug-fix release for the v3.0 series. - Un-breaks basemap which was broken by partially restoring private APIs for cartopy. - Fixes bug in warning code when used in an embedded context. - Fixes crash when using Tk and closing the first open window before showing it - Many documentation improvements. - Restore a corner case on ColorBar tick usage. - Change the default behavior of `matplotlib.use` to silently allow more 'safe' switching after auto-discovery, but before starting an event loop. - Improvements to bounding box calculations. - Provide the correct length for RcParams instances. REL: v3.0.1 This is the first bug fix release for the 3.0 series which fixes several - Fix failure to import bug when used with backend-fallback on Python 3.6.7 and 3.7.1 - Fixed a number of failure to import bugs around finding fonts - Fix Qt4 backend - Fix bug on OSX that recursively searched current directory for fonts - Fix bouncing-rocket on OSX when doing backend fallback and not selecting OSX - Temporarily restore several private APIs to unbreak cartopy - Make pyplot more tolerant of varying signatures in 3rd-party sub-classe - Improve datetime64 unit handling - Fixed several poor interactions with tight_layout REL: v3.0.0 The first release of the Matplotlib 3.0 series This is the first version of Matplotlib to only support Python 3. Highlights of this release include: - GUI backend is selected at run-time based on what toolkits are installed. A GUI toolkit will not be selected on a headless server. - New cyclic color map *twilight* - Improvements to automatic layout of titles, ticks, and GridSpec - Many bug fixes!
2019-06-16 15:11:34 +02:00
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
USE_LANGUAGES= c c++
USE_TOOLS+= pkg-config
py-matplotlib: updated to 3.1.0 REL: v3.1.0 The first release of the v3.1 series This version of Matplotlib support Python 3.6+ Highlights of this release include: - A helper method for scatter legends - Secondary axis support (ex, degrees and radians) - A concise date formatter - No longer requires a framework build of Python to use OSX backend - Major and minor ticks will no longer collide by default - A progress callback for animations - mplot3D is always registered - deprecated mlab functions have been removed - Many function calls have become stricter about invalid or ignored input REL: v3.0.3 The third and last planned bug-fix release of the 3.0 series * fix several possible memory leaks * documentation fixes jquery-ui is no longer bundled in git repo and is downloaded during the install or sdist process. If you are installing from pypi the files will be included, but if you are installing from git you will need internet access the first time you run `pip install .`. The install process tries to cache the files and will not need internet access on future installations. REL: v3.0.2 This is the second bug-fix release for the v3.0 series. - Un-breaks basemap which was broken by partially restoring private APIs for cartopy. - Fixes bug in warning code when used in an embedded context. - Fixes crash when using Tk and closing the first open window before showing it - Many documentation improvements. - Restore a corner case on ColorBar tick usage. - Change the default behavior of `matplotlib.use` to silently allow more 'safe' switching after auto-discovery, but before starting an event loop. - Improvements to bounding box calculations. - Provide the correct length for RcParams instances. REL: v3.0.1 This is the first bug fix release for the 3.0 series which fixes several - Fix failure to import bug when used with backend-fallback on Python 3.6.7 and 3.7.1 - Fixed a number of failure to import bugs around finding fonts - Fix Qt4 backend - Fix bug on OSX that recursively searched current directory for fonts - Fix bouncing-rocket on OSX when doing backend fallback and not selecting OSX - Temporarily restore several private APIs to unbreak cartopy - Make pyplot more tolerant of varying signatures in 3rd-party sub-classe - Improve datetime64 unit handling - Fixed several poor interactions with tight_layout REL: v3.0.0 The first release of the Matplotlib 3.0 series This is the first version of Matplotlib to only support Python 3. Highlights of this release include: - GUI backend is selected at run-time based on what toolkits are installed. A GUI toolkit will not be selected on a headless server. - New cyclic color map *twilight* - Improvements to automatic layout of titles, ticks, and GridSpec - Many bug fixes!
2019-06-16 15:11:34 +02:00
PYSETUPTESTTARGET= pytest
Upgrade py-matplotlib to 1.5.2 pkgsrc changes: - add test target (Ran 5205 tests in 362.603s OK (KNOWNFAIL=468, SKIP=15)) - drop merged patches - rediff setup.py patch (it got renamed) upstream changes: REL: v1.5.2 Final planned release for the 1.5.x series. REL: v1.5.1 First bug fix release for 1.5.x series. REL: v1.5.0 This release of matplotlib has several major new features: Auto-redraw using the object-oriented API. Most plotting functions now support labeled data API. Color cycling has extended to all style properties. Four new perceptually uniform color maps, including the soon-to-be default 'viridis'. More included style sheets. Many small plotting improvements. Proposed new framework for managing the GUI toolbar and tools. REL: v1.4.3 This is the last planned bug-fix release in the 1.4 series. Many bugs are fixed including: fixing drawing of edge-only markers in AGG fix run-away memory usage when using %inline or saving with a tight bounding box with QuadMesh artists improvements to wx and tk gui backends Additionally the webagg and nbagg backends were brought closer to feature parity with the desktop backends with the addition of keyboard and scroll events thanks to Steven Silvester. REL: v1.4.2 Minor bug-fix release for 1.4 series regenerated pyplot.py REL: v1.4.1 Bug-fix release for the 1.4 series. reverts the changes to interactive plotting so ion will work as before in all cases fixed boxplot regressions fixes for finding freetype and libpng sundry unicode fixes (looking up user folders, importing seaborn/pandas/networkx with macosx backend) nbagg works with python 3 + new font awesome fixed saving dialogue in QT5 REL: v1.4.0 This release has contributions from ~170 authors (http://matplotlib.org/users/github_stats.html). This release contains many bug fixes as will as a number of new features. For the full list see http://matplotlib.org/users/whats_new.html#new-in-matplotlib-1-4. Some highlights are: style module : experimental package to make managing the style of matplotlib figures easier nbagg : interactive figures in ipython notebooks backed by the AGG renderer full python 3 support (including cairo backends) Qt5 support (for python 3 only) violin plots and 3D quiver plots (projects done for a course at University of Toronto, Scarborough) improved box plot interface
2016-08-04 02:04:18 +02:00
PYTHON_VERSIONS_INCOMPATIBLE= 27
PYTHON_VERSIONS_INCOMPATIBLE+= 36 # py-numpy
.include "../../devel/zlib/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../lang/python/egg.mk"
.include "../../math/py-numpy/buildlink3.mk"
.include "../../math/qhull/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"