mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
Remove pygist. This port has been broken since the upgrade of lang/yorick
and it's no longer being developed.
This commit is contained in:
parent
57c035d545
commit
b1327f209f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=59163
@ -112,7 +112,6 @@
|
||||
SUBDIR += py-numeric
|
||||
SUBDIR += py-numeric17
|
||||
SUBDIR += py-scientific
|
||||
SUBDIR += pygist
|
||||
SUBDIR += qscanplot
|
||||
SUBDIR += rascal
|
||||
SUBDIR += rcalc
|
||||
|
@ -1,53 +0,0 @@
|
||||
# New ports collection makefile for: pygist
|
||||
# Date created: 30 May 1998
|
||||
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= gist
|
||||
PORTVERSION= 1.5
|
||||
CATEGORIES= math python
|
||||
MASTER_SITES= ftp://ftp-icf.llnl.gov/pub/python/OLD/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= LLNLDistribution11
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/yorick/1.4/lib/libgist.a:${PORTSDIR}/lang/yorick \
|
||||
${NUMPYDIR}/Numeric.py:${PORTSDIR}/math/py-numeric \
|
||||
${RNGDIR}/RNG.so:${PORTSDIR}/math/py-numeric
|
||||
RUN_DEPENDS= ${NUMPYDIR}/Numeric.py:${PORTSDIR}/math/py-numeric \
|
||||
${RNGDIR}/RNG.so:${PORTSDIR}/math/py-numeric
|
||||
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/Graphics
|
||||
USE_PYTHON= yes
|
||||
CONFIGURE_ENV= PREFIX=${PREFIX} PYTHON=${PYTHON_CMD}
|
||||
ALL_TARGET= sharedmods
|
||||
MAKE_FLAGS= 'OPT=${CFLAGS}'
|
||||
|
||||
GISTDIR= ${PYTHON_SITELIBDIR}/PyGist
|
||||
NUMPYDIR= ${PYTHON_SITELIBDIR}/Numeric
|
||||
RNGDIR= ${PYTHON_SITELIBDIR}/RNG
|
||||
EXAMPLEDIR= ${PREFIX}/share/examples/PyGist
|
||||
|
||||
post-patch:
|
||||
.for file in Gist3D/Demo/demo5.py Gist3D/Demo/gistmeshtest.py \
|
||||
Narcisse/Demo/meshtest.py OOG/Demo/eztest.py \
|
||||
OOG/Demo/surftest3d.py OOG/Demo/surftest4d.py
|
||||
@${PERL} -pi -e 's/from Ranf import/from RNG import/' ${WRKSRC}/${file}
|
||||
.endfor
|
||||
|
||||
do-configure:
|
||||
@(cd ${WRKSRC} && ${CONFIGURE_ENV} ${PYTHON_CMD} makethis.py)
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${GISTDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/*/Lib/* ${GISTDIR}
|
||||
@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${GISTDIR}
|
||||
@${ECHO_CMD} "PyGist" > ${GISTDIR}/../PyGist.pth
|
||||
${MKDIR} ${EXAMPLEDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/*/Demo/* ${EXAMPLEDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1 +0,0 @@
|
||||
MD5 (LLNLDistribution11.tgz) = 7ce5043ff3ec5d8202170c4d7892aa0e
|
@ -1,11 +0,0 @@
|
||||
--- ../Tools/compile.py.orig Thu Mar 12 19:15:10 1998
|
||||
+++ ../Tools/compile.py Sun Mar 29 12:53:10 1998
|
||||
@@ -632,7 +632,7 @@
|
||||
|
||||
compileall.compile_dir(".")
|
||||
os.system("make -f Makefile.pre.in boot")
|
||||
- os.system("make")
|
||||
+# os.system("make")
|
||||
|
||||
if sys.platform == 'win32':
|
||||
swig_found = find_swig()
|
@ -1,17 +0,0 @@
|
||||
--- Setup.orig Fri Jun 19 17:27:08 1998
|
||||
+++ Setup Tue Jun 23 20:33:36 1998
|
||||
@@ -5,11 +5,11 @@
|
||||
# Gist module
|
||||
# Change XLIB to the directory where libX11.a is found on your system.
|
||||
# Change YORHOME to the directory (--prefix) where Yorick was installed.
|
||||
-XLIB = /usr/X11R6/lib
|
||||
-YORHOME = /usr/local
|
||||
+XLIB = ${X11BASE}/lib
|
||||
+YORHOME = ${PREFIX}
|
||||
GISTH = $(YORHOME)/lib/yorick/1.4/h
|
||||
GISTL = $(YORHOME)/lib/yorick/1.4/lib
|
||||
-gistC Gist/Src/gistCmodule.c -I$(GISTH) -L$(GISTL) -L$(XLIB) -lgist -lX11 -lm
|
||||
+gistC Gist/Src/gistCmodule.c -I${X11BASE}/include -I$(GISTH) -L$(GISTL) -L$(XLIB) -lgist -lX11 -lm
|
||||
|
||||
# Arrayfns module - supports Z. Motteler's 3D additions to pygist
|
||||
arrayfns Arrayfcns/Src/arrayfnsmodule.c
|
@ -1,11 +0,0 @@
|
||||
--- Gist/Src/gistCmodule.c.orig Fri Apr 2 02:14:43 1999
|
||||
+++ Gist/Src/gistCmodule.c Wed May 5 11:19:38 1999
|
||||
@@ -72,7 +72,7 @@
|
||||
#endif
|
||||
|
||||
#include "Python.h"
|
||||
-#include "arrayobject.h"
|
||||
+#include "Numeric/arrayobject.h"
|
||||
#include "hlevel.h"
|
||||
#ifndef NO_XLIB
|
||||
# include "dispas.h"
|
@ -1,11 +0,0 @@
|
||||
--- Arrayfcns/Src/arrayfnsmodule.c.orig Fri Apr 2 02:14:43 1999
|
||||
+++ Arrayfcns/Src/arrayfnsmodule.c Wed May 5 11:33:13 1999
|
||||
@@ -1,7 +1,7 @@
|
||||
/* Copyright (c) 1996, 1997, The Regents of the University of California.
|
||||
* All rights reserved. See Legal.htm for full text and disclaimer. */
|
||||
#include "Python.h"
|
||||
-#include "arrayobject.h"
|
||||
+#include "Numeric/arrayobject.h"
|
||||
/*#include "hlevel.h"*/
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
@ -1 +0,0 @@
|
||||
Python interface for the Gist graphics package
|
@ -1,20 +0,0 @@
|
||||
The Python Gist Scientific Graphics Package, version 1.5, written by
|
||||
Lee Busby and Zane Motteler of Lawrence Livermore National Laboratory,
|
||||
is a set of Python modules for production of general scientific graphics.
|
||||
We abbreviate the name to PyGist here and elsewhere.
|
||||
|
||||
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.
|
@ -1,122 +0,0 @@
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/GistPlotter.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/GistPlotter.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/GistPlotter.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/NarPlotter.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/NarPlotter.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/NarPlotter.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/animation2d.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/animation2d.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/animation2d.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/cellarray.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/cellarray.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/cellarray.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/colorbar.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/colorbar.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/colorbar.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/curve.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/curve.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/curve.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/ezplot.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/ezplot.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/ezplot.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist.help
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist3dhelp.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist3dhelp.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/gist3dhelp.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graftypes.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graftypes.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graftypes.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph2d.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph2d.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph2d.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph3d.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph3d.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/graph3d.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/help.help
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/help.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/help.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/help.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/lines.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/lines.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/lines.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/mesh3d.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/mesh3d.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/mesh3d.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/movie.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/movie.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/movie.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/pl3d.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/pl3d.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/pl3d.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/plane.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/plane.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/plane.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/plwf.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/plwf.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/plwf.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/polymap.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/polymap.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/polymap.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/quadmesh.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/quadmesh.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/quadmesh.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/region.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/region.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/region.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/shapetest.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/shapetest.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/shapetest.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/slice3.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/slice3.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/slice3.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/surface.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/surface.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/surface.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/yorick.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/yorick.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist/yorick.pyo
|
||||
lib/%%PYTHON_VERSION%%/site-packages/PyGist.pth
|
||||
lib/%%PYTHON_VERSION%%/site-packages/arrayfnsmodule.so
|
||||
lib/%%PYTHON_VERSION%%/site-packages/gistCmodule.so
|
||||
share/examples/PyGist/berts.py
|
||||
share/examples/PyGist/berts.pyc
|
||||
share/examples/PyGist/bills.py
|
||||
share/examples/PyGist/bills.pyc
|
||||
share/examples/PyGist/demo5.py
|
||||
share/examples/PyGist/demo5.pyc
|
||||
share/examples/PyGist/eztest.py
|
||||
share/examples/PyGist/eztest.pyc
|
||||
share/examples/PyGist/gistdemohigh.py
|
||||
share/examples/PyGist/gistdemohigh.pyc
|
||||
share/examples/PyGist/gistdemolow.py
|
||||
share/examples/PyGist/gistdemolow.pyc
|
||||
share/examples/PyGist/gistmeshtest.py
|
||||
share/examples/PyGist/gistmeshtest.pyc
|
||||
share/examples/PyGist/gisttest2d.py
|
||||
share/examples/PyGist/gisttest2d.pyc
|
||||
share/examples/PyGist/gisttest3d.py
|
||||
share/examples/PyGist/gisttest3d.pyc
|
||||
share/examples/PyGist/graftest2d.py
|
||||
share/examples/PyGist/graftest2d.pyc
|
||||
share/examples/PyGist/meshtest.py
|
||||
share/examples/PyGist/meshtest.pyc
|
||||
share/examples/PyGist/nicks.py
|
||||
share/examples/PyGist/nicks.pyc
|
||||
share/examples/PyGist/sphereisos.py
|
||||
share/examples/PyGist/sphereisos.pyc
|
||||
share/examples/PyGist/surftest3d.py
|
||||
share/examples/PyGist/surftest3d.pyc
|
||||
share/examples/PyGist/surftest4d.py
|
||||
share/examples/PyGist/surftest4d.pyc
|
||||
share/examples/PyGist/twograftest2d.py
|
||||
share/examples/PyGist/twograftest2d.pyc
|
||||
share/examples/PyGist/z_nobox.gs
|
||||
share/examples/PyGist/z_work.gs
|
||||
@dirrm share/examples/PyGist
|
||||
@dirrm lib/%%PYTHON_VERSION%%/site-packages/PyGist
|
Loading…
Reference in New Issue
Block a user