Changeset 277 for trunk/SConstruct


Ignore:
Timestamp:
12/03/11 20:02:33 (12 years ago)
Author:
tim
Message:

incorporated a version of Adam Golebiowski's build patches
reworked REGFI_VERSION and began using it in pyregfi installation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SConstruct

    r273 r277  
    2424# Libraries
    2525libregfi_static = env.Library(lib_src)
    26 libregfi = env.SharedLibrary(lib_src, LIBS=['m','pthread', 'talloc'])
     26libregfi = env.SharedLibrary(lib_src, LIBS=['m','pthread', 'talloc'],
     27                             LINKFLAGS="-shared -fPIC -Wl,-soname,libregfi.so.%s" % REGFI_VERSION)
    2728
    2829
     
    4647
    4748# Installation
    48 prefix='/usr/local/'
    49 if 'PREFIX' in os.environ:
    50    prefix = os.environ['PREFIX']+'/'
     49prefix     = os.environ.get('PREFIX','/usr/local')+'/'
     50destdir    = os.environ.get('DESTDIR','')
     51bindir     = os.environ.get('BINDIR', prefix + 'bin')
     52libdir     = os.environ.get('LIBDIR', prefix + 'lib')
     53includedir = os.environ.get('INCLUDEDIR', prefix + 'include')
     54mandir     = os.environ.get('MANDIR', prefix + 'man')
    5155
    52 install_items = [prefix+'bin',
    53                  prefix+'lib',
    54                  prefix+'include/regfi',
    55                  prefix+'man']
     56install_items = [destdir + bindir,
     57                 destdir + libdir,
     58                 destdir + includedir + '/regfi',
     59                 destdir + mandir]
    5660
    57 env.Install(prefix+'bin', [reglookup, reglookup_recover, 'bin/reglookup-timeline'])
    58 libinstall = env.Install(prefix+'lib', [libregfi, libregfi_static])
    59 env.Install(prefix+'include/regfi', Glob('include/*.h'))
    60 env.Install(prefix+'man/man1', [man_reglookup, man_reglookup_recover,
    61                                 man_reglookup_timeline])
    62 env.AddPostAction(libinstall, 'ldconfig')
     61
     62env.Install(destdir+bindir, [reglookup, reglookup_recover, 'bin/reglookup-timeline'])
     63libinstall = env.Install(destdir+libdir, [libregfi, libregfi_static])
     64env.Install(destdir+includedir+'/regfi', Glob('include/*.h'))
     65env.Install(destdir+mandir+'/man1', [man_reglookup, man_reglookup_recover,
     66                                     man_reglookup_timeline])
     67if os.getuid() == 0:
     68   env.AddPostAction(libinstall, 'ldconfig')
    6369
    6470if sys.version_info[0] == 2:
     
    6773                                        'python/pyregfi/structures.py',
    6874                                        'python/pyregfi/winsec.py'],
    69                "python pyregfi-distutils.py install | tee pyregfi2-install.log")
     75               "python pyregfi-distutils.py install --root=%s | tee pyregfi2-install.log" % destdir)
    7076
    7177python_path = os.popen('which python3').read()
     
    7581                                        'python/pyregfi/structures.py',
    7682                                        'python/pyregfi/winsec.py'],
    77                "python3 pyregfi-distutils.py install | tee pyregfi3-install.log")
     83               "python3 pyregfi-distutils.py install --root=%s | tee pyregfi3-install.log" % destdir)
    7884
    7985# API documentation
Note: See TracChangeset for help on using the changeset viewer.