diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-03-23 07:46:07 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-03-23 07:46:07 +0000 |
commit | 63e0ad15459f19ba7a46f6b5060a64108202f43a (patch) | |
tree | f3c5391fc39d9a41622ac8619244c015b5b1960f /print/py-reportlab/files | |
parent | 81ab387d19e4d223cb7457863321ef379aca69a4 (diff) |
Notes
Diffstat (limited to 'print/py-reportlab/files')
-rw-r--r-- | print/py-reportlab/files/patch-lib::setup.py | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/print/py-reportlab/files/patch-lib::setup.py b/print/py-reportlab/files/patch-lib::setup.py index c7a3ddb4b57b..cc6590019919 100644 --- a/print/py-reportlab/files/patch-lib::setup.py +++ b/print/py-reportlab/files/patch-lib::setup.py @@ -1,13 +1,26 @@ ---- lib/setup.py.orig Fri Jan 4 08:08:55 2002 -+++ lib/setup.py Fri Jan 4 08:11:04 2002 -@@ -18,23 +18,23 @@ +--- lib/setup.py.orig Mon Jul 23 20:38:19 2001 ++++ lib/setup.py Sat Mar 23 09:14:04 2002 +@@ -7,7 +7,7 @@ + import os, sys + from distutils.core import setup, Extension + +- if sys.platform in ['win32', 'sunos5', 'freebsd4', 'aix4', 'mac']: ++ if sys.platform in ['win32', 'sunos5', 'freebsd4', 'freebsd5', 'aix4', 'mac']: + LIBS=[] + else: + raise ValueError, "Don't know about platform:"+sys.platform +@@ -18,23 +18,27 @@ author = "Robin Becker", author_email = "robin@reportlab.com", url = "http://www.reportlab.com", - packages = [], - ext_modules = [Extension( '_rl_accel', - ['_rl_accel.c'], -+ packages = ['reportlab'], ++ packages = ['reportlab', ++ 'reportlab.lib', 'reportlab.extensions', 'reportlab.graphics', ++ 'reportlab.pdfbase', 'reportlab.pdfgen', 'reportlab.platypus', ++ 'reportlab.tools', 'reportlab.tools.docco', ++ 'reportlab.tools.py2pdf', 'reportlab.tools.pythonpoint'], + ext_modules = [Extension( 'reportlab.lib._rl_accel', + ['reportlab/lib/_rl_accel.c'], include_dirs=[], |