source: trunk/SConstruct @ 1177

Last change on this file since 1177 was 1177, checked in by mar637, 18 years ago

reworked creating binary dist

File size: 4.4 KB
RevLine 
[1125]1import os
2import sys
[1082]3import distutils.sysconfig
4import platform
[1125]5# scons plug-ins
[1130]6#from installtree import InstallTree
[1082]7
[1177]8version = "2.1b"
[1125]9moduledir = distutils.sysconfig.get_python_lib()
[1136]10if  platform.architecture()[0] == '64bit':
11    # hack to install into /usr/lib64 if scons is in the 32bit /usr/lib/
12    if moduledir.startswith("/usr/lib/"):
[1155]13        moduledir = moduledir.replace("lib", "lib64")
[1082]14
[1120]15opts = Options("userconfig.py")
[1130]16opts.AddOptions(PathOption("prefix",
17                           "The root installation path",
18                           distutils.sysconfig.PREFIX),
[1120]19                PathOption("moduledir",
20                            "The python module path (site-packages))",
21                            moduledir),
[1130]22                ("rpfitsdir", "Alternative rpfits location.", ""),
[1138]23                ("cfitsioincdir", "Alternative cfitsio include dir", ""),
[1135]24                ("casadir", "Alternative casa location", ""),
[1120]25                EnumOption("mode", "The type of build.", "debug",
[1135]26                           ["release","debug"], ignorecase=1),
[1177]27                ("makedist",
28                 "Make a binary distribution giving a suffix, e.g. sarge or fc5",
29                 "")
[1130]30                )
[1082]31
[1135]32env = Environment( toolpath = ['./scons'],
[1177]33                   tools = ["default", "installtree", "casa",
[1135]34                            "utils"],
35                   ENV = { 'PATH' : os.environ[ 'PATH' ],
[1120]36                          'HOME' : os.environ[ 'HOME' ] },
[1135]37                   options = opts)
[1082]38
[1120]39Help(opts.GenerateHelpText(env))
40env.SConsignFile()
[1135]41env.Append(CASAARCH = '', CASAROOT = '')
[1138]42if (os.path.exists(env["cfitsioincdir"])):
43    env.Append(CPPPATH=[env["cfitsioincdir"]])
44env.AddCustomPath(env["rpfitsdir"])
[1082]45if not env.GetOption('clean'):
[1130]46    conf = Configure(env)
47    # import Custom tests
[1135]48    env.AddCasaTest(conf)
[1130]49    pylib = 'python'+distutils.sysconfig.get_python_version()
50    pyinc = "Python.h"
51    if env['PLATFORM'] == "darwin":
52        pylib = "Python"
53    if not conf.CheckLib(library=pylib, language='c'): Exit(1)
54    conf.env.Append(CPPPATH=[distutils.sysconfig.get_python_inc()])
55    if not conf.CheckHeader("Python.h", language='c'):
56        Exit(1)
57    if not conf.CheckLibWithHeader('boost_python', 'boost/python.hpp', 'c++'): Exit(1)
58    conf.env.AddCustomPath(env["rpfitsdir"])
[1090]59    if not conf.CheckLib('rpfits'): Exit(1)
[1138]60    # cfitsio is either in include/ or /include/cfitsio
61    # handle this
62    if not conf.CheckLib(library='cfitsio', language='c'): Exit(1)
63    if not conf.CheckHeader('fitsio.h', language='c'):
64        if not conf.CheckHeader('cfitsio/fitsio.h', language='c'):
65            Exit(1)
66        else:
67            conf.env.Append(CPPPATH=['/usr/include/cfitsio'])
[1130]68    if (sys.platform == "darwin"):
69        conf.env.Append(LIBS = ['-framework vecLib'])
70    else:
71        if not conf.CheckLib('lapack'): Exit(1)
72        if not conf.CheckLib('blas'): Exit(1)
[1105]73    if not conf.CheckLib('g2c'): Exit(1)
[1130]74    if not conf.CheckLib('stdc++', language='c++'): Exit(1)
[1127]75    if not conf.CheckCasa(env["casadir"]): Exit(1)
[1082]76    env = conf.Finish()
[1120]77
[1135]78env["stage_dir"] = Dir("#/stage/asap")
79
[1090]80# general CPPFLAGS
[1135]81env.Append(CPPFLAGS=['-D_FILE_OFFSET_BITS=64', '-D_LARGEFILE_SOURCE', '-O3'])
[1136]82
[1090]83# 64bit flags
[1082]84if  platform.architecture()[0] == '64bit':
[1135]85    env.Append(CPPFLAGS=['-fPIC', '-D__x86_64__', '-DAIPS_64B'])
[1136]86
[1135]87if env["PLATFORM"] == "darwin":
88    env['SHLINKFLAGS'] = '$LINKFLAGS -bundle'
89    #env['SHLIBSUFFIX'] = '.dylib'
[1130]90
[1120]91if env['mode'] == 'release':
92    env.Append(LINKFLAGS=['-Wl,-O1'])
[1135]93Export("env")
[1082]94
95so = env.SConscript("src/SConscript", build_dir="build", duplicate=0)
[1177]96stagebuild = env.Install(env["stage_dir"], so )
97stagedoc = env.Install("stage", ["doc/README", "doc/CHANGELOG"] )
98stagepys = env.SConscript("python/SConscript")
99stage0 = env.Install("stage", "bin/install")
100stage1 = env.Install("stage/bin", "bin/asap")
101env.Alias('stage', [stagebuild,stagedoc,stagepys, stage0, stage1])
102# install locally
[1130]103asapmod = env.InstallTree(dest_dir = os.path.join(env["moduledir"], "asap"),
[1135]104                          src_dir  = "stage/asap",
105                          includes = ['*.py', '*.so'],
106                          excludes = [])
[1130]107asapbin = env.Install(os.path.join(env["prefix"], "bin"), "bin/asap")
[1127]108env.Alias('install', [asapmod, asapbin])
[1177]109# make binary distribution
110if len(env["makedist"]):
111    md =env.CreateDist("dist/asap-%s-%s" % (version, env["makedist"]),
112                   ["install", "README", "CHANGELOG", "asap"],
113                   "stage")
Note: See TracBrowser for help on using the repository browser.