From 01fd94b639c82d3c1c571c3b6840fec37aea5e7a Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Wed, 13 Jul 2005 09:22:14 +0000 Subject: opie-collections: repair gathering OPIE_MORE_RDEPENDS depending on ROOT_FLASH_SIZE --- packages/meta/opie-collections.inc | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'packages') diff --git a/packages/meta/opie-collections.inc b/packages/meta/opie-collections.inc index c2d15dee58..60cc77356a 100644 --- a/packages/meta/opie-collections.inc +++ b/packages/meta/opie-collections.inc @@ -93,14 +93,10 @@ def opie_more_depends(d): else: return " " def opie_more_rdepends(d): - import bb - root_flash_size = int( bb.data.getVar( "ROOT_FLASH_SIZE", d, True ) or "16" ) - if root_flash_size >= 24: return bb.data.getVar( "OPIE_RDEPENDS_24", d, True ) - else: return " " + import bb + root_flash_size = int( bb.data.getVar( "ROOT_FLASH_SIZE", d, True ) or "16" ) + if root_flash_size >= 24: return bb.data.getVar( "OPIE_RDEPENDS_24", d, True ) + else: return " " OPIE_MORE_DEPENDS := "${@opie_more_depends(d)}" - - - - -# # OPIE_MORE_RDEPENDS := "${@opie_more_rdepends(d)}" +OPIE_MORE_RDEPENDS := "${@opie_more_rdepends(d)}" -- cgit v1.2.3 From ce2d08e5aa1e9df9c062a6babc27cde35dd530d5 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Wed, 13 Jul 2005 13:26:37 +0000 Subject: mplayer-atty: re-enabled its ability to render subtitles and OSD --- packages/mplayer/mplayer-atty_1.1.5.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'packages') diff --git a/packages/mplayer/mplayer-atty_1.1.5.bb b/packages/mplayer/mplayer-atty_1.1.5.bb index 9afdab203b..1ee4a49936 100644 --- a/packages/mplayer/mplayer-atty_1.1.5.bb +++ b/packages/mplayer/mplayer-atty_1.1.5.bb @@ -2,11 +2,11 @@ DESCRIPTION = "Open Source multimedia player." SECTION = "opie/multimedia" PRIORITY = "optional" HOMEPAGE = "http://atty.jp/?Zaurus%2Fmplayer" -DEPENDS = "virtual/libsdl libmad libogg libvorbis zlib libpng jpeg" +DEPENDS = "virtual/libsdl freetype libmad libogg libvorbis zlib libpng jpeg" LICENSE = "GPL" RCONFLICTS = "mplayer" MAINTAINER = "Graeme Gregory " -PR = "r1" +PR = "r2" SRC_URI = "http://www.xora.org.uk/oe/mplayer-${PV}.tar.gz \ file://Makefile.patch;patch=1;pnum=0 \ @@ -65,6 +65,7 @@ EXTRA_OECONF = " \ --disable-ipp \ --disable-iwmmxt \ \ + --enable-freetype \ --with-extralibdir=${STAGING_LIBDIR} " EXTRA_OECONF_append_c7x0 = " --enable-w100" -- cgit v1.2.3