summaryrefslogtreecommitdiff
path: root/print/py-reportlab/patches/patch-aa
blob: 6858045685e88bf6260074c05863586eb25ad734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
$NetBSD: patch-aa,v 1.7 2009/01/28 14:42:28 joerg Exp $

--- setup.py.orig	2008-09-11 15:01:16.000000000 +0200
+++ setup.py
@@ -255,21 +255,9 @@ def main():
         infoline( '################################################')
         infoline( '#Attempting install of _renderPM')
         infoline( '#extensions from %r'%RENDERPM)
-        LIBART_DIR=pjoin(RENDERPM,'libart_lgpl')
         MACROS=[('ROBIN_DEBUG',None)]
         MACROS=[]
-        def libart_version():
-            K = ('LIBART_MAJOR_VERSION','LIBART_MINOR_VERSION','LIBART_MICRO_VERSION')
-            D = {}
-            for l in open(pjoin(LIBART_DIR,'configure.in'),'r').readlines():
-                l = l.strip().split('=')
-                if len(l)>1 and l[0].strip() in K:
-                    D[l[0].strip()] = l[1].strip()
-                    if len(D)==3: break
-            return (sys.platform == 'win32' and '\\"%s\\"' or '"%s"') % '.'.join(map(lambda k,D=D: D.get(k,'?'),K))
-        LIBART_VERSION = libart_version()
         SOURCES=[pjoin(RENDERPM,'_renderPM.c')]
-        LIBART_SRCS=glob.glob(pjoin(LIBART_DIR, 'art_*.c'))
         GT1_DIR=pjoin(RENDERPM,'gt1')
         LIBS = []       #assume empty libraries list
 
@@ -314,14 +302,6 @@ def main():
             infoline('# installing without freetype no ttf, sorry!')
 
         LIBRARIES+= [
-                    ('_renderPM_libart',
-                    {
-                    'sources':  LIBART_SRCS,
-                    'include_dirs': [RENDERPM,LIBART_DIR,],
-                    'macros': [('LIBART_COMPILATION',None),]+BIGENDIAN('WORDS_BIGENDIAN')+MACROS,
-                    #'extra_compile_args':['/Z7'],
-                    }
-                    ),
                     ('_renderPM_gt1',
                     {
                     'sources':  pfxJoin(GT1_DIR,'gt1-dict.c','gt1-namecontext.c','gt1-parset1.c','gt1-region.c','parseAFM.c'),
@@ -334,13 +314,13 @@ def main():
 
         EXT_MODULES +=  [Extension( '_renderPM',
                                         SOURCES,
-                                        include_dirs=[RENDERPM,LIBART_DIR,GT1_DIR]+FT_INC_DIR,
-                                        define_macros=FT_MACROS+[('LIBART_COMPILATION',None)]+MACROS+[('LIBART_VERSION',LIBART_VERSION)],
+                                        include_dirs=[RENDERPM,GT1_DIR]+FT_INC_DIR,
+                                        define_macros=FT_MACROS+MACROS,
                                         library_dirs=[]+FT_LIB_DIR,
 
                                         # libraries to link against
-                                        libraries=LIBS+FT_LIB,
-                                        #extra_objects=['gt1.lib','libart.lib',],
+                                        libraries=LIBS+FT_LIB+['art_lgpl_2'],
+                                        #extra_objects=['gt1.lib'],
                                         #extra_compile_args=['/Z7'],
                                         extra_link_args=[]
                                         ),