12 DBUS_NAME_BASE
= 'org.ladish'
14 # these variables are mandatory ('/' are converted automatically)
18 def display_msg(conf
, msg
="", status
= None, color
= None):
20 conf
.check_message_1(msg
)
21 conf
.check_message_2(status
, color
)
23 Utils
.pprint('NORMAL', msg
)
25 def display_raw_text(conf
, text
, color
= 'NORMAL'):
26 Utils
.pprint(color
, text
, sep
= '')
28 def display_line(conf
, text
, color
= 'NORMAL'):
29 Utils
.pprint(color
, text
, sep
= os
.linesep
)
38 opt
.tool_options('compiler_cc')
39 opt
.tool_options('compiler_cxx')
40 opt
.tool_options('boost')
41 opt
.add_option('--enable-pkg-config-dbus-service-dir', action
='store_true', default
=False, help='force D-Bus service install dir to be one returned by pkg-config')
42 opt
.add_option('--enable-liblash', action
='store_true', default
=False, help='Build LASH compatibility library')
44 def add_cflag(conf
, flag
):
45 conf
.env
.append_unique('CXXFLAGS', flag
)
46 conf
.env
.append_unique('CCFLAGS', flag
)
49 conf
.check_tool('compiler_cc')
50 conf
.check_tool('compiler_cxx')
51 conf
.check_tool('boost')
55 atleast_version
= '1.0.0',
57 errmsg
= "not installed, see http://dbus.freedesktop.org/",
58 args
= '--cflags --libs')
60 dbus_dir
= conf
.check_cfg(package
='dbus-1', args
='--variable=session_bus_services_dir', msg
="Retrieving D-Bus services dir")
64 dbus_dir
= dbus_dir
.strip()
65 conf
.env
['DBUS_SERVICES_DIR_REAL'] = dbus_dir
67 if Options
.options
.enable_pkg_config_dbus_service_dir
:
68 conf
.env
['DBUS_SERVICES_DIR'] = dbus_dir
70 conf
.env
['DBUS_SERVICES_DIR'] = os
.path
.join(os
.path
.normpath(conf
.env
['PREFIX']), 'share', 'dbus-1', 'services')
72 conf
.env
['BUILD_LIBLASH'] = Options
.options
.enable_liblash
77 errmsg
= "not installed, see http://e2fsprogs.sourceforge.net/",
78 args
= '--cflags --libs')
81 header_name
='expat.h',
83 errmsg
= "not installed, see http://expat.sourceforge.net/")
85 conf
.env
['LIB_EXPAT'] = ['expat']
89 if build_gui
and not conf
.check_cfg(
92 errmsg
= "not installed, see http://www.gtk.org/",
93 args
= '--cflags --libs'):
96 if build_gui
and not conf
.check_cfg(
97 package
= 'dbus-glib-1',
99 errmsg
= "not installed, see http://dbus.freedesktop.org/",
100 args
= '--cflags --libs'):
103 if build_gui
and not conf
.check_cfg(
104 package
= 'gtk+-2.0',
106 errmsg
= "not installed, see http://www.gtk.org/",
107 args
= '--cflags --libs'):
110 if build_gui
and not conf
.check_cfg(
111 package
= 'libglade-2.0',
113 errmsg
= "not installed, see http://ftp.gnome.org/pub/GNOME/sources/libglade/",
114 args
= '--cflags --libs'):
117 if build_gui
and not conf
.check_cfg(
118 package
= 'flowcanvas',
120 atleast_version
= '0.5.3',
121 errmsg
= "not installed, see http://drobilla.net/software/flowcanvas/",
122 args
= '--cflags --libs'):
126 # We need the boost headers package (e.g. libboost-dev)
127 # shared_ptr.hpp and weak_ptr.hpp
128 build_gui
= conf
.check_boost(errmsg
="not found, see http://boost.org/")
130 conf
.env
['BUILD_GLADISH'] = build_gui
132 add_cflag(conf
, '-g')
133 add_cflag(conf
, '-Wall')
134 add_cflag(conf
, '-Werror')
136 conf
.define('DATA_DIR', os
.path
.normpath(os
.path
.join(conf
.env
['PREFIX'], 'share', APPNAME
)))
137 conf
.define('PACKAGE_VERSION', VERSION
)
138 conf
.define('DBUS_NAME_BASE', DBUS_NAME_BASE
)
139 conf
.define('DBUS_BASE_PATH', '/' + DBUS_NAME_BASE
.replace('.', '/'))
140 conf
.define('BASE_NAME', APPNAME
)
141 conf
.define('_GNU_SOURCE', 1)
142 conf
.write_config_header('config.h')
146 display_msg(conf
, "==================")
147 version_msg
= APPNAME
+ "-" + VERSION
149 if os
.access('version.h', os
.R_OK
):
150 data
= file('version.h').read()
151 m
= re
.match(r
'^#define GIT_VERSION "([^"]*)"$', data
)
153 version_msg
+= " exported from " + m
.group(1)
154 elif os
.access('.git', os
.R_OK
):
155 version_msg
+= " git revision will checked and eventually updated during build"
157 display_msg(conf
, version_msg
)
160 display_msg(conf
, "Install prefix", conf
.env
['PREFIX'], 'CYAN')
162 display_msg(conf
, 'Build gladish', yesno(conf
.env
['BUILD_GLADISH']))
163 display_msg(conf
, 'Build liblash', yesno(Options
.options
.enable_liblash
))
165 if conf
.env
['DBUS_SERVICES_DIR'] != conf
.env
['DBUS_SERVICES_DIR_REAL']:
167 display_line(conf
, "WARNING: D-Bus session services directory as reported by pkg-config is", 'RED')
168 display_raw_text(conf
, "WARNING:", 'RED')
169 display_line(conf
, conf
.env
['DBUS_SERVICES_DIR_REAL'], 'CYAN')
170 display_line(conf
, 'WARNING: but service file will be installed in', 'RED')
171 display_raw_text(conf
, "WARNING:", 'RED')
172 display_line(conf
, conf
.env
['DBUS_SERVICES_DIR'], 'CYAN')
173 display_line(conf
, 'WARNING: You may need to adjust your D-Bus configuration after installing ladish', 'RED')
174 display_line(conf
, 'WARNING: You can override dbus service install directory', 'RED')
175 display_line(conf
, 'WARNING: with --enable-pkg-config-dbus-service-dir option to this script', 'RED')
180 daemon
= bld
.new_task_gen('cc', 'program')
181 daemon
.target
= 'ladishd'
182 daemon
.includes
= "build/default" # XXX config.h version.h and other generated files
183 daemon
.uselib
= 'DBUS-1 UUID EXPAT'
184 daemon
.ver_header
= 'version.h'
185 daemon
.env
.append_value("LINKFLAGS", ["-lutil", "-ldl", "-Wl,-E"])
211 'studio_jack_conf.c',
214 'cmd_rename_studio.c',
216 'cmd_start_studio.c',
218 'cmd_unload_studio.c',
223 daemon
.source
.append(os
.path
.join("daemon", source
))
233 daemon
.source
.append(os
.path
.join("dbus", source
))
235 daemon
.source
.append(os
.path
.join("common", "safety.c"))
237 # process name.arnaudov.nedko.ladish.service.in -> name.arnaudov.nedko.ladish.service
239 obj
= bld
.new_task_gen('subst')
240 obj
.source
= os
.path
.join('daemon', 'dbus.service.in')
241 obj
.target
= DBUS_NAME_BASE
+ '.service'
242 obj
.dict = {'dbus_object_path': DBUS_NAME_BASE
,
243 'daemon_bin_path': os
.path
.join(bld
.env
['PREFIX'], 'bin', daemon
.target
)}
244 obj
.install_path
= bld
.env
['DBUS_SERVICES_DIR'] + os
.path
.sep
245 obj
.fun
= misc
.subst_func
247 if bld
.env
['BUILD_LIBLASH']:
248 liblash
= bld
.new_task_gen('cc', 'shlib')
249 liblash
.includes
= "build/default" # XXX config.h version.h and other generated files
250 liblash
.uselib
= 'DBUS-1'
251 liblash
.target
= 'lash'
252 liblash
.vnum
= "1.1.1"
253 liblash
.defines
= ['LOG_OUTPUT_STDOUT']
254 liblash
.source
= [os
.path
.join("lash_compat", "liblash", 'lash.c')]
256 # pkgpyexec_LTLIBRARIES = _lash.la
257 # INCLUDES = $(PYTHON_INCLUDES)
258 # _lash_la_LDFLAGS = -module -avoid-version ../liblash/liblash.la
259 # _lash_la_SOURCES = lash.c lash.h lash_wrap.c
260 # pkgpyexec_SCRIPTS = lash.py
261 # CLEANFILES = lash_wrap.c lash.py lash.pyc zynjacku.defs
262 # EXTRA_DIST = test.py lash.i lash.py
263 # lash_wrap.c lash.py: lash.i lash.h
264 # swig -o lash_wrap.c -I$(top_srcdir) -python $(top_srcdir)/$(subdir)/lash.i
266 #####################################################
268 if bld
.env
['BUILD_GLADISH']:
269 gladish
= bld
.new_task_gen('cxx', 'program')
270 gladish
.features
.append('cc')
271 gladish
.target
= 'gladish'
272 gladish
.defines
= ['LOG_OUTPUT_STDOUT']
273 gladish
.includes
= "build/default" # XXX config.h version.h and other generated files
274 gladish
.uselib
= 'DBUS-1 DBUS-GLIB-1 LIBGLADE-2.0 FLOWCANVAS'
287 #'load_projects_dialog.cpp',
291 #'project_properties.cpp',
299 'app_supervisor_proxy.c',
302 gladish
.source
.append(os
.path
.join("gui", source
))
308 gladish
.source
.append(os
.path
.join("dbus", source
))
310 # Glade UI definitions (XML)
311 bld
.install_files(bld
.env
['DATA_DIR'], 'gui/gui.glade')
313 bld
.install_files('${PREFIX}/bin', 'ladish_control', chmod
=0755)
315 # 'Desktop' file (menu entry, icon, etc)
316 #obj = bld.create_obj('subst')
317 #obj.source = 'patchage.desktop.in'
318 #obj.target = 'patchage.desktop'
320 # 'BINDIR' : bld.env()['BINDIR'],
321 # 'APP_INSTALL_NAME' : bld.env()['APP_INSTALL_NAME'],
322 # 'APP_HUMAN_NAME' : bld.env()['APP_HUMAN_NAME'],
324 #install_as(os.path.normpath(bld.env()['DATADIR'] + 'applications/'), bld.env()['APP_INSTALL_NAME'] + '.desktop', 'build/default/patchage.desktop')
328 # Installation layout (with /usr prefix)
330 # /usr/share/applications/patchage.desktop
331 # /usr/share/icons/hicolor/16x16/apps/patchage.png
332 # /usr/share/icons/hicolor/22x22/apps/patchage.png
333 # /usr/share/icons/hicolor/24x24/apps/patchage.png
334 # /usr/share/icons/hicolor/32x32/apps/patchage.png
335 # /usr/share/icons/hicolor/48x48/apps/patchage.png
336 # /usr/share/icons/hicolor/scalable/apps/patchage.svg
337 # /usr/share/patchage/patchage.glade
339 # icon cache is updated using:
340 # gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
342 # Dave disabled this, ask why before removing this
343 #install_as(os.path.normpath(bld.env()['PREFIX'] + '/share/icons/hicolor/scalable/apps/'), bld.env()['APP_INSTALL_NAME'] + '.svg', 'icons/scalable/patchage.svg')
345 #icon_sizes = ['16x16', '22x22', '24x24', '32x32', '48x48']
346 #for icon_size in icon_sizes:
347 # install_as(os.path.normpath(bld.env()['DATADIR'] + '/icons/hicolor/' + icon_size + '/apps/'), bld.env()['APP_INSTALL_NAME'] + '.png', 'icons/' + icon_size + '/patchage.png')
350 shutil
.copy('../build/default/version.h', "./")
353 from Constants
import RUN_ME
354 from TaskGen
import feature
, after
359 def process_git(self
):
360 if getattr(self
, 'ver_header', None):
361 tsk
= self
.create_task('git_ver')
362 tsk
.set_outputs(self
.path
.find_or_declare(self
.ver_header
))
365 header
= self
.outputs
[0].abspath(self
.env
)
366 if os
.access('../version.h', os
.R_OK
):
367 shutil
.copy('../version.h', header
)
368 data
= file(header
).read()
369 m
= re
.match(r
'^#define GIT_VERSION "([^"]*)"$', data
)
371 self
.ver
= m
.group(1)
372 Utils
.pprint('BLUE', "tarball from git revision " + self
.ver
)
377 if os
.access('../.git', os
.R_OK
):
378 self
.ver
= commands
.getoutput("LANG= git rev-parse HEAD").splitlines()[0]
379 if commands
.getoutput("LANG= git diff-index --name-only HEAD").splitlines():
382 Utils
.pprint('BLUE', "git revision " + self
.ver
)
386 fi
= open(header
, 'w')
387 fi
.write('#define GIT_VERSION "%s"\n' % self
.ver
)
390 cls
= Task
.task_type_from_func('git_ver', vars=[], func
=git_ver
, color
='BLUE', before
='cc')
394 cls
.runnable_status
= always
397 sg
= Utils
.h_list(self
.ver
)
398 node
= self
.outputs
[0]
399 variant
= node
.variant(self
.env
)
400 self
.generator
.bld
.node_sigs
[variant
][node
.id] = sg
401 cls
.post_run
= post_run