aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-04-18 16:09:22 +0000
committerlloyd <[email protected]>2011-04-18 16:09:22 +0000
commit886252ce1a1b0de611c33c9eac0a91a0e6bf3276 (patch)
treeaeeb6126457b207a4b5a12dab489265ef61f232d /configure.py
parent6c33aa3e97cb9717d89fcae61f18dd58b2569866 (diff)
Rename --use-sphinx and --use-doxygen to --with-sphinx and
--with-doxygen, and add no-op --without versions for both. This makes it easier to script the build in Gentoo's ebuild.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py22
1 files changed, 14 insertions, 8 deletions
diff --git a/configure.py b/configure.py
index 53651452d..18d019de2 100755
--- a/configure.py
+++ b/configure.py
@@ -67,7 +67,7 @@ class BuildConfigurationInformation(object):
self.python_dir = os.path.join(options.src_dir, 'wrap', 'python')
- self.use_boost_python = options.boost_python
+ self.boost_python = options.boost_python
self.doc_output_dir = os.path.join(self.build_dir, 'docs')
@@ -97,12 +97,12 @@ class BuildConfigurationInformation(object):
def build_doc_commands():
yield '$(COPY) readme.txt %s' % (self.doc_output_dir)
- if options.use_sphinx:
+ if options.with_sphinx:
yield 'sphinx-build -b html doc %s' % (self.manual_dir)
else:
yield '$(COPY) doc/*.txt %s' % (self.manual_dir)
- if options.use_doxygen:
+ if options.with_doxygen:
yield 'doxygen %s/botan.doxy' % (self.build_dir)
self.build_doc_commands = '\n'.join(['\t' + s for s in build_doc_commands()])
@@ -113,10 +113,10 @@ class BuildConfigurationInformation(object):
yield self.botan_include_dir
yield self.internal_include_dir
yield os.path.join(self.doc_output_dir, 'manual')
- if options.use_doxygen:
+ if options.with_doxygen:
yield os.path.join(self.doc_output_dir, 'doxygen')
- if self.use_boost_python:
+ if self.boost_python:
yield self.pyobject_dir
self.build_dirs = list(build_dirs())
@@ -228,12 +228,18 @@ def process_command_line(args):
help='set distribution specific versioning',
default='unspecified')
- build_group.add_option('--use-sphinx', default=False, action='store_true',
+ build_group.add_option('--with-sphinx', default=False, action='store_true',
help='Use Sphinx to generate HTML manual')
- build_group.add_option('--use-doxygen', default=False, action='store_true',
+ build_group.add_option('--without-sphinx', action='store_false',
+ help=SUPPRESS_HELP)
+
+ build_group.add_option('--with-doxygen', default=False, action='store_true',
help='Use Doxygen to generate HTML API docs')
+ build_group.add_option('--without-doxygen', action='store_false',
+ help=SUPPRESS_HELP)
+
build_group.add_option('--dumb-gcc', dest='dumb_gcc',
action='store_true', default=False,
help=SUPPRESS_HELP)
@@ -261,7 +267,7 @@ def process_command_line(args):
action='store_false',
help=SUPPRESS_HELP)
- wrapper_group.add_option('--use-python-version', dest='python_version',
+ wrapper_group.add_option('--with-python-version', dest='python_version',
metavar='N.M',
default='.'.join(map(str, sys.version_info[0:2])),
help='specify Python to build against (eg %default)')