aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Heinold <heinold@inf.fu-berlin.de>2010-01-20 02:00:32 +0100
committerHenning Heinold <heinold@inf.fu-berlin.de>2010-01-20 02:11:05 +0100
commit54fd63592417d07ad480475b7743f40d09f55790 (patch)
tree64bd63718fcb58ce7400c5e41670771e89c588e7
parent89f3a006a15986d045cddc0f405ecac78d11bb9a (diff)
downloadopenembedded-54fd63592417d07ad480475b7743f40d09f55790.tar.gz
gnome-games: set libsdl-mixer as dependency and delete sdl.m4 macro only when exist
* bump PR
-rw-r--r--recipes/gnome/gnome-games_2.24.0.bb8
1 files changed, 5 insertions, 3 deletions
diff --git a/recipes/gnome/gnome-games_2.24.0.bb b/recipes/gnome/gnome-games_2.24.0.bb
index 4b3fd2077b..971b83e6a7 100644
--- a/recipes/gnome/gnome-games_2.24.0.bb
+++ b/recipes/gnome/gnome-games_2.24.0.bb
@@ -1,9 +1,9 @@
LICENSE = "GPL"
-DEPENDS = " guile libggz ggz-client-libs python-pygtk gtk+ libgnome libgnomeui librsvg gnome-vfs gconf libglade gnome-common gnome-python-desktop gnome-python gstreamer virtual/libsdl"
+DEPENDS = " guile libggz ggz-client-libs python-pygtk gtk+ libgnome libgnomeui librsvg gnome-vfs gconf libglade gnome-common gnome-python-desktop gnome-python gstreamer virtual/libsdl libsdl-mixer"
inherit gnome distutils-base gconf
-PR = "r6"
+PR = "r7"
SRC_URI += "file://ggz-unbreak-m4.patch;patch=1 \
"
@@ -18,7 +18,9 @@ EXTRA_OECONF = "--with-libggz-includes=${STAGING_INCDIR} \
# disable help dir and crappy old sdl-macro
do_configure_prepend() {
- rm m4/sdl.m4
+ if [ -e m4/sdl.m4 ]; then
+ rm m4/sdl.m4
+ fi
for i in $(find ${S} -name "Makefile.am") ; do
sed -i -e s:help::g $i
done