diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2010-01-20 02:00:32 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2010-01-20 02:11:05 +0100 |
commit | 54fd63592417d07ad480475b7743f40d09f55790 (patch) | |
tree | 64bd63718fcb58ce7400c5e41670771e89c588e7 /recipes/gnome | |
parent | 89f3a006a15986d045cddc0f405ecac78d11bb9a (diff) |
gnome-games: set libsdl-mixer as dependency and delete sdl.m4 macro only when exist
* bump PR
Diffstat (limited to 'recipes/gnome')
-rw-r--r-- | recipes/gnome/gnome-games_2.24.0.bb | 8 |
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 |