jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

206 lines
7.9KB

  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. import os
  4. import Params
  5. import commands
  6. from Configure import g_maxlen
  7. #g_maxlen = 40
  8. import shutil
  9. import Task
  10. import re
  11. VERSION='1.9.0'
  12. APPNAME='jack'
  13. JACK_API_VERSION = '0.1.0'
  14. # these variables are mandatory ('/' are converted automatically)
  15. srcdir = '.'
  16. blddir = 'build'
  17. def display_msg(msg, status = None, color = None):
  18. sr = msg
  19. global g_maxlen
  20. g_maxlen = max(g_maxlen, len(msg))
  21. if status:
  22. print "%s :" % msg.ljust(g_maxlen),
  23. Params.pprint(color, status)
  24. else:
  25. print "%s" % msg.ljust(g_maxlen)
  26. def display_feature(msg, build):
  27. if build:
  28. display_msg(msg, "yes", 'GREEN')
  29. else:
  30. display_msg(msg, "no", 'YELLOW')
  31. def create_svnversion_gen(bld, header='svnversion.h', define=None):
  32. cmd = '../svnversion_regenerate.sh ${TGT}'
  33. if define:
  34. cmd += " " + define
  35. cls = Task.simple_task_type('svnversion', cmd, color='BLUE')
  36. cls.must_run = lambda self: True
  37. #cls.before = 'cxx'
  38. def sg(self):
  39. rt = Params.h_file(self.m_outputs[0].abspath(self.env()))
  40. return rt
  41. cls.signature = sg
  42. #def se(self):
  43. # r = sg(self)
  44. # return (r, r, r, r, r)
  45. #cls.cache_sig = property(sg, None)
  46. cls.cache_sig = None
  47. tsk = cls('svnversion', bld.env().copy())
  48. tsk.m_inputs = []
  49. tsk.m_outputs = [bld.path.find_or_declare(header)]
  50. tsk.prio = 1 # execute this task first
  51. def set_options(opt):
  52. # options provided by the modules
  53. opt.tool_options('compiler_cxx')
  54. opt.tool_options('compiler_cc')
  55. opt.add_option('--dbus', action='store_true', default=False, help='Enable D-Bus JACK (jackdbus)')
  56. opt.add_option('--doxygen', action='store_true', default=False, help='Enable build of doxygen documentation')
  57. opt.add_option('--monitor', action='store_true', default=False, help='Build with monitoring records')
  58. opt.sub_options('dbus')
  59. def configure(conf):
  60. platform = conf.detect_platform()
  61. conf.env['IS_MACOSX'] = platform == 'darwin'
  62. conf.env['IS_LINUX'] = platform == 'linux'
  63. if conf.env['IS_LINUX']:
  64. Params.pprint('CYAN', "Linux detected")
  65. if conf.env['IS_MACOSX']:
  66. Params.pprint('CYAN', "MacOS X detected")
  67. conf.check_tool('compiler_cxx')
  68. conf.check_tool('compiler_cc')
  69. conf.sub_config('common')
  70. if conf.env['IS_LINUX']:
  71. conf.sub_config('linux')
  72. if Params.g_options.dbus:
  73. conf.sub_config('dbus')
  74. conf.sub_config('example-clients')
  75. conf.env['LIB_PTHREAD'] = ['pthread']
  76. conf.env['LIB_DL'] = ['dl']
  77. conf.env['LIB_RT'] = ['rt']
  78. conf.env['JACK_API_VERSION'] = JACK_API_VERSION
  79. conf.env['JACK_VERSION'] = VERSION
  80. conf.env['BUILD_DOXYGEN_DOCS'] = Params.g_options.doxygen
  81. conf.env['BUILD_WITH_MONITOR'] = Params.g_options.monitor
  82. conf.define('ADDON_DIR', os.path.normpath(conf.env['PREFIX'] + '/lib/jack'))
  83. conf.define('JACK_LOCATION', os.path.normpath(conf.env['PREFIX'] + '/bin'))
  84. conf.define('__SMP__', 1)
  85. conf.define('USE_POSIX_SHM', 1)
  86. conf.define('JACKMP', 1)
  87. if conf.env['BUILD_JACKDBUS'] == True:
  88. conf.define('JACK_DBUS', 1)
  89. if conf.env['BUILD_WITH_MONITOR'] == True:
  90. conf.define('JACK_MONITOR', 1)
  91. conf.write_config_header('config.h')
  92. svnrev = None
  93. if os.access('svnversion.h', os.R_OK):
  94. data = file('svnversion.h').read()
  95. m = re.match(r'^#define SVN_VERSION "([^"]*)"$', data)
  96. if m != None:
  97. svnrev = m.group(1)
  98. print
  99. display_msg("==================")
  100. version_msg = "JACK " + VERSION
  101. if svnrev:
  102. version_msg += " exported from r" + svnrev
  103. else:
  104. version_msg += " svn revision will checked and eventually updated during build"
  105. print version_msg
  106. print
  107. display_msg("Install prefix", conf.env['PREFIX'], 'CYAN')
  108. display_msg("Drivers directory", conf.env['ADDON_DIR'], 'CYAN')
  109. display_feature('Build doxygen documentation', conf.env['BUILD_DOXYGEN_DOCS'])
  110. display_feature('Build with monitoring records', conf.env['BUILD_WITH_MONITOR'])
  111. if conf.env['IS_LINUX']:
  112. display_feature('Build with ALSA support', conf.env['BUILD_DRIVER_ALSA'] == True)
  113. display_feature('Build with FireWire (FreeBob) support', conf.env['BUILD_DRIVER_FREEBOB'] == True)
  114. display_feature('Build with FireWire (FFADO) support', conf.env['BUILD_DRIVER_FFADO'] == True)
  115. display_feature('Build D-Bus JACK (jackdbus)', conf.env['BUILD_JACKDBUS'] == True)
  116. if conf.env['BUILD_JACKDBUS'] == True:
  117. display_msg('D-Bus service install directory', conf.env['DBUS_SERVICES_DIR'], 'CYAN')
  118. #display_msg('Settings persistence', xxx)
  119. if conf.env['DBUS_SERVICES_DIR'] != conf.env['DBUS-1_SESSION_BUS_SERVICES_DIR'][0]:
  120. print
  121. print Params.g_colors['RED'] + "WARNING: D-Bus session services directory as reported by pkg-config is"
  122. print Params.g_colors['RED'] + "WARNING:",
  123. print Params.g_colors['CYAN'] + conf.env['DBUS-1_SESSION_BUS_SERVICES_DIR'][0]
  124. print Params.g_colors['RED'] + 'WARNING: but service file will be installed in'
  125. print Params.g_colors['RED'] + "WARNING:",
  126. print Params.g_colors['CYAN'] + conf.env['DBUS_SERVICES_DIR']
  127. print Params.g_colors['RED'] + 'WARNING: You may need to adjust your D-Bus configuration after installing jackdbus'
  128. print 'WARNING: You can override dbus service install directory'
  129. print 'WARNING: with --enable-pkg-config-dbus-service-dir option to this script'
  130. print Params.g_colors['NORMAL'],
  131. print
  132. def build(bld):
  133. if not os.access('svnversion.h', os.R_OK):
  134. create_svnversion_gen(bld)
  135. # process subfolders from here
  136. bld.add_subdirs('common')
  137. if bld.env()['IS_LINUX']:
  138. bld.add_subdirs('linux')
  139. if bld.env()['BUILD_JACKDBUS'] == True:
  140. bld.add_subdirs('dbus')
  141. bld.add_subdirs('example-clients')
  142. bld.add_subdirs('tests')
  143. if bld.env()['IS_MACOSX']:
  144. bld.add_subdirs('macosx')
  145. bld.add_subdirs('example-clients')
  146. bld.add_subdirs('tests')
  147. if bld.env()['BUILD_JACKDBUS'] == True:
  148. bld.add_subdirs('dbus')
  149. if bld.env()['BUILD_DOXYGEN_DOCS'] == True:
  150. share_dir = bld.env().get_destdir() + Params.g_build.env()['PREFIX'] + '/share/jack-audio-connection-kit'
  151. html_docs_source_dir = "build/default/html"
  152. html_docs_install_dir = share_dir + '/reference/html/'
  153. if Params.g_commands['install']:
  154. if os.path.isdir(html_docs_install_dir):
  155. Params.pprint('CYAN', "Removing old doxygen documentation installation...")
  156. shutil.rmtree(html_docs_install_dir)
  157. Params.pprint('CYAN', "Removing old doxygen documentation installation done.")
  158. Params.pprint('CYAN', "Installing doxygen documentation...")
  159. shutil.copytree(html_docs_source_dir, html_docs_install_dir)
  160. Params.pprint('CYAN', "Installing doxygen documentation done.")
  161. elif Params.g_commands['uninstall']:
  162. Params.pprint('CYAN', "Uninstalling doxygen documentation...")
  163. if os.path.isdir(share_dir):
  164. shutil.rmtree(share_dir)
  165. Params.pprint('CYAN', "Uninstalling doxygen documentation done.")
  166. elif Params.g_commands['clean']:
  167. if os.access(html_docs_source_dir, os.R_OK):
  168. Params.pprint('CYAN', "Removing doxygen generated documentation...")
  169. shutil.rmtree(html_docs_source_dir)
  170. Params.pprint('CYAN', "Removing doxygen generated documentation done.")
  171. elif Params.g_commands['build']:
  172. if not os.access(html_docs_source_dir, os.R_OK):
  173. os.popen("doxygen").read()
  174. else:
  175. Params.pprint('CYAN', "doxygen documentation already built.")
  176. def dist_hook():
  177. os.remove('svnversion_regenerate.sh')
  178. os.system('../svnversion_regenerate.sh svnversion.h')