xbmc: update to xbmc-d9d7d02

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-09-30 23:33:18 +02:00
parent 45f0e0a5c1
commit e14f263605
19 changed files with 14 additions and 2 deletions

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="xbmc-theme-Confluence"
PKG_VERSION="471c468"
PKG_VERSION="d9d7d02"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -40,6 +40,12 @@ else
XBMC_PULSEAUDIO="--disable-pulse"
fi
if [ "$CEC_SUPPORT" = yes ]; then
XBMC_CEC="--enable-libcec"
else
XBMC_CEC="--disable-libcec"
fi
if [ "$NONFREE_SUPPORT" = yes ]; then
XBMC_NONFREE="--enable-non-free"
else
@ -191,6 +197,7 @@ cd $PKG_BUILD
--disable-tegra \
--disable-profiling \
--enable-joystick \
$XBMC_CEC \
--enable-xrandr \
--disable-goom \
$XBMC_RSXS \

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="xbmc"
PKG_VERSION="471c468"
PKG_VERSION="d9d7d02"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"
@ -47,6 +47,11 @@ PKG_AUTORECONF="no"
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS dbus"
PKG_DEPENDS="$PKG_DEPENDS dbus"
if [ "$CEC_SUPPORT" = yes ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libcec"
PKG_DEPENDS="$PKG_DEPENDS libcec"
fi
if [ "$XBMC_SCR_RSXS" = yes ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libXt libXmu"
PKG_DEPENDS="$PKG_DEPENDS libXt libXmu"