diff -Naur python25.orig/Portfile python25/Portfile
old
|
new
|
|
31 | 31 | patch-Makefile.pre.in.diff \ |
32 | 32 | patch-Misc-setuid-prog.c.diff \ |
33 | 33 | patch-Modules-posixmodule.c.diff \ |
34 | | patch-Lib-cgi.py.diff |
| 34 | patch-Lib-cgi.py.diff \ |
| 35 | patch-pydoc.py.diff |
35 | 36 | |
36 | 37 | configure.args --enable-shared \ |
37 | 38 | --mandir=${prefix}/share/man \ |
diff -Naur python25.orig/files/patch-pydoc.py.diff python25/files/patch-pydoc.py.diff
old
|
new
|
|
| 1 | --- Lib/pydoc.py.orig 2008-03-01 03:53:44.000000000 +0100 |
| 2 | +++ Lib/pydoc.py 2008-03-01 03:54:11.000000000 +0100 |
| 3 | @@ -1630,7 +1630,7 @@ |
| 4 | '/usr/doc/python-' + split(sys.version)[0], |
| 5 | '/usr/doc/python-docs-' + sys.version[:3], |
| 6 | '/usr/doc/python-' + sys.version[:3], |
| 7 | - os.path.join(sys.prefix, 'Resources/English.lproj/Documentation')]: |
| 8 | + os.path.join(sys.prefix, 'share/doc/python25-doc')]: |
| 9 | if dir and os.path.isdir(os.path.join(dir, 'lib')): |
| 10 | self.docdir = dir |
| 11 | |