2008-09-24 17:39:15 +00:00
|
|
|
import os
|
2008-12-09 21:46:32 +00:00
|
|
|
import platform
|
2008-09-24 17:39:15 +00:00
|
|
|
|
|
|
|
# taken from scons wiki
|
|
|
|
def CheckPKGConfig(context, version):
|
2008-10-05 18:49:55 +00:00
|
|
|
context.Message( 'Checking for pkg-config version > %s... ' % version)
|
|
|
|
ret = context.TryAction('pkg-config --atleast-pkgconfig-version=%s' % version)[0]
|
|
|
|
context.Result( ret )
|
|
|
|
return ret
|
|
|
|
|
2008-12-09 23:47:18 +00:00
|
|
|
# TODO: We should use the scons one instead
|
2008-12-09 21:46:32 +00:00
|
|
|
def CheckLib(context, name):
|
|
|
|
context.Message( 'Looking for lib %s... ' % name )
|
|
|
|
lastLIBS = context.env['LIBS']
|
2008-12-09 23:47:18 +00:00
|
|
|
context.env.Append(LIBS = [name])
|
2008-12-09 21:46:32 +00:00
|
|
|
ret = context.TryLink("""
|
|
|
|
int main(int argc, char **argv) {
|
2008-12-09 23:47:18 +00:00
|
|
|
return 0;
|
2010-07-22 07:55:35 +00:00
|
|
|
}
|
2010-07-29 13:29:15 +00:00
|
|
|
\n""", '.cpp')
|
2008-12-09 21:46:32 +00:00
|
|
|
if not ret:
|
|
|
|
context.env.Replace(LIBS = lastLIBS)
|
2008-12-09 23:47:18 +00:00
|
|
|
|
2008-12-09 21:46:32 +00:00
|
|
|
return ret
|
|
|
|
|
|
|
|
def ConfigPKG(context, name):
|
|
|
|
context.Message( '\nUsing pkg-config for %s... ' % name )
|
2008-10-05 18:49:55 +00:00
|
|
|
ret = context.TryAction('pkg-config --exists \'%s\'' % name)[0]
|
2008-12-06 23:32:10 +00:00
|
|
|
context.Result( ret )
|
2008-12-09 18:10:16 +00:00
|
|
|
if ret:
|
|
|
|
context.env.ParseConfig('pkg-config --cflags --libs \'%s\'' % name)
|
2008-12-05 13:46:19 +00:00
|
|
|
return int(ret)
|
2010-08-01 16:30:22 +00:00
|
|
|
|
2008-12-09 21:46:32 +00:00
|
|
|
def CheckPKG(context, name):
|
|
|
|
context.Message( 'Checking for %s... ' % name )
|
2009-03-07 22:12:01 +00:00
|
|
|
if platform.system().lower() == 'windows':
|
2010-08-01 16:30:22 +00:00
|
|
|
return 0
|
2008-12-09 21:46:32 +00:00
|
|
|
ret = 1
|
2010-06-26 19:17:43 +00:00
|
|
|
if not ConfigPKG(context, name.lower()):
|
2010-08-01 16:30:22 +00:00
|
|
|
ret = CheckLib(context, name)
|
2008-12-09 21:46:32 +00:00
|
|
|
|
|
|
|
context.Result(ret)
|
|
|
|
return int(ret)
|
|
|
|
|
2008-09-24 17:39:15 +00:00
|
|
|
def CheckSDL(context, version):
|
2010-06-09 19:41:17 +00:00
|
|
|
context.Message( 'Checking for SDL lib version > %s... ' % version)
|
2009-03-07 22:12:01 +00:00
|
|
|
if platform.system().lower() == 'windows':
|
|
|
|
return 1
|
2008-10-05 18:49:55 +00:00
|
|
|
sdl_config = context.env.WhereIs('sdl-config')
|
|
|
|
if sdl_config == None:
|
|
|
|
ret = 0
|
|
|
|
else:
|
|
|
|
found_ver = os.popen('sdl-config --version').read().strip()
|
|
|
|
required = [int(n) for n in version.split(".")]
|
2010-08-01 16:30:22 +00:00
|
|
|
found = [int(n) for n in found_ver.split(".")]
|
2008-10-05 18:49:55 +00:00
|
|
|
ret = (found >= required)
|
2010-08-01 16:30:22 +00:00
|
|
|
|
2008-12-09 18:10:16 +00:00
|
|
|
context.Result(ret)
|
|
|
|
if ret:
|
|
|
|
context.env.ParseConfig('sdl-config --cflags --libs')
|
2010-06-09 19:41:17 +00:00
|
|
|
ret = CheckLib(context, 'SDL')
|
2008-12-05 13:46:19 +00:00
|
|
|
return int(ret)
|
2010-08-01 16:30:22 +00:00
|
|
|
|
2009-03-03 20:14:39 +00:00
|
|
|
def CheckPortaudio(context, version):
|
2009-03-06 14:48:39 +00:00
|
|
|
found = 0
|
|
|
|
if CheckPKG(context, 'portaudio'):
|
|
|
|
context.Message( 'Checking for lib portaudio version > %s... ' % version)
|
2010-08-01 16:30:22 +00:00
|
|
|
found = context.TryRun("""
|
2009-03-03 20:14:39 +00:00
|
|
|
#include <portaudio.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
printf("%d", Pa_GetVersion());
|
|
|
|
return 0;
|
|
|
|
}
|
2010-07-29 13:29:15 +00:00
|
|
|
\n""", '.cpp')[1]
|
2009-03-03 20:14:39 +00:00
|
|
|
|
2009-03-03 20:28:51 +00:00
|
|
|
if found:
|
|
|
|
ret = (version <= found)
|
|
|
|
else:
|
|
|
|
ret = 0
|
2009-03-03 20:14:39 +00:00
|
|
|
|
|
|
|
context.Result(ret)
|
|
|
|
return int(ret)
|
2008-10-05 18:49:55 +00:00
|
|
|
|
2010-08-01 16:30:22 +00:00
|
|
|
def GenerateRevFile(flavour, template, output):
|
2008-10-05 18:49:55 +00:00
|
|
|
try:
|
2010-08-01 16:30:22 +00:00
|
|
|
svnrev = os.popen('svnversion ' + os.path.dirname(template)).\
|
|
|
|
read().strip().split(':')[0]
|
2008-10-05 18:49:55 +00:00
|
|
|
except:
|
2010-08-01 16:30:22 +00:00
|
|
|
svnrev = ''
|
|
|
|
|
|
|
|
if flavour:
|
|
|
|
svnrev += '-' + flavour
|
|
|
|
|
|
|
|
if output:
|
|
|
|
tmpstr = open(template, 'r').read().\
|
|
|
|
replace("$WCMODS?$WCREV$M:$WCREV$$", svnrev)
|
|
|
|
outfile = open(output, 'w')
|
|
|
|
outfile.write(tmpstr + '\n')
|
|
|
|
outfile.close()
|
|
|
|
|
|
|
|
return svnrev
|