ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/SConscript
(Generate patch)

Comparing ray/src/px/SConscript (file contents):
Revision 1.1 by schorsch, Tue Oct 21 19:27:29 2003 UTC vs.
Revision 1.24 by schorsch, Mon Jan 8 13:38:37 2018 UTC

# Line 1 | Line 1
1 + from __future__ import division, print_function, unicode_literals
2 +
3   import os
4  
5   Import('env') # inherit from parent
6  
7 < # make a modified local copy
8 < px = env.Copy(LIBS=['rt'] + env['RAD_MLIB'])
7 > mlib = ['$RAD_MLIB']
8 > progs = []
9  
10   # compose paths
11 < def radbin(name): return os.path.join(px['RAD_BUILDBIN'], name)
12 < def radlib(name): return os.path.join(px['RAD_BUILDLIB'], name)
11 > def radbin(name): return os.path.join('$RAD_BUILDBIN', name)
12 > def radlib(name): return os.path.join('$RAD_BUILDLIB', name)
13  
14 + warp3d = env.Object(source="warp3d.c")
15 + clrtab = env.Object(source="clrtab.c")
16 + neuclrtab = env.Object(source="neuclrtab.c")
17 +
18   # standard targets
19   PROGS = (
20 < ('macbethcal', Split('macbethcal.c pmapgen.c mx3.c warp3d.c')),
21 < ('pcond',      Split('pcond.c pcond2.c pcond3.c pcond4.c warp3d.c')),
22 < ('pfilt',      Split('pfilt.c pf2.c pf3.c')),
23 < ('pcwarp',     Split('pcwarp.c warp3d.c')),
24 < ('pvalue',     Split('pvalue.c')),
25 < ('pcompos',    Split('pcompos.c')),
26 < ('psign',      Split('psign.c')),
27 < ('protate',    Split('protate.c')),
28 < ('pextrem',    Split('pextrem.c')),
29 < ('pflip',      Split('pflip.c')),
30 < ('pcomb',      Split('pcomb.c')),
31 < ('pinterp',    Split('pinterp.c')),
20 > # name       files            libs
21 > ('macbethcal', Split('macbethcal.c pmapgen.c mx3.c')+[warp3d], ['rtrad']),
22 > ('pcond',    Split('pcond.c pcond2.c pcond3.c pcond4.c')+[warp3d], ['rtrad']),
23 > ('pfilt',    Split('pfilt.c pf2.c pf3.c'), ['rtrad']),
24 > ('pcwarp',   ['pcwarp.c', warp3d],       ['rtrad']),
25 > ('pvalue',   ['pvalue.c'],    ['rtrad']),
26 > ('pcompos',  ['pcompos.c'],   ['rtrad']),
27 > ('psign',    ['psign.c'],     ['rtrad']),
28 > ('protate',  ['protate.c'],   ['rtrad']),
29 > ('pextrem',  ['pextrem.c'],   ['rtrad']),
30 > ('pflip',    ['pflip.c'],     ['rtrad']),
31 > ('pcomb',    ['pcomb.c'],     ['rtrad']),
32 > ('pinterp',  ['pinterp.c'],   ['rtrad']),
33 > ('psketch',  ['psketch.c'],   ['rtrad']),
34  
35 < ('oki20c',     Split('oki20c.c')),
36 < ('oki20',      Split('oki20.c')),
35 > ('ra_gif',   ['ra_gif.c', clrtab, neuclrtab], ['rtrad']),
36 > ('ra_ps',    ['ra_ps.c'],     ['rtrad']),
37 > ('ra_ppm',   ['ra_ppm.c'],    ['rtrad']),
38 > ('ra_bmp',   ['ra_bmp.c'],    ['rtrad']),
39 > ('ra_t8',    ['ra_t8.c', clrtab, neuclrtab], ['rtrad']),
40 > ('ra_t16',   ['ra_t16.c'],    ['rtrad']),
41 > ('ra_rgbe',  ['ra_rgbe.c'],   ['rtrad']),
42 > ('ra_pict',  ['ra_pict.c'],   ['rtrad']),
43 > ('ra_hexbit',['ra_hexbit.c'], ['rtrad']),
44 > ('ra_xyze',  ['ra_xyze.c'],   ['rtrad']),
45 > ('pmblur2',  ['pmblur2.c'],   ['rtrad']),
46  
47 < ('ra_gif',     Split('ra_gif.c clrtab.c neuclrtab.c')),
31 < ('ra_pr',      Split('ra_pr.c ciq.c cut.c closest.c biq.c')),
32 < ('ra_pr24',    Split('ra_pr24.c')),
33 < ('ra_avs',     Split('ra_avs.c')),
34 < ('ra_ps',      Split('ra_ps.c')),
35 < ('ra_ppm',     Split('ra_ppm.c')),
36 < ('ra_t8',      Split('ra_t8.c clrtab.c neuclrtab.c')),
37 < ('ra_t16',     Split('ra_t16.c')),
38 < ('ra_bn',      Split('ra_bn.c')),
39 < ('ra_rgbe',    Split('ra_rgbe.c')),
40 < ('ra_pict',    Split('ra_pict.c')),
41 < ('ra_hexbit',  Split('ra_hexbit.c')),
42 < ('ra_xyze',    Split('ra_xyze.c')),
43 <
44 < ('ttyimage',   Split('ttyimage.c')),
47 > ('ttyimage', ['ttyimage.c'],  ['rtrad']),
48   )
49   for p in PROGS:
50 <    prog = px.Program(target=radbin(p[0]), source=p[1])
51 <    Default(prog)
52 <    env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], prog)])
50 >    prog = env.Program(target=radbin(p[0]), source=p[1],
51 >        LIBS=p[2]+mlib)
52 >    progs.append(prog)
53  
54  
55 < # special targets not normally built
56 < SPECIAL = (
57 < #('psum',       Split('psum.c'), ['rt']),  # (errors)
58 < #('panim',      Split('panim.c'), px['LIBS]+['client','rpcsvc']),
55 > # tiff library (building it is unix-specific for the moment)
56 > #  If we haven't found one supporting LogLuv installed, build our own.
57 > libtiff_fn = radlib(env['LIBPREFIX'] + 'tiff' + env['LIBSUFFIX'])
58 > if os.name == 'posix' and not env.get('TIFFLIB_INSTALLED'):
59 >        cwd = os.getcwd()
60 >        upperdir = os.path.split(cwd)[0]
61 >        libtiff = env.Command(libtiff_fn, None,
62 >        [('cd "%(tiffdir)s"; '
63 >                'env CC="$CC" '
64 >                './configure -C '
65 >                '"libdir=%(upperdir)s/lib" '
66 >                '--enable-static --disable-shared --disable-cxx '
67 >                '--enable-logluv --disable-jpeg --disable-zlib --disable-pixarlog; '
68 >                'cd %(portdir)s; make all;'
69 >                'cd %(libtiffdir)s; make install-exec;' # don't install headers
70 >         ) % {
71 >        'upperdir':upperdir,
72 >        'tiffdir':os.path.join(cwd, 'tiff'),
73 >        'portdir':os.path.join(cwd, 'tiff', 'port'),
74 >        'libtiffdir':os.path.join(cwd, 'tiff', 'libtiff')
75 >        }
76 >        ])
77  
78 < ('ra_im',     Split('ra_im.c')),
78 >        env['TIFFLIB_INSTALLED'] = 1
79  
80 < #('aedimage',   Split('aedimage.c ciq.c cut.c closest.c'), []), # (errors)
81 < ('t4027',      Split('t4027.c'), ['rt']),
61 < ('paintjet',   Split('paintjet.c')),
62 < ('mt160r',     Split('mt160r.c')),
63 < ('greyscale',  Split('greyscale.c')),
64 < ('colorscale', Split('colorscale.c')),
65 < ('d48c',       Split('d48c.c'), ['rt']),   # (warnings)
66 < )
67 < specprogs = []
68 < specinst = []
69 < for p in SPECIAL:
70 <        if len(p) > 2:
71 <                prog = px.Program(target=radbin(p[0]), source=p[1],
72 <                        LIBS=p[2])
73 <        else:
74 <                prog = px.Program(target=radbin(p[0]), source=p[1])
75 <        specprogs.append(prog)
76 <        specinst.append(px.Install(px['RAD_BINDIR'], prog))
77 < px.Alias('px_special', specprogs)
78 < px.Alias('px_special_install', specinst)
80 > if os.name == 'posix': # cleanup action for a previously built tifflib
81 >        Clean(libtiff_fn, [libtiff_fn, radlib(env['LIBPREFIX'] + 'tiff.la')])
82  
83 <
84 < # tiff library (unix-specific for the moment)
82 < if os.name == 'posix':
83 <        cwd = os.getcwd()
84 <        libtiff = px.Command(radlib(px['LIBPREFIX'] + 'tiff' + px['LIBSUFFIX']),
85 <                'tiff/config.local',
86 <        ['cd "%s";'
87 <        'sh ./configure -quiet -noninteractive -with-CC=$CC -with-ENVOPTS=$CCFLAGS;'
88 <        'cd libtiff;'
89 <        'make install;' % os.path.join(cwd, 'tiff')])
90 <
83 > if env.get('TIFFLIB_INSTALLED'):
84 >        libtiff = env.get('RAD_LIBTIFF')
85          # tiff programs
86 <        ra_tiff = px.Program(target=radbin('ra_tiff'), source=Split('ra_tiff.c'),
87 <                LIBS=['tiff'] + px['LIBS'])
88 <        Default(ra_tiff)
89 <        env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], ra_tiff)])
86 >        tiffi = env.get('RAD_TIFFINCLUDE')
87 >        if tiffi: tiffincl = [tiffi] + env.get('CPPPATH', [])
88 >        else: tiffincl = env.get('CPPPATH', [])
89 >        tiffl = env.get('RAD_TIFFLIB')
90 >        if tiffl: tifflib = [tiffl] + env.get('LIBPATH', [])
91 >        else: tifflib = env.get('LIBPATH', [])
92  
93 <        normtiff = px.Program(target=radbin('normtiff'), source=Split('normtiff.c'),
94 <                LIBS=['tiff'] + px['LIBS'])
95 <        Default(normtiff)
96 <        env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], normtiff)])
93 >        ra_tiff = env.Program(target=radbin('ra_tiff'), source=['ra_tiff.c'],
94 >                CPPPATH = tiffincl, LIBPATH=tifflib,
95 >                LIBS=[libtiff,'rtrad'] + mlib)
96 >        progs.append(ra_tiff)
97  
98 +        normtiff = env.Program(target=radbin('normtiff'),source=['normtiff.c'],
99 +                CPPPATH = tiffincl, LIBPATH=tifflib,
100 +                LIBS=[libtiff,'rtrad'] + mlib)
101 +        progs.append(normtiff)
102  
103 # pixar format requires extra lib
104 if px.has_key('PIXAR_LIB'):
105    ra_pixar = px.Program(radbin('ra_pixar'), source=['ra_pixar.c'],
106                LIBS=['rt', px['PIXAR_LIB']])
107    Default(ra_pixar)
108    env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], ra_pixar)])
103  
110
104   # X11 targets
105 < if px.has_key('X11LIB'):
106 <    px.Append(CPPPATH=px['X11INCLUDE'])
107 <    px.Append(LIBS=['X11'])
108 <    px.Append(LIBPATH=px['X11LIB'])
105 > if env.has_key('X11LIB'):
106 >        xincl = env.get('CPPPATH', []) + ['$X11INCLUDE']
107 >        xlibp = env.get('LIBPATH', []) + ['$X11LIB']
108 >        xlibs = ['X11','rtrad']
109 >        env.x11findwind = env.Object(source='../common/x11findwind.c',
110 >                CPPPATH=xincl)
111  
112 <    ximage = px.Program(target=radbin('ximage'),
113 <        source=Split('x11image.c x11raster.c clrtab.c'),)
114 <    Default(ximage)
115 <    env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], ximage)])
112 >        ximage = env.Program(target=radbin('ximage'),
113 >                source=Split('x11image.c x11raster.c')+[clrtab],
114 >                CPPPATH=xincl, LIBPATH=xlibp, LIBS=xlibs + mlib)
115 >        progs.append(ximage)
116  
117 <    xshowtrace = px.Program(target=radbin('xshowtrace'),
118 <        source=Split('xshowtrace.c x11findwind.c'),)
119 <    Default(xshowtrace)
120 <    env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], xshowtrace)])
117 >        xshowtrace = env.Program(target=radbin('xshowtrace'),
118 >                source=Split('xshowtrace.c') + [env.x11findwind],
119 >                CPPPATH=xincl, LIBPATH=xlibp, LIBS=xlibs + mlib)
120 >        progs.append(xshowtrace)
121  
122 < # NeWS ?!?
123 < #    if px.has_key('OGL'):
124 < #        glimage = px.Program(target=radbin('glimage'),
125 < #            CPPFLAGS=px.get('CPPFLAGS', []) + [px['RAD_STEREO']],
126 < #            source=Split('glimage.c'),
127 < #            LIBS=['gl_s']+px['LIBS'],)
128 < #        Default(glimage)
129 < #        env.Append(RAD_BININSTALL=[px.Install(px['RAD_BINDIR'], glimage)])
122 > pyscripts = Split('''falsecolor phisto''')
123 > if os.name == 'posix': # XXX ignoring trad.wsh
124 >        for s in Split('''normpat pdfblur pmblur pmdblur
125 >                        xyzimage pgblur ra_pfm ran2tiff pbilat'''):
126 >                Default(env.InstallScript(radbin(s), s + '.csh'))
127 >        for s in pyscripts:
128 >                Default(env.InstallScript(radbin(s), s + '.py'))
129 > else:
130 >        for s in pyscripts:
131 >                Default(env.InstallScript(radbin(s + '.py'), s + '.py'))
132 >        
133  
134 + # ignored by Rmakefile: pacuity phisteq psquish pveil vlpic
135  
136 + Default('#src/px')
137 + env.Install('$RAD_BINDIR', progs)
138 +
139 + # vim: set syntax=python:
140 + # vi: set ts=4 sw=4 :

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines