1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
import os
import glob
opts = Options( "my_options.py")
opts.Add("qt_directory", "Path to Qt directory", "not specified")
opts.Add("xmms_config_program", "Path to xmms-config", "not specified")
opts.Add("glib_config_program", "Path to glib-config", "not specified")
opts.Add("libid3tag_include", "Include path for libid3tag", "not specified")
opts.Add("libid3tag_library", "Library path for libid3tag", "not specified")
opts.Add("vorbis_include", "Include path for Ogg Vorbis", "not specified")
opts.Add("vorbis_library", "Library path for Ogg Vorbis", "not specified")
opts.Add("my_cc", "The C Compiler you want to use", "not specified")
opts.Add("my_cxx", "The C++ Compiler you want to use", "not specified")
opts.Add("prefix", "The root installation path", "/usr/local")
opts.Add("add_c_include_dirs", "A comma-separated list of include paths", "not specified")
opts.Add("add_lib_dirs", "A comma-separated list of library paths", "not specified")
opts.Add(BoolOption("maintainer_mode", "Whether you want to use some special ingredients", 0))
env = Environment(
ENV = {
'PATH' : os.environ[ 'PATH' ],
'HOME' : os.environ[ 'HOME' ] # required for distcc
}, options = opts)
env.Replace(CPPPATH = [], LIBS = [], LIBPATH = [], CPPDEFINES = [],
CXXFLAGS = "", CCFLAGS = "")
Help(opts.GenerateHelpText(env))
if env["add_c_include_dirs"] != "not specified":
env["CPPPATH"] += env["add_c_include_dirs"].split(",")
if env["add_lib_dirs"] != "not specified":
env["LIBPATH"] += env["add_lib_dirs"].split(",")
# Tool functions --------------------------------------------------------------
def RunProgramAndGetResult(commandline):
file = os.popen(commandline, "r")
result = file.read().rstrip()
exit_code = file.close()
if exit_code is not None:
raise RuntimeError, "Program exited with non-zero exit code."
return result
def DoWithVariables(variables, prefix, what):
saved_variables = { }
for name in variables.keys():
saved_variables[ name ] = env[ name ][:]
if isinstance(variables[ name ], list):
env[ name ].extend(variables[ name ])
else:
env[ name ].append(variables[ name ])
result = what()
for name in saved_variables.keys():
env[ name ] = saved_variables[ name ]
env[ prefix+name ] = variables[ name ]
return result
def AttemptLinkWithVariables(context, variables, code, extension, prefix):
return DoWithVariables(variables, prefix, lambda: context.TryLink(code, extension))
def SplitIncludePath(istring):
split_string = istring.split()
result = []
for i in split_string:
if i[0:2] == "-I":
i = i[2:]
result.append(i)
return result
def SplitLibPath(lstring):
split_string = lstring.split()
result = []
for i in split_string:
if i[0:2] == "-L":
i = i[2:]
result.append(i)
return result
def SplitLibs(lstring):
split_string = lstring.split()
result = []
for i in split_string:
if i[0:2] == "-l":
i = i[2:]
result.append(i)
return result
# My personal checks ----------------------------------------------------------
def CheckForQtAt(context, qtdir):
context.Message('Checking for Qt at %s... ' % qtdir)
result = AttemptLinkWithVariables(context,
{ "LIBS": "qt-mt", "LIBPATH": qtdir + '/lib', "CPPPATH": qtdir + '/include' },
"""
#include <qapplication.h>
int main(int argc, char **argv) {
QApplication qapp(argc, argv);
return 0;
}
""",".cpp","QT_")
context.Result(result)
return result
def CheckForQt(context):
potential_qt_dirs = [
"/usr/share/qt3", # Debian unstable
"/usr/share/qt",
"/usr",
"/usr/local",
"/usr/lib/qt3" # Suse
"/usr/lib/qt" ]
if os.environ.has_key('QTDIR'):
potential_qt_dirs.insert(0, os.environ[ 'QTDIR' ])
if env[ 'qt_directory' ] != "not specified":
potential_qt_dirs.insert(0, env[ 'qt_directory' ])
for i in potential_qt_dirs:
if CheckForQtAt(context, i):
context.env.Replace(QTDIR = i)
return 1
return 0
def CheckForConfigGetterPackage(context, name):
context.Message('Checking for %s... ' % name)
config_getter = "%s-config" % name
if env[ '%s_config_program' % name ] != "not specified":
config_getter = env[ '%s_config_program' % name ]
uppercase_name = name.upper()
try:
cflags = RunProgramAndGetResult("%s --cflags" % config_getter)
except RuntimeError:
context.Result(("*** ERROR *** %s is not on the path or can't be run as expected.\n"+
"Please make sure %s-dev or %s-devel is installed") % (config_getter, name, name))
return 0
try:
libs = RunProgramAndGetResult("%s --libs" % config_getter)
except RuntimeError:
context.Result(("*** ERROR *** %s is not on the path or can't be run as expected.\n"+
"Please make sure %s-dev or %s-devel is installed") % (config_getter, name, name))
return 0
context.env[ uppercase_name + "_CPPPATH" ] = SplitIncludePath(cflags)
context.env[ uppercase_name + "_LIBPATH" ] = SplitLibPath(libs)
context.env[ uppercase_name + "_LIBS" ] = SplitLibs(libs)
context.Result(1)
return 1
def CheckForSimpleLibrary(name, header, libraries, call = "main();", language = "C++"):
varprefix = name.upper() + "_"
vars = { "CPPPATH" : [], "LIBPATH": [] }
if env[ "%s_include" % name ] != "not specified":
vars[ "CPPPATH" ] = [ env[ "%s_include" % name ] ]
if not DoWithVariables(vars, varprefix, lambda: conf.CheckCHeader(header)):
print "*** ERROR *** The %s header for the %s package does not seem to be available." % (header, name)
print "You may call this build script with %s_include=<your path> as an argument to fix this." % name
print "Please make sure %s-dev or %s-devel is installed" % (name, name)
print "Also check config.log for details on the failure."
return 0
if env[ "%s_library" % name ] != "not specified":
vars[ "LIBPATH" ] = [ env[ "%s_library" % name ] ]
previous_libs = env[ 'LIBS' ]
library = libraries[ 0 ]
vars[ "LIBS" ] = libraries[ 1: ]
if not DoWithVariables(vars, varprefix,
lambda: conf.CheckLibWithHeader(library, header, language, call, False)):
print "*** ERROR *** The %s library does not seem to be available." % name
print "You may call this build script with %s_lib=<your path> as an argument to fix this." % name
print "Please make sure %s-dev or %s-devel is installed" % (name, name)
print "Also check config.log for details on the failure."
return 0
env[ varprefix + "LIBS" ] = libraries
env[ 'LIBS' ] = previous_libs
return 1
def CheckForXmms(context):
return CheckForConfigGetterPackage(context, "xmms")
def CheckForGlib(context):
return CheckForConfigGetterPackage(context, "glib")
# Check subroutines -----------------------------------------------------------
def CheckForLibID3Tag():
return CheckForSimpleLibrary("libid3tag", "id3tag.h", [ "id3tag", "z" ])
def CheckForVorbis():
return CheckForSimpleLibrary("vorbis", "vorbis/vorbisfile.h", [ "vorbisfile", "vorbis", "ogg" ])
# Configure -------------------------------------------------------------------
conf = Configure(env, custom_tests = {
"CheckForQt" : CheckForQt,
"CheckForXmms": CheckForXmms,
"CheckForGlib": CheckForGlib,
})
if not conf.CheckForQt():
Exit(1)
if not conf.CheckForXmms():
Exit(1)
if not conf.CheckForGlib():
Exit(1)
if not CheckForLibID3Tag():
print "*********************************************************"
print "NOTE: madman has switched ID3 libraries, away from id3lib and to libid3tag from Underbit."
print "If you are trying to use id3lib and it doesn't work, this is why."
print "*********************************************************"
Exit(1)
if not CheckForVorbis():
Exit(1)
env = conf.Finish()
# Build! ----------------------------------------------------------------------
Export("env")
current_version = file("current-version", "r").read().strip()
env[ "CPPDEFINES" ].append(("MADMAN_VERSION", current_version))
env.Replace(CXXSUFFIX = ".cpp")
if env[ 'my_cc' ] != "not specified":
env.Replace(CC = env[ 'my_cc' ])
if env[ 'my_cxx' ] != "not specified":
env.Replace(CXX = env[ 'my_cxx' ])
if env["maintainer_mode"]:
print "*** enabling maintainer mode"
madman_sources = []
madman_sources.extend(glob.glob("*/*.h"))
madman_sources.extend(glob.glob("*/*.cpp"))
env.Command("tags", madman_sources, "ctags -R")
env[ "CCFLAGS" ] += "-fmessage-length=0 -g -Wall"
env[ "CXXFLAGS" ] += "-fmessage-length=0 -g -Wall"
env[ "CPPDEFINES" ].append(("MADMAN_DEBUG", "1"))
else:
env[ "CPPDEFINES" ].append(("NDEBUG", "1"))
plugin_list = glob.glob(os.path.join("plugins", "[a-z]*"))
plugin_list = filter(lambda x: x.find("example") == -1, plugin_list)
env.Install("$prefix/lib/madman/plugins", plugin_list)
env.Alias("install", "$prefix/bin")
env.Alias("install", "$prefix/lib/madman/plugins")
SConscript([
"expat/SConscript",
"libapetag/SConscript",
"utility/SConscript",
"database/SConscript",
"httpd/SConscript",
"designer/SConscript",
"ui/SConscript",
"main/SConscript" ])
|