From 1befdda2af78c7f8056d5eedc8309dedecffb51d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 9 Jul 2012 08:14:31 +0000 Subject: Factor out documentation fixup stuff to autowaf. Update Doxygen stuff and improve documentation style. Update to r70/autowaf. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@4528 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index ad1fa1b..7dc732b 100644 --- a/wscript +++ b/wscript @@ -334,27 +334,9 @@ def build(bld): if bld.env['DOCS']: bld.add_post_fun(fix_docs) -def build_dir(ctx, subdir): - if autowaf.is_child(): - return os.path.join('build', APPNAME, subdir) - else: - return os.path.join('build', subdir) - def fix_docs(ctx): - try: - top = os.getcwd() - os.chdir(build_dir(ctx, 'doc/html')) - os.system("sed -i 's/LILV_API //' group__lilv.html") - os.system("sed -i 's/LILV_DEPRECATED //' group__lilv.html") - os.system("sed -i 's/href=\"doc\/style.css\"/href=\"style.css\"/' group__lilv.html") - os.remove('index.html') - os.symlink('group__lilv.html', 'index.html') - os.chdir(top) - os.chdir(build_dir(ctx, 'doc/man/man3')) - os.system("sed -i 's/LILV_API //' lilv.3") - os.chdir(top) - except: - Logs.error("Failed to fix up %s documentation" % APPNAME) + if ctx.cmd == 'build': + autowaf.make_simple_dox(APPNAME) def upload_docs(ctx): os.system("rsync -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/lilv/") -- cgit v1.2.1