[Python-ogre-commit] SF.net SVN: python-ogre: [396] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2007-09-28 14:45:17
|
Revision: 396 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=396&view=rev Author: andy_miller Date: 2007-09-28 07:45:20 -0700 (Fri, 28 Sep 2007) Log Message: ----------- Linux updates Modified Paths: -------------- trunk/python-ogre/code_generators/plib/generate_code.py trunk/python-ogre/scripts/06-GenerateCode.sh trunk/python-ogre/scripts/07-BuildModules.sh trunk/python-ogre/scripts/master.sh Modified: trunk/python-ogre/code_generators/plib/generate_code.py =================================================================== --- trunk/python-ogre/code_generators/plib/generate_code.py 2007-09-28 01:48:44 UTC (rev 395) +++ trunk/python-ogre/code_generators/plib/generate_code.py 2007-09-28 14:45:20 UTC (rev 396) @@ -93,7 +93,9 @@ ,'::ssgTexture::getFilename' ,'::ssgVtxArray::getIndex' ## returns a short ,'::ssgLoaderOptions::make_path' - ,'::ssgBase::copy_from' + ,'::ssgBase::copy_from' + + ,'::ulLinkedList::unlinkNode' @@ -110,6 +112,8 @@ ,'::ulGetError' ,'::ulMakePath' ,'::ulOpenDir' + ,'::ulCloseDir' + ,'::ulReadDir' ,'::ulStrDup' ,'::ssgSavePOV' ,'::ssgConvertTexture' Modified: trunk/python-ogre/scripts/06-GenerateCode.sh =================================================================== --- trunk/python-ogre/scripts/06-GenerateCode.sh 2007-09-28 01:48:44 UTC (rev 395) +++ trunk/python-ogre/scripts/06-GenerateCode.sh 2007-09-28 14:45:20 UTC (rev 396) @@ -5,35 +5,59 @@ source ./config.sh echo "=== generating code ===" +echo "=== generating code ===" >> $INSTALL_DIR/log.out cd python-ogre/code_generators echo ' -- creating OGRE code' +echo ' -- creating OGRE code' >> $INSTALL_DIR/log.out cd ogre python generate_code.py > build.out cd .. echo ' -- creating OGRErefapp code' +echo ' -- creating OGRErefapp code'>> $INSTALL_DIR/log.out cd ogrerefapp python generate_code.py > build.out cd .. echo ' -- creating quickgui code' +echo ' -- creating quickgui code'>> $INSTALL_DIR/log.out cd quickgui python generate_code.py > build.out cd .. echo ' -- creating OIS code' +echo ' -- creating OIS code'>> $INSTALL_DIR/log.out cd ois python generate_code.py > build.out cd .. echo ' -- creating CEGUI code' +echo ' -- creating CEGUI code'>> $INSTALL_DIR/log.out cd cegui python generate_code.py > build.out cd .. echo ' -- creating OgreAL code' +echo ' -- creating OgreAL code'>> $INSTALL_DIR/log.out cd ogreal python generate_code.py > build.out cd .. -#echo ' -- creating OGREode code' -#cd ogreode -#python generate_code.py > build.out -#cd .. +echo ' -- creating OGREode code' +echo ' -- creating OGREode code'>> $INSTALL_DIR/log.out +cd ogreode +python generate_code.py > build.out +cd .. +echo ' -- creating OpCode code' +echo ' -- creating OpCode code'>> $INSTALL_DIR/log.out +cd opcode +python generate_code.py > build.out +cd .. +echo ' -- creating PLIB code' +echo ' -- creating PLIB code'>> $INSTALL_DIR/log.out +cd plib +python generate_code.py > build.out +cd .. +echo ' -- creating Theora code' +echo ' -- creating Theora code'>> $INSTALL_DIR/log.out +cd theora +python generate_code.py > build.out +cd .. + #echo ' -- creating OGREnewt code' #cd ogrenewt #python generate_code.py > build.out @@ -44,3 +68,5 @@ cd $INSTALL_DIR echo echo "=== done building code ===" +echo "=== done building code ===">> $INSTALL_DIR/log.out + Modified: trunk/python-ogre/scripts/07-BuildModules.sh =================================================================== --- trunk/python-ogre/scripts/07-BuildModules.sh 2007-09-28 01:48:44 UTC (rev 395) +++ trunk/python-ogre/scripts/07-BuildModules.sh 2007-09-28 14:45:20 UTC (rev 396) @@ -8,7 +8,8 @@ # compile code # cd python-ogre -scons PROJECTS=ogre,ois,quickgui,cegui,ogrerefapp -python setup.py install +scons PROJECTS=ogre,ois,quickgui,cegui,plib,ogreode +#,ogrerefapp +python setup.py install --prefix=$PREFIX cd .. Modified: trunk/python-ogre/scripts/master.sh =================================================================== --- trunk/python-ogre/scripts/master.sh 2007-09-28 01:48:44 UTC (rev 395) +++ trunk/python-ogre/scripts/master.sh 2007-09-28 14:45:20 UTC (rev 396) @@ -1,13 +1,12 @@ #!/bin/bash # Part of the Python-Ogre installation - # Run them all :) -source ./00-PreReqs.sh -source ./01-RetrieveSource.sh -source ./02-ExtractAndPatch.sh -source ./03-BuildBaseLibs.sh -source ./04-BuildAdditionalLibs.sh -source ./05-BuildTools.sh +#source ./00-PreReqs.sh +#source ./01-RetrieveSource.sh +#source ./02-ExtractAndPatch.sh +#source ./03-BuildBaseLibs.sh +#source ./05-BuildTools.sh +#source ./04-BuildAdditionalLibs.sh source ./06-GenerateCode.sh source ./07-BuildModules.sh This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |