93
|
1 |
<configuration bakefile="/home/dcamara/INRIA/repos/Bake/dceConf.xml" installdir="build" objdir="objdir" relative_directory_root="." sourcedir="source"><metadata filename="/home/dcamara/INRIA/repos/Bake/bakeconf.xml" hash="158489d5210c2e8ac4a695ff47087df1" /><enabled name="ns-3-dev" /><enabled name="ns-3-dce" /><enabled name="ns-3-dce" /><disabled name="click-1.8.0" /><disabled name="openflow-ns3" /><disabled name="gccxml-ns3" /><disabled name="nsc" /><disabled name="pygccxml" /><disabled name="pybindgen" /><modules><module name="click-1.8.0"><source type="archive"><attribute name="module_directory" value="" /><attribute name="url" value="http://read.cs.ucla.edu/click/click-1.8.0.tar.gz" /></source><build type="autotools"><attribute name="configure_arguments" value="--enable-userlevel --disable-linuxmodule --enable-nsclick --enable-wifi" /><attribute name="maintainer" value="no" /><attribute name="v_LD_LIBRARY" value="" /><attribute name="LDFLAGS" value="" /><attribute name="CC" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="CXXFLAGS" value="" /><attribute name="CXX" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="CFLAGS" value="" /><attribute name="objdir" value="yes" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build></module><module name="openflow-ns3"><source type="mercurial"><attribute name="module_directory" value="" /><attribute name="url" value="http://code.nsnam.org/bhurd/openflow" /><attribute name="revision" value="tip" /></source><build type="waf"><attribute name="configure_arguments" value="" /><attribute name="v_LD_LIBRARY" value="" /><attribute name="LDFLAGS" value="" /><attribute name="CC" value="" /><attribute name="build_arguments" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="CXXFLAGS" value="" /><attribute name="CXX" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="CFLAGS" value="" /><attribute name="objdir" value="yes" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build></module><module name="ns-3-dce"><source type="mercurial"><attribute name="module_directory" value="" /><attribute name="url" value="http://code.nsnam.org/furbani/ns-3-dce" /><attribute name="revision" value="tip" /></source><build type="waf"><attribute name="configure_arguments" value="" /><attribute name="v_LD_LIBRARY" value="" /><attribute name="LDFLAGS" value="" /><attribute name="CC" value="" /><attribute name="build_arguments" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="CXXFLAGS" value="" /><attribute name="CXX" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="CFLAGS" value="" /><attribute name="objdir" value="yes" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build></module><module name="gccxml-ns3"><source type="cvs"><attribute name="module_directory" value="" /><attribute name="date" value="2009-09-21" /><attribute name="root" value=":pserver:anoncvs:@www.gccxml.org:/cvsroot/GCC_XML" /><attribute name="module" value="gccxml" /></source><build type="cmake"><attribute name="build_arguments" value="" /><attribute name="v_LD_LIBRARY" value="" /><attribute name="LDFLAGS" value="" /><attribute name="CC" value="" /><attribute name="configure_arguments" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="CXXFLAGS" value="" /><attribute name="CXX" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="CFLAGS" value="" /><attribute name="objdir" value="yes" /><attribute name="cmake_arguments" value="" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build></module><module name="pygccxml"><source type="archive"><attribute name="module_directory" value="" /><attribute name="url" value="http://downloads.sourceforge.net/project/pygccxml/pygccxml/pygccxml-1.0/pygccxml-1.0.0.zip" /></source><build type="python"><attribute name="v_LD_LIBRARY" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="objdir" value="yes" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build><depends_on name="gccxml-ns3" /></module><module name="pybindgen"><source type="bazaar"><attribute name="module_directory" value="" /><attribute name="url" value="https://launchpad.net/pybindgen" /><attribute name="revision" value="revno:795" /></source><build type="waf"><attribute name="configure_arguments" value="" /><attribute name="v_LD_LIBRARY" value="" /><attribute name="LDFLAGS" value="" /><attribute name="CC" value="" /><attribute name="build_arguments" value="--generate-version" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="CXXFLAGS" value="" /><attribute name="CXX" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="CFLAGS" value="" /><attribute name="objdir" value="yes" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build><depends_on name="pygccxml" optional="True" /></module><module name="nsc"><source type="mercurial"><attribute name="module_directory" value="" /><attribute name="url" value="https://secure.wand.net.nz/mercurial/nsc" /><attribute name="revision" value="tip" /></source><build classname="NscModuleBuild" type="inline"><code>class NscModuleBuild(InlineModuleBuild):
|
87
|
2 |
def __init__(self):
|
|
3 |
InlineModuleBuild.__init__(self)
|
|
4 |
def build(self, env, jobs):
|
|
5 |
env.run(['python', os.path.join(env.srcdir, 'scons.py'),
|
93
|
6 |
'-j', str(jobs), '--prefix=' + env.installdir, 'install'],
|
87
|
7 |
directory=env.srcdir)
|
|
8 |
def clean(self, env):
|
|
9 |
env.run(['python', os.path.join(env.srcdir, 'scons.py'), '-c'],
|
|
10 |
directory=env.srcdir)
|
|
11 |
def check_version(self, env):
|
93
|
12 |
return True</code><attribute name="v_LD_LIBRARY" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="objdir" value="no" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build></module><module name="ns-3-dev"><source type="mercurial"><attribute name="module_directory" value="" /><attribute name="url" value="http://code.nsnam.org/ns-3-dev" /><attribute name="revision" value="tip" /></source><build type="waf"><attribute name="configure_arguments" value="--with-nsc=$INSTALLDIR --with-nsclick=$INSTALLDIR --with-openflow=$INSTALLDIR" /><attribute name="v_LD_LIBRARY" value="" /><attribute name="LDFLAGS" value="" /><attribute name="CC" value="" /><attribute name="build_arguments" value="" /><attribute name="pre_installation" value="" /><attribute name="patch" value="" /><attribute name="CXXFLAGS" value="" /><attribute name="CXX" value="" /><attribute name="supported_os" value="" /><attribute name="v_PATH" value="" /><attribute name="CFLAGS" value="" /><attribute name="objdir" value="yes" /><attribute name="post_installation" value="" /><attribute name="v_PKG_CONFIG" value="" /></build><depends_on name="nsc" optional="True" /><depends_on name="pybindgen" optional="True" /><depends_on name="click-1.8.0" optional="True" /><depends_on name="openflow-ns3" optional="True" /></module></modules></configuration> |