mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
bb8723dd36
* First commit! * Import to git * Droping down CMake requirement * Corrected installation of libraries * Adding travis build * Updated cmake macros * Fixed find package * Updated travis hook * Updated travis hook * Patch to support Lua 5.3. * Fix Lua header include directives in tolua++.h Use angle bracket rather than double quotes when including Lua headers in the tolua++ header. This fixes a problem on systems that default to a Lua version newer than 5.1 and install the tolua++ header to the same directory as newer Lua headers. As there are (usually) no Lua headers in the same directory when building tolua++ itself, the preprocessor will look to the include directories passed to the compiler, one of which would be the Lua 5.1 include directory, and tolua++ will build with those (correct) headers. Then the tolua++ header is usually installed in the default include directory, alongside the newer Lua headers, which you wouldn't expect to cause any trouble. But it does cause trouble when trying to build other programs that include the tolua++ header, because now the preprocessor does find Lua headers in the same directory as the tolua++ header, which are the newer (incorrect) headers. Now the program will either fail to compile, because it doesn't support the newer headers, or fail to link with the tolua++ shared object because they were compiled against different Lua headers. Using angle brackets instead of double quotes in the include directives will fix the problem, because then the preprocessor will look to the include directories passed to the compiler first. See http://www.cegui.org.uk/forum/viewtopic.php?f=10&t=7195 * Remove email notifications. * Update travis build. * Build shared and static libs. * Patch toluapp to support Lua 5.3. With this change, support for Lua 5.1 is dropped. This resolve #116. * Add some comments to clarify the toluapp handling. * Add minor sonar fix.
183 lines
4.8 KiB
Python
183 lines
4.8 KiB
Python
import sys;
|
|
import os
|
|
|
|
tools = ['default']
|
|
if os.name == 'nt':
|
|
tools = ['mingw']
|
|
|
|
env = Environment(tools = tools)
|
|
|
|
options_file = None
|
|
if sys.platform == 'linux2':
|
|
options_file = "linux"
|
|
|
|
elif 'msvc' in env['TOOLS']:
|
|
options_file = "msvc"
|
|
else:
|
|
options_file = "posix"
|
|
|
|
opts = Options(["config_"+options_file+".py", "custom.py", "custom_"+options_file+".py"], ARGUMENTS)
|
|
opts.Add('CC', 'The C compiler.')
|
|
opts.Add('CXX', 'The C++ compiler (for the tests)')
|
|
opts.Add('CCFLAGS', 'Flags for the compiler.', ['-O2', '-Wall'])
|
|
opts.Add('LINK', 'The linker.')
|
|
opts.Add('LINKFLAGS', 'Linker flags.', [])
|
|
opts.Add('no_cygwin', 'Use -mno-cygwin to build using the mingw compiler on cygwin', 0)
|
|
opts.Add('LIBS', 'libraries', [])
|
|
opts.Add('LIBPATH', 'library path', [])
|
|
|
|
opts.Add('tolua_bin', 'the resulting binary', 'tolua++')
|
|
opts.Add('tolua_lib', 'the resulting library', 'tolua++')
|
|
opts.Add('TOLUAPP', 'the name of the tolua++ binary (to use with built_dev=1)', 'tolua++')
|
|
|
|
opts.Add('prefix', 'The installation prefix')
|
|
opts.Add('build_dev', 'Build for development (uses tolua to rebuild toluabind.c with the embeded scripts', 0)
|
|
opts.Add('build_failsafe', "Build using 'factory default' toluabind file (in case build_dev fails)", 0)
|
|
opts.Add('ENV', 'The environment variables')
|
|
opts.Add('shared', 'Build a shared object', False)
|
|
opts.Update(env)
|
|
Help(opts.GenerateHelpText(env))
|
|
|
|
def save_config(target, source, env):
|
|
opts.Save('custom.py', env)
|
|
|
|
cust = env.Command('custom.py', [], save_config)
|
|
env.Alias('configure', [cust])
|
|
|
|
env['TOLUAPP_BOOTSTRAP'] = env['tolua_bin']+"_bootstrap"+env['PROGSUFFIX']
|
|
|
|
env['build_dev'] = int(env['build_dev'])
|
|
|
|
## detecting the install directory on win32
|
|
if 'msvc' in env['TOOLS'] and not (env.has_key('prefix') or env['prefix']):
|
|
|
|
if env['MSVS'].has_key('PLATFORMSDKDIR'):
|
|
env['prefix'] = env['MSVS']['PLATFORMSDKDIR']
|
|
|
|
|
|
SConscriptChdir(0)
|
|
|
|
############ helper builders
|
|
def pkg_scan_dep(self, target, source):
|
|
|
|
import re
|
|
|
|
## TODO: detectar si el archivo existe antes de abrirlo asi nomas
|
|
pkg = open(source, "rt")
|
|
|
|
for linea in pkg.xreadlines():
|
|
dep = re.search("^[\t\w]*\$[cphl]file\s*\"([^\"]+)\"", linea)
|
|
if dep:
|
|
self.Depends(target, '#' + dep.groups()[0]);
|
|
|
|
if dep.groups()[0][-4:] == '.pkg':
|
|
# recursividad
|
|
self.pkg_scan_dep(target, dep.groups()[0])
|
|
|
|
|
|
def make_tolua_code(self, target, source, pkgname = None, bootstrap = False, use_own = False, use_typeid=None):
|
|
|
|
ptarget = Dir('.').path + '/' + target
|
|
psource = Dir('.').path + '/' + source
|
|
header = target[:-2] + '.h'
|
|
pheader = Dir('.').path + '/' + header
|
|
|
|
print("Generating ", target, " from ", source)
|
|
|
|
tolua = ""
|
|
if bootstrap:
|
|
if os.name == 'nt':
|
|
tolua = 'bin\\'+self['TOLUAPP_BOOTSTRAP']
|
|
else:
|
|
tolua = 'bin/'+self['TOLUAPP_BOOTSTRAP']
|
|
print("********* tolua is ", tolua)
|
|
else:
|
|
if use_own:
|
|
if 'msvc' in self['TOOLS']:
|
|
tolua = 'bin\\$tolua_bin'
|
|
else:
|
|
tolua = 'bin/$tolua_bin'
|
|
else:
|
|
tolua = "$TOLUAPP"
|
|
|
|
if pkgname:
|
|
pkgname = ' -n '+pkgname
|
|
else:
|
|
pkgname = ''
|
|
|
|
if use_typeid:
|
|
tolua = tolua+' -t'
|
|
|
|
comando = tolua + ' -C -H ' + pheader + ' -o ' + ptarget + pkgname + ' ' + psource
|
|
command = self.Command(target, source, comando)
|
|
|
|
self.SideEffect(header, target)
|
|
self.Depends(target, source)
|
|
|
|
self.pkg_scan_dep(target, psource)
|
|
|
|
if bootstrap:
|
|
self.Depends(target, "#/bin/$TOLUAPP_BOOTSTRAP")
|
|
if use_own:
|
|
self.Depends(target, "#/bin/$tolua_bin")
|
|
|
|
return command
|
|
|
|
|
|
env.__class__.LuaBinding = make_tolua_code;
|
|
env.__class__.pkg_scan_dep = pkg_scan_dep;
|
|
|
|
def print_install_error(target, source, env):
|
|
|
|
msg = """Error: no install prefix was specified, or detected.
|
|
|
|
you can use the 'prefix' option on command line to specify one. Examples:
|
|
|
|
scons prefix=/usr/local install
|
|
|
|
or on Windows:
|
|
|
|
scons "prefix=c:\\program files\\visual basic" install
|
|
|
|
Files will be installed on <prefix>/bin, <prefix>/lib and <prefix>/include
|
|
"""
|
|
import SCons.Errors
|
|
raise SCons.Errors.UserError(msg)
|
|
|
|
########### end of helper builders
|
|
|
|
env['CPPPATH'] = '#/include'
|
|
env['LIBPATH'] = ['#/lib'] + env['LIBPATH']
|
|
|
|
if env['no_cygwin']:
|
|
|
|
env['CCFLAGS'] += ['-mno-cygwin']
|
|
env['LINKFLAGS'] += ['-mno-cygwin']
|
|
|
|
import string
|
|
|
|
Export('env')
|
|
|
|
SConscript('src/lib/SCsub')
|
|
SConscript('src/bin/SCsub')
|
|
#SConscript('src/lib/SCsub')
|
|
SConscript('src/tests/SCsub')
|
|
|
|
env.Alias('all', [env.bin_target, env.lib_target])
|
|
env.Alias('test', env.test_targets)
|
|
|
|
Default('all')
|
|
|
|
if env['prefix']:
|
|
env.Install(env['prefix']+'/bin', env.bin_target)
|
|
env.Install(env['prefix']+'/lib', env.lib_target)
|
|
env.Install(env['prefix']+'/include', '#include/tolua++.h')
|
|
|
|
env.Alias('install', [env['prefix']+'/bin', env['prefix']+'/include', env['prefix']+'/lib'])
|
|
else:
|
|
env.Command('install', [], print_install_error)
|
|
env.Depends('install', 'all')
|
|
|
|
env.Command('deb', [], 'dpkg-buildpackage -I.svn -Icustom.py -Itoluabind_dev.c -Itoluabind_dev.h -Itoluabind_default.o -Icustom.lua -I.sconsign', ENV=os.environ)
|
|
|