From: Marcin Juszkiewicz Date: Wed, 14 Sep 2005 14:01:58 +0000 (+0000) Subject: meta-sdl: added more stuff which use SDL and not SDL/QPE X-Git-Tag: Release-2010-05/1~9453^2~3524 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a9ba675fb64f976a1200af5a5d9cc33cb4f9aa4;p=openembedded.git meta-sdl: added more stuff which use SDL and not SDL/QPE - task-sdl-games contain all SDL games - task-sdl-emulators with all SDL emulators - task-sdl-libs contain libs without base libsdl (all libs depend on it already) --- diff --git a/packages/meta/meta-sdl.bb b/packages/meta/meta-sdl.bb index b10a56b88d..c631fa44c1 100644 --- a/packages/meta/meta-sdl.bb +++ b/packages/meta/meta-sdl.bb @@ -1,14 +1,26 @@ DESCRIPTION = "Meta-package for SDL" -PACKAGES = "sdl-libs sdl-base" +LICENSE = MIT +PACKAGES = "task-sdl-libs task-sdl-base task-sdl-games task-sdl-emulators" +PR = "r1" ALLOW_EMPTY = 1 -task-sdl-libs = "libsdl-qpe libsdl-gfx libsdl-image libsdl-mixer libsdl-ttf libsdl-net" +# no need to add libsdl as all libsdl-* already (r)depend on it +task-sdl-libs = "libsdl-gfx libsdl-image libsdl-mixer libsdl-ttf libsdl-net" task-sdl-base = "" -RDEPENDS_sdl-libs = "${task-sdl-libs}" +task-sdl-games = "abuse freedroid lbreakout2 openttd prboom quake1 rott supertux xmame" +task-sdl-emulators = "dgen-sdl e-uae frodo snes9x" + + +RDEPENDS_task-sdl-libs = "${task-sdl-libs}" DEPENDS += "${task-sdl-libs}" -RDEPENDS_sdl-base = "${task-sdl-base}" +RDEPENDS_task-sdl-base = "${task-sdl-base}" DEPENDS += "${task-sdl-base}" -LICENSE = MIT + +RDEPENDS_task-sdl-games = "${task-sdl-games}" +DEPENDS += "${task-sdl-games}" + +RDEPENDS_task-sdl-emulators = "${task-sdl-emulators}" +DEPENDS += "${task-sdl-emulators}"