[Scummvm-cvs-logs] SF.net SVN: scummvm: [27395] scummvm/branches/branch-0-10-0/backends/ platform/gp32

djwillis at users.sourceforge.net djwillis at users.sourceforge.net
Wed Jun 13 23:07:16 CEST 2007


Revision: 27395
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27395&view=rev
Author:   djwillis
Date:     2007-06-13 14:07:15 -0700 (Wed, 13 Jun 2007)

Log Message:
-----------
Add some crude shell scripts used to speed up GP32 builds. (branch 0.10.0)

Added Paths:
-----------
    scummvm/branches/branch-0-10-0/backends/platform/gp32/build/
    scummvm/branches/branch-0-10-0/backends/platform/gp32/build/build.sh
    scummvm/branches/branch-0-10-0/backends/platform/gp32/build/bundle.sh
    scummvm/branches/branch-0-10-0/backends/platform/gp32/build/clean.sh

Added: scummvm/branches/branch-0-10-0/backends/platform/gp32/build/build.sh
===================================================================
--- scummvm/branches/branch-0-10-0/backends/platform/gp32/build/build.sh	                        (rev 0)
+++ scummvm/branches/branch-0-10-0/backends/platform/gp32/build/build.sh	2007-06-13 21:07:15 UTC (rev 27395)
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+echo Quick script to make building all the time less painful.
+
+# Set the paths up here to support the build.
+
+export PATH=/opt/devkitARM/bin:$PATH
+export CXXFLAGS=-march=armv4t
+export LDFLAGS=-static
+
+echo Copy Makefile upto the root of the source tree.
+cp -f Makefile ../../../../Makefile
+
+cd ../../../..
+
+echo Building ScummVM for GP2X.
+make
+
+echo Build for GP32 - complete - Please check build logs.


Property changes on: scummvm/branches/branch-0-10-0/backends/platform/gp32/build/build.sh
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:keywords
   + Date Rev Author URL Id
Name: svn:eol-style
   + LF

Added: scummvm/branches/branch-0-10-0/backends/platform/gp32/build/bundle.sh
===================================================================
--- scummvm/branches/branch-0-10-0/backends/platform/gp32/build/bundle.sh	                        (rev 0)
+++ scummvm/branches/branch-0-10-0/backends/platform/gp32/build/bundle.sh	2007-06-13 21:07:15 UTC (rev 27395)
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+echo Quick script to make building a distribution of the GP32 port more consistent.
+
+echo Collecting files.
+mkdir "scummvm-gp32-`date '+%Y-%m-%d'`"
+mkdir "scummvm-gp32-`date '+%Y-%m-%d'`/saves"
+
+echo "Please put your save games in this dir" >> "scummvm-gp32-`date '+%Y-%m-%d'`/saves/PUT_SAVES_IN_THIS_DIR"
+
+# No current port README.
+#cp ./README-GP32.html ./scummvm-gp32-`date '+%Y-%m-%d'`/
+#cp ./README-GP32 ./scummvm-gp32-`date '+%Y-%m-%d'`/
+
+cp ../../../../scummvm.fxe ./scummvm-gp32-`date '+%Y-%m-%d'`/
+cp ../../../../AUTHORS ./scummvm-gp32-`date '+%Y-%m-%d'`/
+cp ../../../../README ./scummvm-gp32-`date '+%Y-%m-%d'`/
+cp ../../../../COPYING ./scummvm-gp32-`date '+%Y-%m-%d'`/
+cp ../../../../COPYRIGHT ./scummvm-gp32-`date '+%Y-%m-%d'`/
+cp ../../../../NEWS ./scummvm-gp32-`date '+%Y-%m-%d'`/
+cp ../../../../dists/pred.dic ./scummvm-gp32-`date '+%Y-%m-%d'`/
+
+# GP32 does not support themes.
+#cp ../../../../gui/themes/modern.ini ./scummvm-gp32-`date '+%Y-%m-%d'`/
+#cp ../../../../gui/themes/modern.zip ./scummvm-gp32-`date '+%Y-%m-%d'`/
+
+
+echo Building ZIP bundle.
+if [ -f /usr/bin/zip ]
+	then
+		cd "scummvm-gp32-`date '+%Y-%m-%d'`"
+		zip "../scummvm-gp32-`date '+%Y-%m-%d'`.zip" * -r -9
+		echo You should have a "scummvm-gp32-`date '+%Y-%m-%d'`.zip" for the GP2X port ready to go.
+		echo All included files can also be found in ./"scummvm-gp32-`date '+%Y-%m-%d'`"
+	else  
+		echo - /usr/bin/zip not found, ZIP bundle not created.
+		echo All included files can also be found in ./"scummvm-gp32-`date '+%Y-%m-%d'`"
+		echo - Please use you preferred archive tool to bundle these files.
+fi


Property changes on: scummvm/branches/branch-0-10-0/backends/platform/gp32/build/bundle.sh
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:keywords
   + Date Rev Author URL Id
Name: svn:eol-style
   + LF

Added: scummvm/branches/branch-0-10-0/backends/platform/gp32/build/clean.sh
===================================================================
--- scummvm/branches/branch-0-10-0/backends/platform/gp32/build/clean.sh	                        (rev 0)
+++ scummvm/branches/branch-0-10-0/backends/platform/gp32/build/clean.sh	2007-06-13 21:07:15 UTC (rev 27395)
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+echo Quick script to make building all the time less painful.
+
+cd ../../../..
+
+echo Cleaning ScummVM for GP32.
+make clean


Property changes on: scummvm/branches/branch-0-10-0/backends/platform/gp32/build/clean.sh
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:mime-type
   + text/plain
Name: svn:keywords
   + Date Rev Author URL Id
Name: svn:eol-style
   + LF


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list