the Fink project is an effort to port
popular Unix programs to Mac OS X
Info2: <<
Package: pmw-py%type_pkg[python]
Version: 1.3.2
Revision: 1003
Type: python (2.5 2.6 2.7)
Source: mirror:sourceforge:pmw/Pmw.%v.tar.gz
Source-MD5: 7f30886fe9885ab3cf85dac6ce1fbda5
SourceDirectory: Pmw.%v/src
BuildDepends: fink (>= 0.24.12-1)
Depends: python%type_pkg[python]
PatchFile: %{ni}.patch
PatchFile-MD5: 3dcd5566b65144e5cfb60ea1f6ce1742
PatchScript: <<
%{default_script}
find . -name \*~ -type f -delete
<<
Replaces: pmw
Provides: pmw
CompileScript: %p/bin/python%type_raw[python] setup.py build
InstallScript: %p/bin/python%type_raw[python] setup.py install --root=%d
Description: Compound widgets for Python using Tkinter
DescDetail: <<
Python megawidgets -- A toolkit for building high-level compound
widgets in Python using the Tkinter module. It contains a set of
flexible and extensible megawidgets, including notebooks, comboboxes,
selection widgets, paned widgets, scrolled widgets and dialog windows.
<<
DescUsage: For added functionality, install blt package
License: OSI-Approved
DocFiles: Pmw/README
Homepage: http://pmw.sourceforge.net
Maintainer: None
<<
--- Pmw/find_site.py.orig Mon Feb 4 11:09:27 2002
+++ Pmw/find_site.py Mon Feb 4 11:09:27 2002
@@ -0,0 +1,8 @@
+# a utility script to find Python's site-packages directory and print it.
+# used for installing Python megawidgets.
+import sys, os
+for x in sys.path:
+ if os.path.basename(x) == 'site-packages':
+ print x;raise SystemExit, 0
+else:
+ raise SystemExit, 1