Silvan Calarco
8063faef39
built with new libopus requirement [release 1.9.9.5-2mamba;Thu Jul 25 2013]
39 lines
2.0 KiB
Diff
39 lines
2.0 KiB
Diff
diff -Nru jack-1.9.9.5.orig/wscript jack-1.9.9.5/wscript
|
|
--- jack-1.9.9.5.orig/wscript 2013-06-19 03:47:29.667724339 +0200
|
|
+++ jack-1.9.9.5/wscript 2013-06-19 03:50:31.364005330 +0200
|
|
@@ -356,10 +356,10 @@
|
|
bld.add_subdirs('dbus')
|
|
|
|
if bld.env['BUILD_DOXYGEN_DOCS'] == True:
|
|
- share_dir = bld.env.get_destdir() + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
|
|
html_docs_source_dir = "html"
|
|
- html_docs_install_dir = share_dir + '/reference/html/'
|
|
- if Options.commands['install']:
|
|
+ if bld.cmd == 'install':
|
|
+ share_dir = bld.options.destdir + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
|
|
+ html_docs_install_dir = share_dir + '/reference/html/'
|
|
if os.path.isdir(html_docs_install_dir):
|
|
Logs.pprint('CYAN', "Removing old doxygen documentation installation...")
|
|
shutil.rmtree(html_docs_install_dir)
|
|
@@ -367,17 +367,17 @@
|
|
Logs.pprint('CYAN', "Installing doxygen documentation...")
|
|
shutil.copytree(html_docs_source_dir, html_docs_install_dir)
|
|
Logs.pprint('CYAN', "Installing doxygen documentation done.")
|
|
- elif Options.commands['uninstall']:
|
|
+ elif bld.cmd =='uninstall':
|
|
Logs.pprint('CYAN', "Uninstalling doxygen documentation...")
|
|
if os.path.isdir(share_dir):
|
|
shutil.rmtree(share_dir)
|
|
Logs.pprint('CYAN', "Uninstalling doxygen documentation done.")
|
|
- elif Options.commands['clean']:
|
|
+ elif bld.cmd =='clean':
|
|
if os.access(html_docs_source_dir, os.R_OK):
|
|
Logs.pprint('CYAN', "Removing doxygen generated documentation...")
|
|
shutil.rmtree(html_docs_source_dir)
|
|
Logs.pprint('CYAN', "Removing doxygen generated documentation done.")
|
|
- elif Options.commands['build']:
|
|
+ elif bld.cmd =='build':
|
|
if not os.access(html_docs_source_dir, os.R_OK):
|
|
os.popen("doxygen").read()
|
|
else:
|