the Fink project is an effort to port
popular Unix programs to Mac OS X
Info2: <<
Package: pygist-py%type_pkg[python]
Version: 1.5.23
Revision: 2
Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Description: Python interface for Gist
Type: python(2.3 2.4 2.5 2.6 2.7)
License: OSI-Approved
Maintainer: None
Depends: python%type_pkg[python], numeric-py%type_pkg[python], x11
BuildDepends: fink (>= 0.24.12), x11-dev
Source: http://bonsai.ims.u-tokyo.ac.jp/~mdehoon/software/python/pygist-%v.tar.gz
Source-MD5: 93647f8d0f64f1fdb5d8d45afcfec5f9
PatchFile: pygist-py.patch
PatchFile-MD5: d556f8f3b25e00889877c42ad553b525
PatchScript: sed 's|@PYTHON_VERSION@|%type_pkg[python]|g' <%{PatchFile} | patch -p1
CompileScript: <<
%p/bin/python%type_raw[python] setup.py config --x11
%p/bin/python%type_raw[python] setup.py build --x11
<<
InstallScript: <<
%p/bin/python%type_raw[python] setup.py install --root=%d --x11
<<
DocFiles: README RELEASE
Homepage: http://bonsai.ims.u-tokyo.ac.jp/~mdehoon/software/python/gist
DescDetail: <<
PyGist is a Python interface to the Gist scientific graphic library
(the same library Yorick uses). It produces x-vs-y plots, 2-D
quadrilateral mesh plots with contours, filled contours, vector
fields, or pseudocolor maps on such meshes. Some 3-D plot capabilities
are also available.
<<
DescUsage: <<
This package installs the X11 version of PyGist. For a a demonstration
of the capabilities of PyGist, type "from gist import gistdemolow"
then "gistdemolow.run()" at the Python prompt. More examples can be
found in the gistdemo3d and gistdemomovie modules. A manual is
available on the PyGist's homepage.
<<
<<
diff -ruN -x '*~' pygist-1.5.23/setup.py pygist-1.5.23.patched/setup.py
--- pygist-1.5.23/setup.py 2005-07-30 15:06:42.000000000 -0400
+++ pygist-1.5.23.patched/setup.py 2005-08-10 14:11:36.000000000 -0400
@@ -837,7 +837,7 @@
# define default include directory, library paths, and libraries.
-gistpath = os.path.join(sys.prefix,"g")
+gistpath = os.path.join(sys.prefix,"share/pygist-py@PYTHON_VERSION@")
gistpath = gistpath.replace('\\','\\\\\\\\')
if windows:
@@ -955,7 +955,7 @@
packages = [''],
package_dir = {'': 'gist'},
extra_path = 'gist',
- data_files = [('g',gfiles)],
+ data_files = [('share/pygist-py@PYTHON_VERSION@',gfiles)],
ext_modules = [extension]
)