Initial packaging for Tizen
[profile/ivi/gobject-introspection.git] / tools / g-ir-doc-tool.in
1 #!@PYTHON@
2 # -*- Mode: Python -*-
3 # GObject-Introspection - a framework for introspecting GObject libraries
4 # Copyright (C) 2008  Johan Dahlin
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20 #
21
22 import os
23 import sys
24 import __builtin__
25
26 __builtin__.__dict__['DATADIR'] = "@datarootdir@"
27
28 if 'GI_SCANNER_DEBUG' in os.environ:
29     def on_exception(exctype, value, tb):
30         print "Caught exception: %r %r" % (exctype, value)
31         import pdb
32         pdb.pm()
33     sys.excepthook = on_exception
34
35 srcdir = os.getenv('UNINSTALLED_INTROSPECTION_SRCDIR', None)
36 if srcdir is not None:
37     path = srcdir
38 else:
39     # This is a private directory, we don't want to pollute the global
40     # namespace.
41     path = os.path.join('@libdir@', 'gobject-introspection')
42 sys.path.insert(0, path)
43
44 from giscanner.docmain import doc_main
45
46 sys.exit(doc_main(sys.argv))