diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2002-01-10 11:24:57 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2002-01-10 11:24:57 +0000 |
commit | 57c5cce4e24fde6ecb7f0e1d1ef04a2575918b7a (patch) | |
tree | c5d5f05441268833eed8b6b5576eaf371933efd7 /print/py-reportlab/files | |
parent | Upgrade to 2.0.3. (diff) |
Upgrade to 1.11. New maintainer.
PR: 33717
Submitted by: Hye-Shik Chang <perky@fallin.lv>
Diffstat (limited to 'print/py-reportlab/files')
-rw-r--r-- | print/py-reportlab/files/patch-lib::setup.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/print/py-reportlab/files/patch-lib::setup.py b/print/py-reportlab/files/patch-lib::setup.py new file mode 100644 index 000000000000..c7a3ddb4b57b --- /dev/null +++ b/print/py-reportlab/files/patch-lib::setup.py @@ -0,0 +1,33 @@ +--- 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 @@ + author = "Robin Becker", + author_email = "robin@reportlab.com", + url = "http://www.reportlab.com", +- packages = [], +- ext_modules = [Extension( '_rl_accel', +- ['_rl_accel.c'], ++ packages = ['reportlab'], ++ ext_modules = [Extension( 'reportlab.lib._rl_accel', ++ ['reportlab/lib/_rl_accel.c'], + include_dirs=[], + define_macros=[], + library_dirs=[], + libraries=LIBS, # libraries to link against + ), +- Extension( 'sgmlop', +- ['sgmlop.c'], ++ Extension( 'reportlab.lib.sgmlop', ++ ['reportlab/lib/sgmlop.c'], + include_dirs=[], + define_macros=[], + library_dirs=[], + libraries=LIBS, # libraries to link against + ), +- Extension( 'pyHnj', +- ['pyHnjmodule.c','hyphen.c', 'hnjalloc.c'], ++ Extension( 'reportlab.lib.pyHnj', ++ ['reportlab/lib/pyHnjmodule.c','reportlab/lib/hyphen.c', 'reportlab/lib/hnjalloc.c'], + include_dirs=[], + define_macros=[], + library_dirs=[], |