2008-05-31 09:55:54 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# WAF build script for midori
|
2008-10-11 05:27:52 +00:00
|
|
|
# This file is licensed under the terms of the expat license, see the file EXPAT.
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
import Build
|
|
|
|
import Options
|
|
|
|
import Utils
|
2008-05-31 12:20:36 +00:00
|
|
|
import pproc as subprocess
|
2008-10-25 22:54:57 +00:00
|
|
|
import sys
|
2008-10-03 20:14:14 +00:00
|
|
|
import os
|
2008-11-14 01:46:23 +00:00
|
|
|
import UnitTest
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2008-11-30 00:22:03 +00:00
|
|
|
major = 0
|
|
|
|
minor = 1
|
2008-11-30 00:48:04 +00:00
|
|
|
micro = 1
|
2008-11-30 00:22:03 +00:00
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
APPNAME = 'midori'
|
2008-11-30 00:22:03 +00:00
|
|
|
VERSION = str (major) + '.' + str (minor) + '.' + str (micro)
|
2008-05-31 09:55:54 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
git = subprocess.Popen (['git', 'rev-parse', '--short', 'HEAD'],
|
2008-10-21 21:07:07 +00:00
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
2008-05-31 09:55:54 +00:00
|
|
|
if not git.wait ():
|
|
|
|
VERSION = (VERSION + '-' + git.stdout.read ()).strip ()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
srcdir = '.'
|
|
|
|
blddir = '_build_'
|
|
|
|
|
2008-12-07 00:56:42 +00:00
|
|
|
def option_enabled (option):
|
2009-01-04 20:38:06 +00:00
|
|
|
if eval ('Options.options.enable_' + option):
|
2008-12-07 00:56:42 +00:00
|
|
|
return True
|
2009-01-04 20:38:06 +00:00
|
|
|
if eval ('Options.options.disable_' + option):
|
2008-12-07 00:56:42 +00:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
def configure (conf):
|
2008-12-07 00:56:42 +00:00
|
|
|
def option_checkfatal (option, desc):
|
2009-01-04 20:38:06 +00:00
|
|
|
if eval ('Options.options.enable_' + option):
|
|
|
|
Utils.pprint ('RED', desc + ' not available')
|
2008-12-07 00:56:42 +00:00
|
|
|
sys.exit (1)
|
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
def dirname_default (dirname, default):
|
|
|
|
if eval ('Options.options.' + dirname) == '':
|
|
|
|
dirvalue = default
|
|
|
|
else:
|
|
|
|
dirvalue = eval ('Options.options.' + dirname)
|
|
|
|
conf.define (dirname, dirvalue)
|
|
|
|
return dirvalue
|
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
conf.check_tool ('compiler_cc')
|
2008-06-14 00:23:33 +00:00
|
|
|
|
2008-12-07 03:00:00 +00:00
|
|
|
if option_enabled ('userdocs'):
|
2008-10-03 20:14:14 +00:00
|
|
|
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']:
|
2008-12-07 00:56:42 +00:00
|
|
|
user_docs = 'yes'
|
2008-10-03 20:14:14 +00:00
|
|
|
else:
|
2008-12-07 03:00:00 +00:00
|
|
|
option_checkfatal ('userdocs', 'user documentation')
|
2008-12-07 00:56:42 +00:00
|
|
|
user_docs = 'not available'
|
2008-10-03 20:14:14 +00:00
|
|
|
else:
|
2008-12-07 00:56:42 +00:00
|
|
|
user_docs = 'no'
|
|
|
|
conf.check_message_custom ('generate', 'user documentation', user_docs)
|
2008-10-03 20:14:14 +00:00
|
|
|
|
2008-12-07 00:56:42 +00:00
|
|
|
if option_enabled ('nls'):
|
2008-05-31 09:55:54 +00:00
|
|
|
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:
|
2008-12-07 00:56:42 +00:00
|
|
|
option_checkfatal ('nls', 'localization')
|
2008-05-31 09:55:54 +00:00
|
|
|
nls = 'not available'
|
|
|
|
else:
|
|
|
|
nls = 'no'
|
|
|
|
conf.check_message_custom ('localization', 'support', nls)
|
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
dirname_default ('LIBDIR', os.path.join (conf.env['PREFIX'], 'lib'))
|
|
|
|
dirname_default ('DATADIR', os.path.join (conf.env['PREFIX'], 'share'))
|
|
|
|
dirname_default ('DOCDIR', os.path.join (conf.env['DATADIR'], 'doc'))
|
2008-10-03 20:14:14 +00:00
|
|
|
|
2008-12-07 03:00:00 +00:00
|
|
|
if option_enabled ('apidocs'):
|
2008-09-07 19:48:04 +00:00
|
|
|
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:
|
2008-12-07 03:00:00 +00:00
|
|
|
option_checkfatal ('apidocs', 'API documentation')
|
2008-09-07 19:48:04 +00:00
|
|
|
api_docs = 'not available'
|
|
|
|
else:
|
|
|
|
api_docs = 'no'
|
|
|
|
conf.check_message_custom ('generate', 'API documentation', api_docs)
|
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
def check_pkg (name, version='', mandatory=True, var=None):
|
|
|
|
if not var:
|
|
|
|
var = name.split ('-')[0].upper ()
|
|
|
|
conf.check_cfg (package=name, uselib_store=var, args='--cflags --libs',
|
|
|
|
atleast_version=version, mandatory=mandatory)
|
|
|
|
|
2008-12-07 00:56:42 +00:00
|
|
|
if option_enabled ('unique'):
|
2009-01-04 20:38:06 +00:00
|
|
|
check_pkg ('unique-1.0', '0.9', False)
|
2008-08-26 22:44:21 +00:00
|
|
|
single_instance = ['not available','yes'][conf.env['HAVE_UNIQUE'] == 1]
|
|
|
|
else:
|
2008-12-07 00:56:42 +00:00
|
|
|
option_checkfatal ('unique', 'single instance')
|
2008-08-26 22:44:21 +00:00
|
|
|
single_instance = 'no'
|
2008-08-22 01:59:07 +00:00
|
|
|
conf.check_message_custom ('single instance', 'support', single_instance)
|
|
|
|
|
2008-12-07 00:56:42 +00:00
|
|
|
if option_enabled ('libsoup'):
|
2009-01-04 20:38:06 +00:00
|
|
|
check_pkg ('libsoup-2.4', '2.23.0', False)
|
|
|
|
check_pkg ('libsoup-2.4', '2.23.1', False, var='LIBSOUP_2_23_1')
|
|
|
|
check_pkg ('libsoup-2.4', '2.25.2', False, var='LIBSOUP_2_25_2')
|
2008-10-19 20:18:07 +00:00
|
|
|
libsoup = ['not available','yes'][conf.env['HAVE_LIBSOUP'] == 1]
|
|
|
|
else:
|
2008-12-07 00:56:42 +00:00
|
|
|
option_checkfatal ('libsoup', 'libsoup')
|
2008-10-19 20:18:07 +00:00
|
|
|
libsoup = 'no'
|
|
|
|
conf.check_message_custom ('libsoup', 'support', libsoup)
|
|
|
|
|
2008-12-07 00:56:42 +00:00
|
|
|
if option_enabled ('sqlite'):
|
2009-01-04 20:38:06 +00:00
|
|
|
check_pkg ('sqlite3', '3.0', False, var='SQLITE')
|
2008-10-13 15:50:07 +00:00
|
|
|
sqlite = ['not available','yes'][conf.env['HAVE_SQLITE'] == 1]
|
|
|
|
else:
|
2008-12-07 00:56:42 +00:00
|
|
|
option_checkfatal ('sqlite', 'history database')
|
2008-10-13 15:50:07 +00:00
|
|
|
sqlite = 'no'
|
|
|
|
conf.check_message_custom ('history database', 'support', sqlite)
|
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
check_pkg ('gmodule-2.0', '2.8.0', False)
|
|
|
|
check_pkg ('gthread-2.0', '2.8.0', False)
|
|
|
|
check_pkg ('gio-2.0', '2.16.0', False)
|
|
|
|
check_pkg ('gtk+-2.0', '2.10.0', var='GTK')
|
|
|
|
check_pkg ('webkit-1.0', '0.1')
|
|
|
|
check_pkg ('libxml-2.0', '2.6')
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
conf.check (header_name='unistd.h')
|
2008-10-25 22:54:57 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
conf.define ('HAVE_OSX', 1)
|
2008-06-01 13:16:40 +00:00
|
|
|
|
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)
|
|
|
|
|
2008-11-30 00:22:03 +00:00
|
|
|
conf.define ('MIDORI_MAJOR_VERSION', major)
|
|
|
|
conf.define ('MIDORI_MINOR_VERSION', minor)
|
|
|
|
conf.define ('MIDORI_MICRO_VERSION', micro)
|
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
conf.write_config_header ('config.h')
|
2008-06-19 22:28:33 +00:00
|
|
|
conf.env.append_value ('CCFLAGS', '-DHAVE_CONFIG_H')
|
2009-01-04 20:38:06 +00:00
|
|
|
debug_level = Options.options.debug_level
|
|
|
|
if debug_level != '':
|
|
|
|
compiler = conf.env['CC_NAME']
|
|
|
|
if compiler == 'gcc':
|
|
|
|
if debug_level == 'debug':
|
|
|
|
conf.env.append_value ('CCFLAGS', '-Wall -O0 -g')
|
|
|
|
else:
|
|
|
|
conf.env.append_value ('CCFLAGS', '-O2')
|
|
|
|
else:
|
|
|
|
Utils.pprint ('RED', 'No debugging level support for ' + compiler)
|
|
|
|
sys.exit (1)
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2008-11-10 21:18:35 +00:00
|
|
|
print
|
|
|
|
if single_instance == 'not available':
|
|
|
|
print "Single instance support is unavailable in this build."
|
|
|
|
print " Install libUnique and reconfigure to enable it."
|
|
|
|
print
|
|
|
|
if libsoup == 'not available':
|
|
|
|
print "Icons, view source and Save as are unavailable in this build."
|
|
|
|
print " Install libSoup and reconfigure to enable these features."
|
|
|
|
print
|
|
|
|
if sqlite == 'not available':
|
|
|
|
print "History storage on disk is unavailable in this build."
|
|
|
|
print " Install sqlite3 and reconfigure to enable it."
|
|
|
|
print
|
2008-12-07 03:00:00 +00:00
|
|
|
if user_docs == 'not available':
|
|
|
|
print "User documentation is unavailable in this build."
|
|
|
|
print " Install docutils and reconfigure to enable it."
|
|
|
|
print
|
|
|
|
if api_docs == 'not available':
|
|
|
|
print "API documentation is unavailable in this build."
|
|
|
|
print " Install gtk-doc and reconfigure to enable it."
|
|
|
|
print
|
2008-11-10 21:18:35 +00:00
|
|
|
|
2008-05-31 12:20:36 +00:00
|
|
|
def set_options (opt):
|
2008-12-07 03:00:00 +00:00
|
|
|
def add_enable_option (option, desc, group=None, disable=False):
|
|
|
|
if group == None:
|
|
|
|
group = opt
|
2008-12-07 00:56:42 +00:00
|
|
|
option_ = option.replace ('-', '_')
|
2008-12-07 03:00:00 +00:00
|
|
|
group.add_option ('--enable-' + option, action='store_true',
|
2008-12-07 00:56:42 +00:00
|
|
|
default=False, help='Enable ' + desc, dest='enable_' + option_)
|
2008-12-07 03:00:00 +00:00
|
|
|
group.add_option ('--disable-' + option, action='store_true',
|
|
|
|
default=disable, help='Disable ' + desc, dest='disable_' + option_)
|
2008-12-07 00:56:42 +00:00
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
opt.tool_options ('compiler_cc')
|
2009-01-04 20:38:06 +00:00
|
|
|
opt.get_option_group ('--check-c-compiler').add_option('-d', '--debug-level',
|
|
|
|
action = 'store', default = '',
|
|
|
|
help = 'Specify the debugging level. [\'debug\', \'release\']',
|
|
|
|
choices = ['', 'debug', 'release'], dest = 'debug_level')
|
|
|
|
opt.tool_options ('gnu_dirs')
|
|
|
|
opt.parser.remove_option ('--oldincludedir')
|
|
|
|
opt.parser.remove_option ('--htmldir')
|
|
|
|
opt.parser.remove_option ('--dvidir')
|
|
|
|
opt.parser.remove_option ('--pdfdir')
|
|
|
|
opt.parser.remove_option ('--psdir')
|
2008-05-31 09:55:54 +00:00
|
|
|
opt.tool_options ('intltool')
|
2008-12-12 09:10:10 +00:00
|
|
|
opt.add_option ('--run', action='store_true', default=False,
|
|
|
|
help='Run application after building it', dest='run')
|
2008-12-07 00:56:42 +00:00
|
|
|
|
2008-12-07 03:00:00 +00:00
|
|
|
group = opt.add_option_group ('Localization and documentation', '')
|
|
|
|
add_enable_option ('nls', 'native language support', group)
|
|
|
|
group.add_option ('--update-po', action='store_true', default=False,
|
|
|
|
help='Update localization files', dest='update_po')
|
|
|
|
add_enable_option ('docs', 'informational text files', group)
|
|
|
|
add_enable_option ('userdocs', 'user documentation', group)
|
|
|
|
add_enable_option ('apidocs', 'API documentation', group, disable=True)
|
2008-11-10 00:08:38 +00:00
|
|
|
|
2008-12-07 03:00:00 +00:00
|
|
|
group = opt.add_option_group ('Optional features', '')
|
|
|
|
add_enable_option ('unique', 'single instance support', group)
|
2009-01-04 20:38:06 +00:00
|
|
|
add_enable_option ('libsoup', 'icon and view source support', group)
|
2008-12-07 03:00:00 +00:00
|
|
|
add_enable_option ('sqlite', 'history database support', group)
|
|
|
|
add_enable_option ('addons', 'building of extensions', group)
|
2008-11-18 01:07:53 +00:00
|
|
|
|
2008-05-31 09:55:54 +00:00
|
|
|
def build (bld):
|
2008-10-16 01:51:39 +00:00
|
|
|
def mkdir (path):
|
|
|
|
if not os.access (path, os.F_OK):
|
|
|
|
os.mkdir (path)
|
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
def install_files (folder, destination, source):
|
2008-10-16 01:51:39 +00:00
|
|
|
try:
|
2009-01-04 20:38:06 +00:00
|
|
|
bld.install_files (folder, destination, source)
|
2008-10-16 01:51:39 +00:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2008-07-27 05:39:39 +00:00
|
|
|
bld.add_subdirs ('katze midori icons')
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2008-12-07 03:00:00 +00:00
|
|
|
if option_enabled ('addons'):
|
2008-11-18 01:07:53 +00:00
|
|
|
bld.add_subdirs ('extensions')
|
|
|
|
|
2008-12-07 00:56:42 +00:00
|
|
|
if option_enabled ('docs'):
|
|
|
|
install_files ('DOCDIR', '/' + APPNAME + '/', \
|
|
|
|
'AUTHORS ChangeLog COPYING EXPAT README TRANSLATE')
|
2008-10-03 20:14:14 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
if bld.env['RST2HTML']:
|
2008-10-03 20:14:14 +00:00
|
|
|
# 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')
|
2009-01-04 20:38:06 +00:00
|
|
|
command = bld.env['RST2HTML'] + ' -stg ' + \
|
|
|
|
'--stylesheet=../../../docs/user/midori.css ' + \
|
|
|
|
'../../../docs/user/midori.txt ' + 'midori.html'
|
|
|
|
Utils.exec_command (command)
|
2008-10-03 20:14:14 +00:00
|
|
|
os.chdir ('../../..')
|
2009-01-04 20:38:06 +00:00
|
|
|
install_files ('DOCDIR', '/midori/user/', blddir + '/docs/user/midori.html')
|
2008-10-03 20:14:14 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
if bld.env['INTLTOOL']:
|
|
|
|
obj = bld.new_task_gen ('intltool_po')
|
2008-11-10 00:08:38 +00:00
|
|
|
obj.podir = 'po'
|
|
|
|
obj.appname = APPNAME
|
2008-05-31 09:55:54 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
if bld.env['GTKDOC_SCAN'] and Options.commands['build']:
|
2008-09-07 19:48:04 +00:00
|
|
|
bld.add_subdirs ('docs/api')
|
2009-01-04 20:38:06 +00:00
|
|
|
install_files ('DOCDIR', '/midori/api/', blddir + '/docs/api/*')
|
2008-09-07 19:48:04 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
if bld.env['INTLTOOL']:
|
|
|
|
obj = bld.new_task_gen ('intltool_in')
|
2008-10-25 22:54:57 +00:00
|
|
|
obj.source = APPNAME + '.desktop.in'
|
2009-01-04 20:38:06 +00:00
|
|
|
obj.install_path = '${DATADIR}/applications'
|
2008-06-07 09:54:40 +00:00
|
|
|
obj.flags = '-d'
|
2009-01-04 20:38:06 +00:00
|
|
|
install_files ('DATADIR', 'applications', APPNAME + '.desktop')
|
2008-12-07 04:10:08 +00:00
|
|
|
else:
|
2009-01-04 20:38:06 +00:00
|
|
|
folder = os.path.dirname (bld.env['waf_config_files'][0])
|
2008-12-07 04:10:08 +00:00
|
|
|
desktop = APPNAME + '.desktop'
|
|
|
|
pre = open (desktop + '.in')
|
|
|
|
after = open (folder + '/' + desktop, 'w')
|
|
|
|
try:
|
2009-01-05 21:08:52 +00:00
|
|
|
try:
|
|
|
|
for line in pre:
|
|
|
|
if line != '':
|
|
|
|
if line[0] == '_':
|
|
|
|
after.write (line[1:])
|
|
|
|
else:
|
|
|
|
after.write (line)
|
|
|
|
after.close ()
|
|
|
|
Utils.pprint ('BLUE', desktop + '.in -> ' + desktop)
|
|
|
|
install_files ('DATADIR', 'applications', folder + '/' + desktop)
|
|
|
|
except:
|
|
|
|
Utils.pprint ('BLUE', 'File ' + desktop + ' not generated')
|
2008-12-07 04:10:08 +00:00
|
|
|
finally:
|
|
|
|
pre.close ()
|
2008-05-31 12:20:36 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
if bld.env['RSVG_CONVERT']:
|
2008-10-16 01:51:39 +00:00
|
|
|
mkdir (blddir + '/data')
|
2009-01-04 20:38:06 +00:00
|
|
|
command = bld.env['RSVG_CONVERT'] + \
|
|
|
|
' -o ' + blddir + '/data/logo-shade.png ' + \
|
|
|
|
srcdir + '/data/logo-shade.svg'
|
|
|
|
if not Utils.exec_command (command):
|
|
|
|
install_files ('DATADIR', APPNAME, blddir + '/data/logo-shade.png')
|
2008-10-16 01:51:39 +00:00
|
|
|
else:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('BLUE', "logo-shade could not be rasterized.")
|
2008-10-16 01:51:39 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
if Options.commands['check']:
|
2008-11-14 01:46:23 +00:00
|
|
|
bld.add_subdirs ('tests')
|
|
|
|
|
2008-05-31 12:20:36 +00:00
|
|
|
def shutdown ():
|
2009-01-04 20:38:06 +00:00
|
|
|
if Options.commands['install'] or Options.commands['uninstall']:
|
|
|
|
dir = Build.bld.get_install_path ('${DATADIR}/icons/hicolor')
|
2008-06-01 13:16:40 +00:00
|
|
|
icon_cache_updated = False
|
2009-01-04 20:38:06 +00:00
|
|
|
if not Options.options.destdir:
|
2008-06-01 13:16:40 +00:00
|
|
|
# update the pixmap cache directory
|
|
|
|
try:
|
2009-01-04 20:38:06 +00:00
|
|
|
command = 'gtk-update-icon-cache -q -f -t %s' % dir
|
|
|
|
if not Utils.exec_command (command):
|
|
|
|
Utils.pprint ('YELLOW', "Updated Gtk icon cache.")
|
2008-07-27 05:39:39 +00:00
|
|
|
icon_cache_updated = True
|
2008-06-01 13:16:40 +00:00
|
|
|
except:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('RED', "Failed to update icon cache.")
|
2008-06-01 13:16:40 +00:00
|
|
|
if not icon_cache_updated:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('YELLOW', "Icon cache not updated. "
|
2008-12-06 04:43:24 +00:00
|
|
|
"After install, run this:")
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('YELLOW', "gtk-update-icon-cache -q -f -t %s" % dir)
|
2008-11-10 00:08:38 +00:00
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
elif Options.commands['check']:
|
2008-11-14 01:46:23 +00:00
|
|
|
test = UnitTest.unit_test ()
|
|
|
|
test.change_to_testfile_dir = True
|
|
|
|
test.want_to_see_test_output = True
|
|
|
|
test.want_to_see_test_error = True
|
|
|
|
test.run ()
|
|
|
|
test.print_results ()
|
|
|
|
|
2009-01-04 20:38:06 +00:00
|
|
|
elif Options.options.update_po:
|
2008-11-10 00:08:38 +00:00
|
|
|
os.chdir('./po')
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
size_old = os.stat (APPNAME + '.pot').st_size
|
|
|
|
except:
|
|
|
|
size_old = 0
|
2008-12-06 04:34:33 +00:00
|
|
|
subprocess.call (['intltool-update', '-p', '-g', APPNAME])
|
2008-11-10 00:08:38 +00:00
|
|
|
size_new = os.stat (APPNAME + '.pot').st_size
|
|
|
|
if size_new <> size_old:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('YELLOW', "Updated po template.")
|
2008-11-10 00:08:38 +00:00
|
|
|
try:
|
2009-01-04 20:38:06 +00:00
|
|
|
command = 'intltool-update -r -g %s' % APPNAME
|
|
|
|
Utils.exec_command (command)
|
|
|
|
Utils.pprint ('YELLOW', "Updated translations.")
|
2008-11-10 00:08:38 +00:00
|
|
|
except:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('RED', "Failed to update translations.")
|
2008-11-10 00:08:38 +00:00
|
|
|
except:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('RED', "Failed to generate po template.")
|
|
|
|
Utils.pprint ('RED', "Make sure intltool is installed.")
|
2008-11-10 00:08:38 +00:00
|
|
|
os.chdir ('..')
|
2009-01-04 20:38:06 +00:00
|
|
|
elif Options.options.run:
|
|
|
|
folder = os.path.dirname (Build.bld.env['waf_config_files'][0])
|
2008-12-12 09:10:10 +00:00
|
|
|
try:
|
2009-01-04 20:38:06 +00:00
|
|
|
command = folder + os.sep + APPNAME + os.sep + APPNAME
|
|
|
|
Utils.exec_command (command)
|
2008-12-12 09:10:10 +00:00
|
|
|
except:
|
2009-01-04 20:38:06 +00:00
|
|
|
Utils.pprint ('RED', "Failed to run application.")
|