]> git.pld-linux.org Git - packages/jack-audio-connection-kit.git/blame - jack-doxygen-output-dirs.patch
- use waf -j1 to avoid hangs on x86_64
[packages/jack-audio-connection-kit.git] / jack-doxygen-output-dirs.patch
CommitLineData
41f28030
JR
1diff -rupN jack-1.9.7.old/doxyfile jack-1.9.7/doxyfile
2--- jack-1.9.7.old/doxyfile 2011-03-30 11:03:54.000000000 -0400
3+++ jack-1.9.7/doxyfile 2011-04-03 08:54:03.000000000 -0400
4@@ -38,7 +38,7 @@ PROJECT_NUMBER = 1.9.7
5 # If a relative path is entered, it will be relative to the location
6 # where doxygen was started. If left blank the current directory will be used.
7
8-OUTPUT_DIRECTORY =
9+OUTPUT_DIRECTORY = build/default/
10
11 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
12 # 4096 sub-directories (in 2 levels) under the output directory of each output
13--- jack-1.9.7/wscript~ 2011-03-30 17:03:54.000000000 +0200
14+++ jack-1.9.7/wscript 2011-04-17 20:08:11.884392560 +0200
15@@ -315,9 +315,12 @@
16 bld.add_subdirs('dbus')
17
18 if bld.env['BUILD_DOXYGEN_DOCS'] == True:
19- share_dir = bld.env.get_destdir() + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
20 html_docs_source_dir = "build/default/html"
21- html_docs_install_dir = share_dir + '/reference/html/'
22+ if os.environ.get('HTML_DIR', ''):
23+ html_docs_install_dir = bld.env.get_destdir() + os.environ.get('HTML_DIR', '')
24+ else:
25+ share_dir = bld.env.get_destdir() + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
26+ html_docs_install_dir = share_dir + '/reference/html/'
27 if Options.commands['install']:
28 if os.path.isdir(html_docs_install_dir):
29 Utils.pprint('CYAN', "Removing old doxygen documentation installation...")
This page took 0.060477 seconds and 4 git commands to generate.