[Scummvm-cvs-logs] scummvm master -> 08d641a0be33412e8e7b23baf8ff1d595ed5227a

wjp wjp at usecode.org
Tue Sep 11 19:17:51 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
08d641a0be CONFIGURE: Add base engine descriptions to more engines


Commit: 08d641a0be33412e8e7b23baf8ff1d595ed5227a
    https://github.com/scummvm/scummvm/commit/08d641a0be33412e8e7b23baf8ff1d595ed5227a
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2012-09-11T10:16:51-07:00

Commit Message:
CONFIGURE: Add base engine descriptions to more engines

Only SCUMM and SAGA had such a description previously.

Changed paths:
    configure
    engines/configure.engines



diff --git a/configure b/configure
index 8dadd68..4281cbc 100755
--- a/configure
+++ b/configure
@@ -750,6 +750,7 @@ get_subengines_build_string() {
 }
 
 # Engine specific build strings
+# TODO: Clean this up (and specify these base strings in configure.engines?)
 get_scumm_build_string() {
 	if test `get_engine_build $1` != no ; then
 		if test $2 != no -a "$3" != wip ; then
@@ -768,6 +769,52 @@ get_saga_build_string() {
 	fi
 }
 
+get_agos_build_string() {
+	if test `get_engine_build $1` != no ; then
+		if test $2 != no -a "$3" != wip; then
+			base="[AGOS 1 games]"
+		fi
+		get_subengines_build_string $1 $2 "$base" $3
+	fi
+}
+
+get_groovie_build_string() {
+	if test `get_engine_build $1` != no ; then
+		if test $2 != no -a "$3" != wip; then
+			base="[7th Guest]"
+		fi
+		get_subengines_build_string $1 $2 "$base" $3
+	fi
+}
+
+get_kyra_build_string() {
+	if test `get_engine_build $1` != no ; then
+		if test $2 != no -a "$3" != wip; then
+			base="[Legend of Kyrandia 1-3]"
+		fi
+		get_subengines_build_string $1 $2 "$base" $3
+	fi
+}
+
+get_sci_build_string() {
+	if test `get_engine_build $1` != no ; then
+		if test $2 != no -a "$3" != wip; then
+			base="[SCI 0-1.1 games]"
+		fi
+		get_subengines_build_string $1 $2 "$base" $3
+	fi
+}
+
+get_mohawk_build_string() {
+	if test `get_engine_build $1` != no ; then
+		if test $2 != no -a "$3" != wip; then
+			base="[Living Books]"
+		fi
+		get_subengines_build_string $1 $2 "$base" $3
+	fi
+}
+
+
 #
 # Greet user
 #
diff --git a/engines/configure.engines b/engines/configure.engines
index 81cf176..f2feb55 100644
--- a/engines/configure.engines
+++ b/engines/configure.engines
@@ -16,7 +16,7 @@ add_engine gob "Gobli*ns" yes
 add_engine groovie "Groovie" yes "groovie2"
 add_engine groovie2 "Groovie 2 games" no
 add_engine hugo "Hugo Trilogy" yes
-add_engine kyra "Legend of Kyrandia" yes "lol eob"
+add_engine kyra "Kyra" yes "lol eob"
 add_engine lol "Lands of Lore" yes
 add_engine eob "Eye of the Beholder" no
 add_engine lastexpress "The Last Express" no






More information about the Scummvm-git-logs mailing list