1 import os, sys, commands, string
2 from makeversion import get_version
4 OS = commands.getoutput('uname')
9 def build_list(s_prefix, s_string):
10 s_list = Split(s_string)
11 for i in range(len(s_list)):
12 s_list[i] = s_prefix + '/' + s_list[i]
15 # common code ------------------------------------------------------
17 cmdlib_lib = g_env.StaticLibrary(target='libs/cmdlib', source='libs/cmdlib/cmdlib.cpp')
19 mathlib_src = 'mathlib.c bbox.c line.c m4x4.c ray.c'
20 mathlib_lib = g_env.StaticLibrary(target='libs/mathlib', source=build_list('libs/mathlib', mathlib_src))
22 md5lib_lib = g_env.StaticLibrary(target='libs/md5lib', source='libs/md5lib/md5lib.c')
24 ddslib_lib = g_env.StaticLibrary(target='libs/ddslib', source='libs/ddslib/ddslib.c')
26 jpeg_env = g_env.Copy()
27 jpeg_env.Prepend(CPPPATH = 'libs/jpeg6')
28 jpeg_src = 'jcomapi.cpp jdcoefct.cpp jdinput.cpp jdpostct.cpp jfdctflt.cpp jpgload.cpp jdapimin.cpp jdcolor.cpp jdmainct.cpp jdsample.cpp jidctflt.cpp jutils.cpp jdapistd.cpp jddctmgr.cpp jdmarker.cpp jdtrans.cpp jmemmgr.cpp jdatasrc.cpp jdhuff.cpp jdmaster.cpp jerror.cpp jmemnobs.cpp'
29 jpeg_lib = jpeg_env.StaticLibrary(target='libs/jpeg6', source=build_list('libs/jpeg6', jpeg_src))
31 l_net_lib = g_env.StaticLibrary(target='libs/l_net', source=['libs/l_net/l_net.c', 'libs/l_net/l_net_berkley.c'])
33 picomodel_src = 'picointernal.c picomodel.c picomodules.c pm_3ds.c pm_ase.c pm_md3.c pm_obj.c\
34 pm_ms3d.c pm_mdc.c pm_fm.c pm_md2.c pm_lwo.c pm_terrain.c lwo/clip.c lwo/envelope.c lwo/list.c lwo/lwio.c\
35 lwo/lwo2.c lwo/lwob.c lwo/pntspols.c lwo/surface.c lwo/vecmath.c lwo/vmap.c'
36 picomodel_lib = g_env.StaticLibrary(target='libs/picomodel', source=build_list('libs/picomodel', picomodel_src))
38 #splines_env = g_env.Copy()
39 #splines_src = build_list('libs/splines', 'math_angles.cpp math_matrix.cpp math_quaternion.cpp math_vector.cpp q_parse.cpp q_shared.cpp splines.cpp util_str.cpp')
40 #splines_env['CPPPATH'].append('include')
41 #splines_lib = splines_env.StaticLibrary(target='libs/splines', source=splines_src)
43 profile_env = g_env.Copy();
44 profile_env['CPPPATH'].append('include')
45 profile_src = 'profile.cpp file.cpp'
46 profile_lib = profile_env.StaticLibrary(target='libs/profile', source=build_list('libs/profile', profile_src))
48 gtkutil_env = g_env.Copy();
49 gtkutil_env['CPPPATH'].append('include')
50 gtkutil_env.useGlib2()
52 gtkutil_env.useGtkGLExt()
80 gtkutil_lib = gtkutil_env.StaticLibrary(target='libs/gtkutil', source=build_list('libs/gtkutil', gtkutil_src))
82 # end static / common libraries ---------------------------------------------------
84 # q3map ---------------------------------------------------------------------------
86 q3map_env = g_env.Copy()
87 q3map_env['CPPPATH'].append('include')
92 q3map_env.usePThread()
93 q3map_env.Prepend(CPPPATH='tools/quake3/common')
108 'q3map2/brush_primit.c',
119 'q3map2/surface_fur.c',
120 'q3map2/surface_meta.c',
121 'q3map2/tjunction.c',
126 'q3map2/light_bounce.c',
127 'q3map2/light_trace.c',
128 'q3map2/light_ydnar.c',
129 'q3map2/lightmaps_ydnar.c',
132 'q3map2/bspfile_abstract.c',
133 'q3map2/bspfile_ibsp.c',
134 'q3map2/bspfile_rbsp.c',
138 'q3map2/path_init.c',
140 'q3map2/surface_extra.c',
141 'q3map2/surface_foliage.c',
142 'q3map2/convert_ase.c',
143 'q3map2/convert_map.c' ]
146 for i in q3map_common_src + q3map_src:
147 q3map_full_src.append('tools/quake3/' + i)
149 q3map_libs = ['mathlib', 'l_net', 'jpeg6', 'picomodel', 'ddslib']
151 q3map_prog = q3map_env.Program(target='q3map2.' + g_cpu, source=q3map_full_src, LIBS=q3map_libs, LIBPATH='libs')
152 q3map_env.Depends(q3map_prog, mathlib_lib)
153 q3map_env.Depends(q3map_prog, l_net_lib)
154 q3map_env.Depends(q3map_prog, jpeg_lib)
155 q3map_env.Depends(q3map_prog, picomodel_lib)
156 q3map_env.Depends(q3map_prog, ddslib_lib)
157 q3map_env.Install(INSTALL, q3map_prog)
159 # end q3map2 ----------------------------------------------------------------------
161 # q3data ---------------------------------------------------------------------------
163 q3data_env = q3map_env.Copy()
165 q3data_common_src = [
190 q3data_full_src = [ ]
191 for i in q3data_common_src + q3data_src:
192 q3data_full_src.append('tools/quake3/' + i)
194 q3data_prog = q3data_env.Program( target = 'q3data.' + g_cpu, source = q3data_full_src, LIBS=['mathlib', 'l_net'], LIBPATH='libs' )
195 q3data_env.Depends(q3data_prog, mathlib_lib)
196 q3data_env.Depends(q3data_prog, l_net_lib)
197 q3data_env.Install( INSTALL, q3data_prog )
199 # end q3data ----------------------------------------------------------------------
201 # q2_tools ---------------------------------------------------------------------------
203 q2_tools_env = g_env.Copy()
204 q2_tools_env['CPPPATH'].append('include')
205 q2_tools_env.useXML2()
206 q2_tools_env.usePThread()
207 q2_tools_env.Prepend(CPPPATH='tools/quake2/common')
209 q2_tools_common_src = [
217 'common/path_init.c',
225 q2_tools_q2map_src = [
248 q2_tools_qdata3_common_src = [
256 'common/path_init.c',
262 q2_tools_qdata3_src = [
271 q2_tools_q2map_full_src = [ ]
272 for i in q2_tools_common_src + q2_tools_q2map_src:
273 q2_tools_q2map_full_src.append('tools/quake2/' + i)
275 q2_tools_qdata3_full_src = [ ]
276 for i in q2_tools_common_src + q2_tools_qdata3_src:
277 q2_tools_qdata3_full_src.append('tools/quake2/' + i)
279 if ( OS != 'Darwin' ):
280 q2_tools_q2map_prog = q2_tools_env.Program(target='quake2_tools/q2map', source=q2_tools_q2map_full_src, LIBS='l_net', LIBPATH='libs')
281 q2_tools_env.Depends(q2_tools_q2map_prog, l_net_lib)
282 q2_tools_env.Install(INSTALL, q2_tools_q2map_prog )
284 q2_tools_qdata3_prog = q2_tools_env.Program(target='quake2_tools/qdata3', source=q2_tools_qdata3_full_src, LIBS='l_net', LIBPATH='libs')
285 q2_tools_env.Depends(q2_tools_qdata3_prog, l_net_lib)
286 q2_tools_env.Install(INSTALL, q2_tools_qdata3_prog )
289 # end q2_tools ----------------------------------------------------------------------
291 # qdata3_heretic2 ---------------------------------------------------------------------------
293 heretic2_tools_env = g_env.Copy()
294 heretic2_tools_env['CPPPATH'].append('include')
295 heretic2_tools_env.useXML2()
296 heretic2_tools_env.usePThread()
297 heretic2_tools_env.Prepend(CPPPATH='tools/quake2/qdata_heretic2')
298 heretic2_tools_env.Prepend(CPPPATH='tools/quake2/qdata_heretic2/qcommon')
299 heretic2_tools_env.Prepend(CPPPATH='tools/quake2/qdata_heretic2/common')
301 heretic2_tools_qdata3_common_src = [
302 'qdata_heretic2/common/bspfile.c',
303 'qdata_heretic2/common/cmdlib.c',
304 'qdata_heretic2/common/inout.c',
305 'qdata_heretic2/common/l3dslib.c',
306 'qdata_heretic2/common/lbmlib.c',
307 'qdata_heretic2/common/mathlib.c',
308 'qdata_heretic2/common/md4.c',
309 'qdata_heretic2/common/path_init.c',
310 'qdata_heretic2/common/qfiles.c',
311 'qdata_heretic2/common/scriplib.c',
312 'qdata_heretic2/common/threads.c',
313 'qdata_heretic2/common/token.c',
314 'qdata_heretic2/common/trilib.c'
317 heretic2_tools_qdata3_qcommon_src = [
318 'qdata_heretic2/qcommon/reference.c',
319 'qdata_heretic2/qcommon/resourcemanager.c',
320 'qdata_heretic2/qcommon/skeletons.c'
323 heretic2_tools_qdata3_src = [
324 'qdata_heretic2/animcomp.c',
325 'qdata_heretic2/book.c',
326 'qdata_heretic2/fmodels.c',
327 'qdata_heretic2/images.c',
328 'qdata_heretic2/jointed.c',
329 'qdata_heretic2/models.c',
330 'qdata_heretic2/pics.c',
331 'qdata_heretic2/qdata.c',
332 'qdata_heretic2/qd_skeletons.c',
333 'qdata_heretic2/sprites.c',
334 'qdata_heretic2/svdcmp.c',
335 'qdata_heretic2/tables.c',
336 'qdata_heretic2/tmix.c',
337 'qdata_heretic2/video.c'
340 heretic2_tools_qdata3_full_src = [ ]
341 for i in heretic2_tools_qdata3_common_src + heretic2_tools_qdata3_qcommon_src + heretic2_tools_qdata3_src:
342 heretic2_tools_qdata3_full_src.append('tools/quake2/' + i)
345 heretic2_tools_env['CCFLAGS'] += '-D_LINUX '
347 if ( OS != 'Darwin' ):
348 heretic2_tools_prog = heretic2_tools_env.Program(target='h2data', source=heretic2_tools_qdata3_full_src, LIBS='l_net', LIBPATH='libs')
349 heretic2_tools_env.Depends(heretic2_tools_prog, l_net_lib)
350 heretic2_tools_env.Install(INSTALL + '/heretic2', heretic2_tools_prog )
352 # end heretic2_tools ----------------------------------------------------------------------
356 # radiant, modules and plugins ----------------------------------------------------
358 module_env = g_env.Copy()
359 module_env['CPPPATH'].append('include')
360 if ( OS == 'Darwin' ):
361 module_env['LINKFLAGS'] += '-dynamiclib -ldl '
363 module_env['LINKFLAGS'] += '-ldl '
364 module_env['LIBPREFIX'] = ''
367 vfspk3_env = module_env.Copy()
368 vfspk3_lst = build_list('plugins/vfspk3', 'vfspk3.cpp vfs.cpp archive.cpp')
369 vfspk3_env.useGlib2()
370 vfspk3_lib = vfspk3_env.SharedLibrarySafe(target='vfspk3', source=vfspk3_lst)
371 vfspk3_env.Install(INSTALL + '/modules', vfspk3_lib)
373 archivepak_env = module_env.Copy()
374 archivepak_lst = build_list('plugins/archivepak', 'plugin.cpp archive.cpp pak.cpp')
375 archivepak_lib = archivepak_env.SharedLibrarySafe(target='archivepak', source=archivepak_lst, LIBS='cmdlib', LIBPATH='libs')
376 archivepak_env.Depends(archivepak_lib, cmdlib_lib)
377 archivepak_env.Install(INSTALL + '/modules', archivepak_lib)
379 archivewad_env = module_env.Copy()
380 archivewad_lst = build_list('plugins/archivewad', 'plugin.cpp archive.cpp wad.cpp')
381 archivewad_lib = archivewad_env.SharedLibrarySafe(target='archivewad', source=archivewad_lst, LIBS='cmdlib', LIBPATH='libs')
382 archivewad_env.Depends(archivewad_lib, cmdlib_lib)
383 archivewad_env.Install(INSTALL + '/modules', archivewad_lib)
385 archivezip_env = module_env.Copy()
386 archivezip_lst = build_list('plugins/archivezip', 'plugin.cpp archive.cpp pkzip.cpp zlibstream.cpp')
387 archivezip_env.useZLib()
388 archivezip_lib = archivezip_env.SharedLibrarySafe(target='archivezip', source=archivezip_lst, LIBS='cmdlib', LIBPATH='libs')
389 archivezip_env.Depends(archivezip_lib, cmdlib_lib)
390 archivezip_env.Install(INSTALL + '/modules', archivezip_lib)
392 shaders_env = module_env.Copy()
393 shaders_lst = build_list('plugins/shaders', 'shaders.cpp plugin.cpp')
394 shaders_env.useGlib2()
395 shaders_lib = shaders_env.SharedLibrarySafe(target='shaders', source=shaders_lst, LIBS='cmdlib', LIBPATH='libs')
396 shaders_env.Depends(shaders_lib, cmdlib_lib)
397 shaders_env.Install(INSTALL + '/modules', shaders_lib)
399 image_env = module_env.Copy()
400 image_lst = build_list('plugins/image', 'bmp.cpp jpeg.cpp image.cpp pcx.cpp tga.cpp dds.cpp')
401 image_lib = image_env.SharedLibrarySafe(target='image', source=image_lst, LIBS=['jpeg6', 'ddslib'], LIBPATH='libs')
402 image_env.Depends(image_lib, jpeg_lib)
403 image_env.Depends(image_lib, ddslib_lib)
404 image_env.Install(INSTALL + '/modules', image_lib)
406 imagehl_lst=build_list('plugins/imagehl', 'imagehl.cpp hlw.cpp mip.cpp sprite.cpp')
407 imagehl_lib = module_env.SharedLibrarySafe(target='imagehl', source=imagehl_lst)
408 module_env.Install(INSTALL + '/modules', imagehl_lib)
410 imageq2_lst = build_list('plugins/imageq2', 'imageq2.cpp wal.cpp wal32.cpp')
411 imageq2_lib = module_env.SharedLibrarySafe(target='imageq2', source=imageq2_lst)
412 module_env.Install(INSTALL + '/modules', imageq2_lib)
414 mapq3_env = module_env.Copy()
415 mapq3_lst=build_list('plugins/mapq3', 'plugin.cpp parse.cpp write.cpp')
416 mapq3_lib = mapq3_env.SharedLibrarySafe(target='mapq3', source=mapq3_lst, LIBS='cmdlib', LIBPATH='libs')
417 mapq3_env.Depends(mapq3_lib, cmdlib_lib)
418 mapq3_env.Install(INSTALL + '/modules', mapq3_lib)
420 imagepng_env = module_env.Copy()
421 imagepng_lst = build_list('plugins/imagepng', 'plugin.cpp')
422 imagepng_env.usePNG()
423 imagepng_lib = imagepng_env.SharedLibrarySafe(target='imagepng', source=imagepng_lst)
424 imagepng_env.Install(INSTALL + '/modules', imagepng_lib)
426 mapxml_env = module_env.Copy()
427 mapxml_lst = build_list('plugins/mapxml', 'plugin.cpp xmlparse.cpp xmlwrite.cpp')
428 mapxml_lib = mapxml_env.SharedLibrarySafe(target='mapxml', source=mapxml_lst)
430 mapxml_env.useGlib2()
431 mapxml_env.Install(INSTALL + '/modules', mapxml_lib)
433 model_env = module_env.Copy()
434 model_lst = build_list('plugins/model', 'plugin.cpp model.cpp')
435 model_lib = model_env.SharedLibrarySafe(target='model', source=model_lst, LIBS=['mathlib', 'picomodel'], LIBPATH='libs')
436 model_env.Depends(model_lib, mathlib_lib)
437 model_env.Depends(model_lib, picomodel_lib)
438 model_env.Install(INSTALL + '/modules', model_lib)
440 md3model_lst=build_list('plugins/md3model', 'plugin.cpp mdl.cpp md3.cpp md2.cpp mdc.cpp mdlimage.cpp md5.cpp')
441 md3model_lib = module_env.SharedLibrarySafe(target='md3model', source=md3model_lst)
442 module_env.Install(INSTALL + '/modules', md3model_lib)
444 entity_lst = build_list('plugins/entity', 'plugin.cpp entity.cpp eclassmodel.cpp generic.cpp group.cpp light.cpp miscmodel.cpp doom3group.cpp skincache.cpp angle.cpp angles.cpp colour.cpp filters.cpp model.cpp namedentity.cpp origin.cpp scale.cpp targetable.cpp rotation.cpp modelskinkey.cpp')
445 entity_lib = module_env.SharedLibrarySafe(target='entity', source=entity_lst)
446 module_env.Install(INSTALL + '/modules', entity_lib)
448 #bob_env = module_env.Copy()
450 #bob_lst = build_list('contrib/bobtoolz/',
451 #'dialogs/dialogs-gtk.cpp bobToolz-GTK.cpp bsploader.cpp cportals.cpp DBobView.cpp \
452 #DBrush.cpp DEntity.cpp DEPair.cpp DListener.cpp DMap.cpp DPatch.cpp DPlane.cpp DPoint.cpp \
453 #DShape.cpp DTrainDrawer.cpp DTreePlanter.cpp DVisDrawer.cpp DWinding.cpp funchandlers-GTK.cpp \
454 #lists.cpp misc.cpp ScriptParser.cpp shapes.cpp visfind.cpp')
455 #bob_lst.append('libs/libmathlib.a')
456 #bob_lst.append('libs/libcmdlib.a')
457 #bob_env['CPPPATH'].append('contrib/bobtoolz/dialogs')
458 #bob_env.SharedLibrarySafe(target='bobtoolz', source=bob_lst)
459 #bob_env.Install(INSTALL + '/plugins', 'bobtoolz.so')
461 #camera_lst = build_list('contrib/camera',
462 #'camera.cpp dialogs.cpp dialogs_common.cpp funchandlers.cpp listener.cpp misc.cpp renderer.cpp')
463 #camera_lst.append('libs/libsplines.a')
464 #bob_env.SharedLibrarySafe(target='camera', source=camera_lst)
465 #bob_env.Install(INSTALL + '/plugins', 'camera.so')
467 #prtview_lst = build_list('contrib/prtview',
468 #'AboutDialog.cpp ConfigDialog.cpp LoadPortalFileDialog.cpp portals.cpp prtview.cpp')
469 #prtview_env = bob_env.Copy()
470 #prtview_env['CXXFLAGS'] += '-DGTK_PLUGIN '
471 #prtview_env.SharedLibrarySafe(target='prtview', source=prtview_lst)
472 #prtview_env.Install(INSTALL + '/plugins', 'prtview.so')
474 #gensurf_lst = build_list('contrib/gtkgensurf',
475 #'bitmap.cpp dec.cpp face.cpp font.cpp gendlgs.cpp genmap.cpp gensurf.cpp heretic.cpp plugin.cpp view.cpp triangle.c')
476 #bob_env.SharedLibrarySafe(target='gensurf', source=gensurf_lst)
477 #bob_env.Install(INSTALL + '/plugins', 'gensurf.so')
479 #bkgrnd2d_list = build_list( 'contrib/bkgrnd2d', 'bkgrnd2d.cpp plugin.cpp dialog.cpp' )
480 #bkgrnd2d_list.append( 'libs/libsynapse.a' )
481 #bkgrnd2d_env = module_env.Copy()
482 #bkgrnd2d_env.useGtk2()
483 #bkgrnd2d_env.SharedLibrarySafe( target='bkgrnd2d', source=bkgrnd2d_list )
484 #bkgrnd2d_env.Install( INSTALL + '/plugins', 'bkgrnd2d.so' )
486 radiant_env = g_env.Copy()
487 radiant_env['CPPPATH'].append('include')
488 radiant_env['LINKFLAGS'] += '-ldl -lGL '
489 if ( OS == 'Darwin' ):
490 radiant_env['CXXFLAGS'] += '-fno-common '
491 radiant_env['CCFLAGS'] += '-fno-common '
492 radiant_env['LINKFLAGS'] += '-lX11 -lGL -lGLU '
493 radiant_env['LIBPREFIX'] = ''
494 radiant_env.useGlib2()
495 radiant_env.useXML2()
496 radiant_env.useGtk2()
497 radiant_env.useGtkGLExt()
521 'entityinspector.cpp',
528 'findtexturedialog.cpp',
552 'preferencedictionary.cpp',
556 'referencecache.cpp',
575 'windowobservers.cpp',
580 for i in range(len(radiant_src)):
581 radiant_src[i] = 'radiant/' + radiant_src[i]
583 radiant_libs = ['mathlib', 'cmdlib', 'l_net', 'profile', 'gtkutil']
584 radiant_prog = radiant_env.Program(target='radiant.' + g_cpu, source=radiant_src, LIBS=radiant_libs, LIBPATH='libs')
585 radiant_env.Depends(radiant_prog, mathlib_lib)
586 radiant_env.Depends(radiant_prog, cmdlib_lib)
587 radiant_env.Depends(radiant_prog, l_net_lib)
588 radiant_env.Depends(radiant_prog, profile_lib)
589 radiant_env.Depends(radiant_prog, gtkutil_lib)
590 radiant_env.Install(INSTALL, radiant_prog)
592 # setup -------------------------------------------------------------------------------------------
598 def system(self, cmd):
602 sys.stdout.write(cmd)
603 ret = commands.getstatusoutput(cmd)
606 raise 'command failed'
610 self.system('mkdir -p %s/modules' % self.SETUP_BIN_DIR)
611 self.system('mkdir -p %s/plugins' % self.SETUP_BIN_DIR)
612 self.system('cp install/%s %s' % (self.EDITOR_BIN, self.SETUP_BIN_DIR))
613 self.system('cp install/modules/*.so %s/modules' % self.SETUP_BIN_DIR )
614 # self.system('cp install/plugins/*.so %s/plugins' % self.SETUP_BIN_DIR )
615 self.system('cp install/q3map2.%s %s' % ( g_cpu, self.SETUP_BIN_DIR ) )
617 if (not self.g_darwin):
619 # copy libgcc_s and stdc++ over to distribute it and reduce potential ABI fuckups
620 ret = commands.getstatusoutput('ldd -r install/' + self.EDITOR_BIN + ' 2>/dev/null | grep libgcc_s | sed -e \'s/.* => \\([^ ]*\\) .*/\\1/\'')
622 raise 'ldd command failed'
623 self.system('cp ' + ret[1] + ' ' + self.SETUP_BIN_DIR)
624 ret = commands.getstatusoutput('ldd -r install/' + self.EDITOR_BIN + ' 2>/dev/null | grep libstdc++ | sed -e \'s/.* => \\([^ ]*\\) .*/\\1/\'')
626 raise 'ldd command failed'
627 lines = string.split(ret[1], '\n')
630 self.system('cp ' + i + ' ' + self.SETUP_BIN_DIR)
631 self.M4_STDC += os.path.basename(i) + ' \n'
634 # setup process generates the wrapper at install time
635 # but we need a dummy executable for symlink in loki_setup
636 self.system('echo -n "#!/bin/sh\necho If you read this then there was a bug during setup. Report the bug and try running %s directly from it\'s installation directory.\n" > %s/radiant' % (self.EDITOR_BIN, self.SETUP_BIN_DIR));
637 self.system('echo -n "#!/bin/sh\necho If you read this then there was a bug during setup. Report the bug and try running %s directly from it\'s installation directory.\n" > %s/q3map2' % (self.EDITOR_BIN, self.SETUP_BIN_DIR));
638 ## this goes to the core install directory
639 DEST = self.SETUP_DIR + '/core'
640 self.system('mkdir -p ' + DEST + '/modules/bitmaps')
641 # general content stuff
642 self.system('cp -R plugins/model/bitmaps/* ' + DEST + '/modules/bitmaps')
643 self.system('cp setup/data/tools/credits.html ' + DEST)
644 self.system('cp setup/data/tools/links.htm ' + DEST)
645 self.system('cp setup/data/tools/q3data.qdt ' + DEST)
646 self.system('cp setup/data/tools/global.xlink ' + DEST)
647 self.system('cp -R radiant/bitmaps ' + DEST)
648 self.system('cp setup/changelog.txt ' + DEST)
649 self.system('cp setup/openurl.sh ' + DEST)
650 self.system('cp tools/quake3/q3map2/changelog.q3map2.txt ' + DEST)
652 self.system('cp -R docs/manual/Q3Rad_Manual ' + DEST)
653 self.system('cp -R docs/manual/quake3/Compile_Manual ' + DEST)
654 self.system('cp -R docs/manual/quake3/Model_Manual ' + DEST)
655 self.system('cp -R docs/manual/quake3/Terrain_Manual ' + DEST)
657 #self.system('mkdir -p ' + DEST + '/plugins/bitmaps')
658 #self.system('cp -R contrib/bobtoolz/bitmaps/* ' + DEST + '/plugins/bitmaps')
659 #self.system('cp -R contrib/bobtoolz/bt ' + DEST + '/plugins')
660 #self.system('cp -R contrib/camera/bitmaps/* ' + DEST + '/plugins/bitmaps' )
661 #self.system('cp -R contrib/bkgrnd2d/bitmaps/* ' + DEST + '/plugins/bitmaps' )
663 self.system('mkdir -p ' + self.SETUP_DIR + '/games')
667 self.system('mkdir -p ' + self.SETUP_BIN_DIR + '/q3')
668 if ( self.g_darwin == 0 ):
669 self.system('cp setup/linux/bspc ' + self.SETUP_BIN_DIR + '/q3')
672 DEST = self.SETUP_DIR + '/core/q3.game'
673 self.system('mkdir -p ' + DEST)
674 self.system('cp -R games/Q3Pack/tools/q3.game/* ' + DEST)
675 self.system('cp -R docs/manual/quake3/Team_Arena_Mapping_Help ' + DEST)
676 self.system('cp -R docs/manual/quake3/New_Teams_For_Q3TA ' + DEST)
677 self.system('cp -R docs/manual/quake3/Q3AShader_Manual ' + DEST)
679 # goes in the game install path
680 DEST = self.SETUP_DIR + '/q3'
681 self.system('mkdir -p ' + DEST)
682 self.system('cp -R games/Q3Pack/baseq3 ' + DEST)
683 self.system('cp -R games/Q3Pack/missionpack ' + DEST)
686 self.system('cp -R games/Q3Pack/tools/games/q3.game ' + self.SETUP_DIR + '/games')
690 self.system('mkdir -p ' + self.SETUP_BIN_DIR + '/wolf')
691 if ( self.g_darwin == 0 ):
692 self.system('cp games/WolfPack/bin/wolf.game/bspc ' + self.SETUP_BIN_DIR + '/wolf')
695 DEST = self.SETUP_DIR + '/core/wolf.game'
696 self.system('mkdir -p ' + DEST)
697 self.system('cp -R games/WolfPack/docs ' + DEST)
698 self.system('cp -R games/WolfPack/bin/wolf.game/* ' + DEST)
700 # goes in the game install path
701 DEST = self.SETUP_DIR + '/wolf/main'
702 self.system('mkdir -p ' + DEST)
703 self.system('cp games/WolfPack/astro-skies.pk3 ' + DEST)
704 self.system('cp games/WolfPack/common-astro-spog.pk3 ' + DEST)
705 self.system('cp games/WolfPack/lights.pk3 ' + DEST)
706 self.system('cp -R games/WolfPack/scripts ' + DEST)
707 self.system('cp -R games/WolfPack/maps ' + DEST)
708 self.system('cp -R games/WolfPack/models ' + DEST)
711 self.system('cp -R games/WolfPack/bin/games/wolf.game ' + self.SETUP_DIR + '/games')
715 DEST = self.SETUP_DIR + '/core/et.game'
716 self.system('mkdir -p ' + DEST)
717 self.system('cp -R games/ETPack/docs ' + DEST)
718 self.system('cp -R games/ETPack/et.game/* ' + DEST)
720 # goes in game install path
721 DEST = self.SETUP_DIR + '/et/etmain'
722 self.system('mkdir -p ' + DEST)
723 self.system('cp games/ETPack/astro-skies.pk3 ' + DEST)
724 self.system('cp games/ETPack/common.pk3 ' + DEST)
725 self.system('cp games/ETPack/goldrush.pcx ' + DEST)
726 self.system('cp games/ETPack/lights.pk3 ' + DEST)
727 self.system('cp games/ETPack/mapmedia.pk3 ' + DEST)
728 self.system('cp -R games/ETPack/scripts ' + DEST)
729 self.system('cp -R games/ETPack/maps ' + DEST)
730 self.system('cp -R games/ETPack/models ' + DEST)
733 self.system('cp -R games/ETPack/games/et.game ' + self.SETUP_DIR + '/games')
735 def copy_doom3(self):
737 DEST = self.SETUP_DIR + '/core/doom3.game'
738 self.system('mkdir -p ' + DEST)
739 self.system('cp -R games/Doom3Pack/tools/doom3.game/* ' + DEST)
742 self.system('cp -R games/Doom3Pack/tools/games/doom3.game ' + self.SETUP_DIR + '/games')
746 self.system('cp -R install/q2 %s' % (self.SETUP_BIN_DIR))
749 DEST = self.SETUP_DIR + '/core/q2.game'
750 self.system('mkdir -p ' + DEST + '/modules')
751 self.system('cp -R games/Q2Pack/q2.game/* ' + DEST)
752 self.system('cp install/q2/q2map install/q2/qdata3 ' + DEST)
753 # self.system('cp -R install/q2/modules ' + DEST )
755 # goes in game install path
756 DEST = self.SETUP_DIR + '/q2'
757 self.system('mkdir -p ' + DEST + '/baseq2')
758 self.system('cp -R games/Q2Pack/baseq2/* ' + DEST + '/baseq2')
761 self.system('cp -R games/Q2Pack/games/q2.game ' + self.SETUP_DIR + '/games')
765 self.system('cp -R install/heretic2 %s' % (self.SETUP_BIN_DIR))
768 DEST = self.SETUP_DIR + '/core/heretic2.game'
769 self.system('mkdir -p ' + DEST + '/modules')
770 self.system('cp -R games/Her2Pack/heretic2.game/* ' + DEST)
771 self.system('cp install/q2/q2map install/heretic2/qdata3 ' + DEST)
772 # self.system('cp -R install/heretic2/modules ' + DEST )
774 # goes in game install path
775 DEST = self.SETUP_DIR + '/heretic2'
776 self.system('mkdir -p ' + DEST + '/base')
777 self.system('cp -R games/Her2Pack/base/* ' + DEST + '/base')
780 self.system('cp -R games/Her2Pack/games/heretic2.game ' + self.SETUP_DIR + '/games')
782 def build_setup(self):
783 self.system( 'cp -R ' + self.SETUP_IMAGE_OS + '/* ' + self.SETUP_DIR )
784 self.system( 'cp -fR ' + self.SETUP_IMAGE + '/* ' + self.SETUP_DIR )
785 self.system('cp setup/license.txt ' + self.SETUP_DIR)
786 self.system('cp setup/linux/README ' + self.SETUP_DIR)
789 OS_DEFS='--define=M4_OSX'
790 M4_LINE = OS_DEFS + ' --define=M4_VER_MAJOR=' + self.major + ' --define=M4_VER_MINOR=' + self.minor + ' --define=M4_VER=' + self.line
791 M4_LINE += ' --define=M4_GAME_ET=%d' % self.DO_GAME_ET
792 M4_LINE += ' --define=M4_GAME_DOOM3=%d' % self.DO_GAME_DOOM3
793 M4_LINE += ' --define=M4_GAME_Q2=%d' % self.DO_GAME_Q2
794 if ( self.M4_STDC != '' ):
795 M4_LINE += ' --define=M4_STDC=' + self.M4_STDC
797 self.system('m4 ' + M4_LINE + ' ' + self.SETUP_DIR + '/setup.data/setup.xml.in > ' + self.SETUP_DIR + '/setup.data/setup.xml')
799 self.system('m4 ' + M4_LINE + ' ' + self.SETUP_DIR + '/setup.data/postinstall.sh.in > ' + self.SETUP_DIR + '/setup.data/postinstall.sh')
801 self.system('m4 ' + M4_LINE + ' ' + self.SETUP_DIR + '/setup.data/config.sh.in > ' + self.SETUP_DIR + '/setup.data/config.sh')
803 self.system('m4 ' + M4_LINE + ' ' + self.SETUP_DIR + '/setup.sh.in > ' + self.SETUP_DIR + '/setup.sh')
804 self.system('chmod +x ' +self.SETUP_DIR + '/setup.sh')
805 self.system('find ' + self.SETUP_DIR + ' -name .svn | while read i ; do rm -r "$i" ; done')
807 self.system('setup/linux/makeself/makeself.sh ' + self.SETUP_DIR + ' ' + self.SETUP_TARGET + ' "GtkRadiant ' + self.line + ' setup" ./setup.sh')
809 def build_fink_deb(self):
810 print "Building installer .deb\n"
812 self.FINKINFO_DIR = '/sw/fink/10.2/unstable/main/finkinfo/games'
813 self.TARBALL_DIR='radiant-' + self.F_REV + '.' + self.major
814 self.TARBALL_NAME='radiant-' + self.F_REV + '.' + self.major + '.tar.gz'
815 self.TARBALL_DEST='/sw/src'
817 # prepare package description
818 self.system('mkdir -p ' + self.FINKINFO_DIR)
819 self.system('m4 ' + M4_LINE + ' --define=M4_SETUP_TARGET=' + self.SETUP_TARGET + ' --define=M4_F_REV=' + self.F_REV + ' ' + 'setup/osx/radiant.info.m4 > ' + self.FINKINFO_DIR + '/radiant-' + self.TARBALL_DIR + '.info')
822 self.system('if [ -r /tmp/' + self.TARBALL_DIR + ' ] ; then rm -r ' '/tmp/' + self.TARBALL_DIR + ' ; fi')
823 self.system('mkdir -p ' '/tmp/' + self.TARBALL_DIR)
824 self.system('cp ' + self.SETUP_TARGET + ' ' + '/tmp/' + self.TARBALL_DIR)
825 self.system('cd /tmp ; tar -cvzf ' + self.TARBALL_NAME + ' ' + self.TARBALL_DIR + ' ; cp ' + self.TARBALL_NAME + ' ' + self.TARBALL_DEST + '/')
826 self.system('/sw/bin/fink rebuild radiant')
830 def spawn_setup(self, env, target, source):
831 if ( OS == 'Darwin' ):
835 (self.line, self.major, self.minor) = get_version()
836 print 'Setup: GtkRadiant %s' % self.line
837 if ( self.g_darwin ):
838 self.SETUP_IMAGE_OS = '../loki_setup/image'
840 self.SETUP_IMAGE_OS = 'setup/linux/setup_image.Linux'
841 self.SETUP_IMAGE = 'setup/linux/setup_image'
842 self.SETUP_DIR = '/tmp/radiant-setup.%d' % os.getpid()
843 self.EDITOR_BIN='radiant.' + g_cpu
844 if ( self.g_darwin ):
845 self.SETUP_BIN_DIR = self.SETUP_DIR + '/bin/Darwin/ppc'
846 self.SETUP_TARGET = 'osx-radiant-%s.run' % self.line
848 self.SETUP_BIN_DIR = self.SETUP_DIR + '/bin/Linux/x86'
849 self.SETUP_TARGET = 'linux-radiant-%s.run' % self.line
850 # TODO: eval a conf file instead
858 if ( self.g_darwin ):
863 print 'version: %s major: %s minor: %s\neditor core: %d\nq3: %d\nwolf: %d\net: %d\ndoom3: %d\nq2: %d\nher2: %d' % (self.line, self.major, self.minor, self.DO_CORE, self.DO_GAME_Q3, self.DO_GAME_WOLF, self.DO_GAME_ET, self.DO_GAME_DOOM3, self.DO_GAME_Q2, self.DO_GAME_HER2)
866 if (self.DO_GAME_Q3):
868 if (self.DO_GAME_WOLF):
870 if (self.DO_GAME_ET):
872 if (self.DO_GAME_DOOM3):
874 if ( OS != 'Darwin' ):
875 if (self.DO_GAME_Q2):
877 if (self.DO_GAME_HER2):
882 def spawn_setup(env, target, source):
883 setup = setup_builder()
884 setup.spawn_setup(env, target, source)
886 # NOTE: could modify g_env to add the deps auto when calling SharedLibrarySafe ..
888 g_env.Command('foo', INSTALL + '/radiant.' + g_cpu, [ spawn_setup ] )
890 INSTALL + '/modules/archivepak.so',
891 INSTALL + '/modules/archivewad.so',
892 INSTALL + '/modules/archivezip.so',
893 INSTALL + '/modules/entity.so',
894 # INSTALL + '/modules/fgd.so',
895 INSTALL + '/modules/imagehl.so',
896 INSTALL + '/modules/imageq2.so',
897 INSTALL + '/modules/image.so',
898 INSTALL + '/modules/imagepng.so',
899 INSTALL + '/modules/mapq3.so',
900 INSTALL + '/modules/mapxml.so',
901 INSTALL + '/modules/model.so',
902 INSTALL + '/modules/md3model.so',
903 INSTALL + '/modules/shaders.so',
904 INSTALL + '/modules/vfspk3.so',
905 # INSTALL + '/modules/vfswad.so',
906 # INSTALL + '/plugins/bobtoolz.so',
907 # INSTALL + '/plugins/camera.so',
908 # INSTALL + '/plugins/prtview.so',
909 # INSTALL + '/plugins/gensurf.so',
910 # INSTALL + '/plugins/bkgrnd2d.so',
911 INSTALL + '/q3map2.' + g_cpu,
912 INSTALL + '/radiant.' + g_cpu,
913 INSTALL + '/q3data.' + g_cpu ]
914 if ( OS != 'Darwin' ):
916 INSTALL + '/q2/q2map',
917 INSTALL + '/q2/qdata3',
918 INSTALL + '/heretic2/qdata3',
919 INSTALL + '/heretic2/q2map' ]
920 g_env.Depends( 'foo', depends_list )
922 # end setup ---------------------------------------------------------------------------------------