From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/pingus/files/pingus-gta012.sh | 4 +++ recipes/pingus/files/pingus.desktop | 11 ++++++++ recipes/pingus/files/pingus.png | Bin 0 -> 3490 bytes recipes/pingus/files/sconstruct.diff | 49 ++++++++++++++++++++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 recipes/pingus/files/pingus-gta012.sh create mode 100644 recipes/pingus/files/pingus.desktop create mode 100644 recipes/pingus/files/pingus.png create mode 100644 recipes/pingus/files/sconstruct.diff (limited to 'recipes/pingus/files') diff --git a/recipes/pingus/files/pingus-gta012.sh b/recipes/pingus/files/pingus-gta012.sh new file mode 100644 index 0000000000..70346c5646 --- /dev/null +++ b/recipes/pingus/files/pingus-gta012.sh @@ -0,0 +1,4 @@ +#!/bin/sh +xrandr -o 3 +pingus.bin --fast-mode -g 640x480 --disable-music --disable-sound --fullscreen +xrandr -o 0 diff --git a/recipes/pingus/files/pingus.desktop b/recipes/pingus/files/pingus.desktop new file mode 100644 index 0000000000..2c70038ba6 --- /dev/null +++ b/recipes/pingus/files/pingus.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Type=Application +Version=0.7.2 +Name=Pingus +GenericName=Lemmings Clone +Comment=Pingus is a free Lemmings-like game +Icon=pingus +Exec=pingus -f -g 640x480 -m -s +Terminal=false +StartupNotify=false +Categories=Application;Games;ArcadeGame; diff --git a/recipes/pingus/files/pingus.png b/recipes/pingus/files/pingus.png new file mode 100644 index 0000000000..020b0ebb2b Binary files /dev/null and b/recipes/pingus/files/pingus.png differ diff --git a/recipes/pingus/files/sconstruct.diff b/recipes/pingus/files/sconstruct.diff new file mode 100644 index 0000000000..0ca3c3675f --- /dev/null +++ b/recipes/pingus/files/sconstruct.diff @@ -0,0 +1,49 @@ +--- a/SConstruct 2007-10-30 10:23:37.000000000 +0100 ++++ b/SConstruct 2008-09-30 01:38:17.000000000 +0200 +@@ -334,8 +334,8 @@ + + def DefineOptions(filename, args): + opts = Options(filename, args) +- opts.Add('CC', 'C Compiler', 'gcc') +- opts.Add('CXX', 'C++ Compiler', 'g++') ++ opts.Add('CC', 'C Compiler', os.environ['CC']) ++ opts.Add('CXX', 'C++ Compiler', os.environ['CXX']) + # opts.Add('debug', 'Build with debugging options', 0) + # opts.Add('profile', 'Build with profiling support', 0) + +@@ -526,14 +526,15 @@ + ARGUMENTS = {} + + if not ('configure' in COMMAND_LINE_TARGETS): +- if ARGUMENTS != {}: +- print "Error: You must not supply arguments to the compile step." +- print "Use:" +- print "" +- print " scons configure [ARGUMENTS]..." +- print "" +- print "If you want to change the build configuration." +- os.sys.exit(1) ++# if ARGUMENTS != {}: ++# print "Error: You must not supply arguments to the compile step." ++# print ARGUMENTS ++# print "Use:" ++# print "" ++# print " scons configure [ARGUMENTS]..." ++# print "" ++# print "If you want to change the build configuration." ++# os.sys.exit(1) + + opts = DefineOptions("config.py", {}) + env = Environment(options = opts) +@@ -541,6 +542,11 @@ + + opts.Update(env) + env['CPPPATH'] += ['.', 'src/'] ++ env['ENV']['CXX'] = os.environ['CXX'] ++ env['ENV']['CC'] = os.environ['CC'] ++ env['ENV']['CPP'] = os.environ['CPP'] ++ env['ENV']['RANLIB'] = os.environ['RANLIB'] ++ env['ENV']['PATH'] = os.environ['PATH'] + Default(env.Program('pingus', pingus_sources + env['optional_sources'])) + Clean('pingus', ['config.py', 'config.h']) + -- cgit v1.2.3