1e8518ca36
Gist is a scientific graphics library written by David H. Munro of Lawrence Livermore National Laboratory. It features support for three common graphics output devices: X-Windows, (Color) PostScript, and ANSI/ISO Standard Computer Graphics Metafiles (CGM). The library is small (written directly to Xlib), portable, efficient, and full-featured. It produces x-vs-y plots with ``good'' tick marks and tick labels, 2-D quadrilateral mesh plots with contours, vector fields, or pseudocolor maps on such meshes, and a selection of 3-D plots. The Python Gist module utilizes the ``Numerical'' package due to J. Hugunin and others. It is therefore fast and able to handle large datasets. The Gist module includes an X-windows event dispatcher which can be dynamically added to the Python interpreter. This makes fast mouse-controlled zoom, pan, and other graphic operations available to the researcher while maintaining the usual Python command-line interface.
24 lines
777 B
Makefile
24 lines
777 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2011/03/07 10:45:51 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= pygist-1.5.28
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//}
|
|
CATEGORIES= graphics science python
|
|
MASTER_SITES= http://hifweb.lbl.gov/public/software/gist/
|
|
|
|
MAINTAINER= jihbed.research@gmail.com
|
|
HOMEPAGE= http://hifweb.lbl.gov/public/software/gist/
|
|
COMMENT= Gist is a scientific graphics library
|
|
#please see: http://hifweb.lbl.gov/public/software/gist/RELEASE
|
|
#LICENSE= # TODO: (see mk/license.mk)
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PYDISTUTILSPKG= yes
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../math/py-Numeric/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/xproto/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|