2008-05-31 09:55:54 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# WAF build script for midori
|
|
|
|
|
|
|
|
import Params
|
2008-05-31 12:20:36 +00:00
|
|
|
import pproc as subprocess
|
|
|
|
import Common
|
2008-08-31 01:14:00 +00:00
|
|
|
import platform
|
2008-10-03 20:14:14 +00:00
|
|
|
import os
|
2008-05-31 09:55:54 +00:00
|
|
|
|
|
|
|
APPNAME = 'midori'
|
2008-08-31 15:23:03 +00:00
|
|
|
VERSION = '0.0.21'
|
2008-05-31 09:55:54 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
git = subprocess.Popen (['git', 'rev-parse', '--short', 'HEAD'],
|
|
|
|
stdout=subprocess.PIPE)
|
|
|
|
if not git.wait ():
|
|
|
|
VERSION = (VERSION + '-' + git.stdout.read ()).strip ()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
srcdir = '.'
|
|
|
|
blddir = '_build_'
|
|
|
|
|
|
|
|
def configure (conf):
|
|
|
|
conf.check_tool ('compiler_cc')
|
2008-06-14 00:23:33 +00:00
|
|
|
|
2008-10-03 20:14:14 +00:00
|
|
|
if not Params.g_options.disable_docs:
|
|
|
|
conf.find_program ('rst2html.py', var='RST2HTML')
|
|
|
|
# debian renames the executable, check that as well :(
|
|
|
|
if not conf.env['RST2HTML']:
|
|
|
|
conf.find_program ('rst2html', var='RST2HTML')
|
|
|
|
if conf.env['RST2HTML']:
|
|
|
|
docs = 'yes'
|
|
|
|
else:
|
|
|
|
docs = 'not available'
|
|
|
|
else:
|
|
|
|
docs = 'no'
|
|
|
|
conf.check_message_custom ('generate', 'user documentation', docs)
|
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
if not Params.g_options.disable_nls:
|
|
|
|
conf.check_tool ('intltool')
|
2008-06-01 21:47:27 +00:00
|
|
|
if conf.env['INTLTOOL'] and conf.env['POCOM']:
|
2008-05-31 09:55:54 +00:00
|
|
|
nls = 'yes'
|
|
|
|
conf.define ('ENABLE_NLS', 1)
|
|
|
|
conf.define ('MIDORI_LOCALEDIR', 'LOCALEDIR', 0)
|
|
|
|
else:
|
|
|
|
nls = 'not available'
|
|
|
|
else:
|
|
|
|
nls = 'no'
|
|
|
|
conf.check_message_custom ('localization', 'support', nls)
|
|
|
|
|
2008-09-03 01:19:40 +00:00
|
|
|
if Params.g_options.enable_update_po:
|
|
|
|
conf.find_program ('intltool-update', var='INTLTOOL_UPDATE')
|
|
|
|
if conf.env['INTLTOOL_UPDATE']:
|
|
|
|
update_po = 'yes'
|
|
|
|
else:
|
|
|
|
update_po = 'not available'
|
|
|
|
else:
|
|
|
|
update_po = 'no'
|
|
|
|
conf.check_message_custom ('localization file', 'updates', update_po)
|
|
|
|
|
2008-10-03 20:14:14 +00:00
|
|
|
# We support building without intltool
|
|
|
|
# Therefore datadir may not have been defined
|
|
|
|
if not conf.is_defined ('DATADIR'):
|
|
|
|
if Params.g_options.datadir != '':
|
|
|
|
conf.define ('DATADIR', Params.g_options.datadir)
|
|
|
|
else:
|
|
|
|
conf.define ('DATADIR', os.path.join (conf.env['PREFIX'], 'share'))
|
|
|
|
|
|
|
|
if Params.g_options.docdir == '':
|
|
|
|
docdir = "%s/doc" % conf.env['DATADIR']
|
|
|
|
else:
|
|
|
|
docdir = Params.g_options.docdir
|
|
|
|
conf.define ('DOCDIR', docdir)
|
|
|
|
|
2008-09-07 19:48:04 +00:00
|
|
|
if Params.g_options.enable_api_docs:
|
|
|
|
conf.find_program ('gtkdoc-scan', var='GTKDOC_SCAN')
|
|
|
|
conf.find_program ('gtkdoc-mktmpl', var='GTKDOC_MKTMPL')
|
|
|
|
conf.find_program ('gtkdoc-mkdb', var='GTKDOC_MKDB')
|
|
|
|
conf.find_program ('gtkdoc-mkhtml', var='GTKDOC_MKHTML')
|
|
|
|
if conf.env['GTKDOC_SCAN'] and conf.env['GTKDOC_MKTMPL'] \
|
|
|
|
and conf.env['GTKDOC_MKDB'] and conf.env['GTKDOC_MKHTML']:
|
|
|
|
api_docs = 'yes'
|
|
|
|
else:
|
|
|
|
api_docs = 'not available'
|
|
|
|
else:
|
|
|
|
api_docs = 'no'
|
|
|
|
conf.check_message_custom ('generate', 'API documentation', api_docs)
|
|
|
|
|
2008-08-26 22:44:21 +00:00
|
|
|
if not Params.g_options.disable_unique:
|
|
|
|
conf.check_pkg ('unique-1.0', destvar='UNIQUE', vnum='0.9', mandatory=False)
|
|
|
|
single_instance = ['not available','yes'][conf.env['HAVE_UNIQUE'] == 1]
|
|
|
|
else:
|
|
|
|
single_instance = 'no'
|
2008-08-22 01:59:07 +00:00
|
|
|
conf.check_message_custom ('single instance', 'support', single_instance)
|
|
|
|
|
2008-08-26 22:44:21 +00:00
|
|
|
if not Params.g_options.disable_gio:
|
|
|
|
conf.check_pkg ('gio-2.0', destvar='GIO', vnum='2.16.0', mandatory=False)
|
|
|
|
gio = ['not available','yes'][conf.env['HAVE_GIO'] == 1]
|
|
|
|
else:
|
|
|
|
gio = 'no'
|
|
|
|
conf.check_message_custom ('GIO', 'support', gio)
|
|
|
|
|
2008-08-31 01:14:00 +00:00
|
|
|
if gio == 'yes':
|
|
|
|
if platform.system () != 'Windows':
|
|
|
|
if not conf.find_program ('gvfs-open'):
|
|
|
|
print '\tNote: There doesn\'t seem to be GVfs installed.'
|
|
|
|
print '\t The HTTP backend of GVfs is recommended for'
|
|
|
|
print '\t viewing source code and loading favicons.'
|
|
|
|
|
2008-05-31 10:43:37 +00:00
|
|
|
conf.check_pkg ('gtk+-2.0', destvar='GTK', vnum='2.6.0', mandatory=True)
|
2008-07-13 21:21:46 +00:00
|
|
|
conf.check_pkg ('gtksourceview-2.0', destvar='GTKSOURCEVIEW', vnum='2.0', mandatory=False)
|
2008-10-07 00:19:33 +00:00
|
|
|
conf.check_pkg ('sqlite3', destvar='SQLITE', vnum='3.0', mandatory=False)
|
2008-05-31 10:43:37 +00:00
|
|
|
conf.check_pkg ('webkit-1.0', destvar='WEBKIT', vnum='0.1', mandatory=True)
|
|
|
|
conf.check_pkg ('libxml-2.0', destvar='LIBXML', vnum='2.6', mandatory=True)
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2008-06-01 13:16:40 +00:00
|
|
|
conf.check_header ('unistd.h', 'HAVE_UNISTD_H')
|
|
|
|
|
2008-08-10 13:53:07 +00:00
|
|
|
if conf.find_program ('rsvg-convert', var='RSVG_CONVERT'):
|
2008-05-31 09:55:54 +00:00
|
|
|
icons = 'yes'
|
|
|
|
else:
|
|
|
|
icons = 'no'
|
|
|
|
conf.check_message_custom ('icon optimization', 'support', icons)
|
|
|
|
|
|
|
|
conf.define ('PACKAGE_VERSION', VERSION)
|
|
|
|
conf.define ('PACKAGE_NAME', APPNAME)
|
2008-08-22 01:59:07 +00:00
|
|
|
conf.define ('PACKAGE_BUGREPORT', 'http://www.twotoasts.de/bugs')
|
2008-05-31 09:55:54 +00:00
|
|
|
conf.define ('GETTEXT_PACKAGE', APPNAME)
|
|
|
|
|
|
|
|
conf.write_config_header ('config.h')
|
2008-06-19 22:28:33 +00:00
|
|
|
conf.env.append_value ('CCFLAGS', '-DHAVE_CONFIG_H')
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2008-05-31 12:20:36 +00:00
|
|
|
def set_options (opt):
|
2008-05-31 09:55:54 +00:00
|
|
|
opt.tool_options ('compiler_cc')
|
|
|
|
opt.tool_options ('intltool')
|
2008-10-03 20:14:14 +00:00
|
|
|
opt.add_option ('--docdir', type='string', default='',
|
|
|
|
help='documentation root', dest='docdir')
|
|
|
|
opt.add_option ('--disable-docs', action='store_true', default=False,
|
|
|
|
help='Disables user documentation', dest='disable_docs')
|
2008-05-31 09:55:54 +00:00
|
|
|
|
|
|
|
opt.add_option ('--disable-nls', action='store_true', default=False,
|
|
|
|
help='Disables native language support', dest='disable_nls')
|
|
|
|
|
2008-08-26 22:44:21 +00:00
|
|
|
opt.add_option ('--disable-unique', action='store_true', default=False,
|
|
|
|
help='Disables Unique support', dest='disable_unique')
|
|
|
|
opt.add_option ('--disable-gio', action='store_true', default=False,
|
|
|
|
help='Disables GIO support', dest='disable_gio')
|
|
|
|
|
2008-09-03 01:19:40 +00:00
|
|
|
opt.add_option ('--enable-update-po', action='store_true', default=False,
|
|
|
|
help='Enables localization file updates', dest='enable_update_po')
|
2008-09-07 19:48:04 +00:00
|
|
|
opt.add_option ('--enable-api-docs', action='store_true', default=False,
|
|
|
|
help='Enables API documentation', dest='enable_api_docs')
|
2008-09-03 01:19:40 +00:00
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
def build (bld):
|
2008-07-27 05:39:39 +00:00
|
|
|
bld.add_subdirs ('katze midori icons')
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2008-10-03 20:14:14 +00:00
|
|
|
install_files ('DOCDIR', '/midori/', 'AUTHORS ChangeLog COPYING README')
|
|
|
|
|
|
|
|
if bld.env ()['RST2HTML']:
|
|
|
|
# FIXME: Build only if needed
|
|
|
|
if not os.access (blddir, os.F_OK):
|
|
|
|
os.mkdir (blddir)
|
|
|
|
if not os.access (blddir + '/docs', os.F_OK):
|
|
|
|
os.mkdir (blddir + '/docs')
|
|
|
|
if not os.access (blddir + '/docs/user', os.F_OK):
|
|
|
|
os.mkdir (blddir + '/docs/user')
|
|
|
|
os.chdir (blddir + '/docs/user')
|
|
|
|
subprocess.call ([bld.env ()['RST2HTML'], '-stg',
|
|
|
|
'--stylesheet=../../../docs/user/midori.css',
|
|
|
|
'../../../docs/user/midori.txt',
|
|
|
|
'midori.html',])
|
|
|
|
os.chdir ('../../..')
|
|
|
|
install_files ('DOCDIR', '/midori/user/', blddir + '/docs/user/midori.html')
|
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
if bld.env ()['INTLTOOL']:
|
|
|
|
bld.add_subdirs ('po')
|
|
|
|
|
2008-09-07 19:48:04 +00:00
|
|
|
if bld.env ()['GTKDOC_SCAN'] and Params.g_commands['build']:
|
|
|
|
bld.add_subdirs ('docs/api')
|
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
if bld.env ()['INTLTOOL']:
|
|
|
|
obj = bld.create_obj ('intltool_in')
|
2008-06-07 09:54:40 +00:00
|
|
|
obj.source = 'midori.desktop.in'
|
|
|
|
obj.inst_var = 'DATADIR'
|
|
|
|
obj.inst_dir = 'applications'
|
|
|
|
obj.flags = '-d'
|
2008-05-31 09:55:54 +00:00
|
|
|
else:
|
|
|
|
# FIXME: process desktop.in without intltool
|
|
|
|
Params.pprint ('BLUE', "File midori.desktop not generated")
|
|
|
|
if bld.env ()['INTLTOOL']:
|
|
|
|
install_files ('DATADIR', 'applications', 'midori.desktop')
|
2008-05-31 12:20:36 +00:00
|
|
|
|
|
|
|
def shutdown ():
|
2008-06-01 13:16:40 +00:00
|
|
|
if Params.g_commands['install'] or Params.g_commands['uninstall']:
|
|
|
|
dir = Common.path_install ('DATADIR', 'icons/hicolor')
|
|
|
|
icon_cache_updated = False
|
|
|
|
if not Params.g_options.destdir:
|
|
|
|
# update the pixmap cache directory
|
|
|
|
try:
|
2008-07-27 05:39:39 +00:00
|
|
|
uic = subprocess.Popen (['gtk-update-icon-cache', '-q', '-f', '-t', dir],
|
|
|
|
stderr=subprocess.PIPE)
|
|
|
|
if not uic.wait ():
|
|
|
|
Params.pprint ('YELLOW', "Updated Gtk icon cache.")
|
|
|
|
icon_cache_updated = True
|
2008-06-01 13:16:40 +00:00
|
|
|
except:
|
|
|
|
Params.pprint ('RED', "Failed to update icon cache.")
|
|
|
|
if not icon_cache_updated:
|
|
|
|
Params.pprint ('YELLOW', "Icon cache not updated. After install, run this:")
|
|
|
|
Params.pprint ('YELLOW', "gtk-update-icon-cache -q -f -t %s" % dir)
|