1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
--- wscript.orig 2014-03-12 15:19:28 UTC
+++ wscript
@@ -72,6 +72,9 @@ def options(ctx):
add_option_enable_disable(ctx, 'double', default = False,
help_str = 'compile in double precision mode',
help_disable_str = 'compile in single precision mode (default)')
+ ctx.add_option('--disable-doxygen', action = 'store_true',
+ dest = 'disable_doxygen',
+ help = 'disable doxygen even if found')
ctx.add_option('--with-target-platform', type='string',
help='set target platform for cross-compilation', dest='target_platform')
@@ -254,6 +257,9 @@ def configure(ctx):
# check if doxygen is installed, optional
try:
ctx.find_program('doxygen', var='DOXYGEN')
+ if ctx.options.disable_doxygen:
+ from sys import stderr
+ print >> stderr, 'doxygen found, but disabled with --disable-doxygen'
except ctx.errors.ConfigurationError:
ctx.to_log('doxygen was not found (ignoring)')
@@ -291,11 +297,11 @@ def build(bld):
bld( source = bld.path.ant_glob('doc/*.txt') )
# build documentation from source files using doxygen
- if bld.env['DOXYGEN']:
+ if bld.env['DOXYGEN'] and not ctx.options.disable_doxygen:
bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
source = 'doc/web.cfg',
cwd = 'doc')
- bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc',
+ bld.install_files( '${PREFIX}' + '/share/doc/aubio',
bld.path.ant_glob('doc/web/html/**'),
cwd = bld.path.find_dir ('doc/web'),
relative_trick = True)
|