mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
a45830a39b
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
86 lines
2.8 KiB
BlitzBasic
86 lines
2.8 KiB
BlitzBasic
DESCRIPTION = "XBMC Media Center"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=6eb631b6da7fdb01508a80213ffc35ff"
|
|
|
|
DEPENDS = "libusb1 libcec libplist expat yajl gperf-native libxmu fribidi mpeg2dec ffmpeg samba fontconfig curl python libass libmodplug libmicrohttpd wavpack libmms cmake-native libsdl-image libsdl-mixer virtual/egl mysql5 sqlite3 libmms faad2 libcdio libpcre boost lzo enca avahi libsamplerate0 libxinerama libxrandr libxtst bzip2 virtual/libsdl jasper zip-native zlib libtinyxml"
|
|
#require recipes/egl/egl.inc
|
|
|
|
SRCREV = "82388d55dae79cbb2e486e307e23202e76a43efa"
|
|
|
|
PV = "11.0"
|
|
PR = "r14"
|
|
PR_append = "+gitr${SRCPV}"
|
|
SRC_URI = "git://github.com/xbmc/xbmc.git;branch=eden;protocol=git \
|
|
file://0001-configure-don-t-run-python-distutils-to-find-STAGING.patch \
|
|
file://0002-Revert-fixed-ios-Add-memory-barriers-to-atomic-Add-S.patch \
|
|
file://0003-Revert-fixed-ios-Add-memory-barriers-to-cas-assembly.patch \
|
|
file://configure.in-Avoid-running-code.patch \
|
|
"
|
|
|
|
inherit autotools gettext python-dir
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
CACHED_CONFIGUREVARS += " \
|
|
ac_cv_path_PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" \
|
|
"
|
|
|
|
EXTRA_OECONF = " \
|
|
--disable-rpath \
|
|
--enable-gles \
|
|
--enable-libusb \
|
|
--enable-airplay \
|
|
--disable-optical-drive \
|
|
--enable-external-libraries \
|
|
"
|
|
|
|
FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations -fomit-frame-pointer -O4 -ffast-math"
|
|
BUILD_OPTIMIZATION = "${FULL_OPTIMIZATION}"
|
|
|
|
EXTRA_OECONF_append_armv7a = "--cpu=cortex-a8"
|
|
|
|
# for python modules
|
|
export HOST_SYS
|
|
export BUILD_SYS
|
|
export STAGING_LIBDIR
|
|
export STAGING_INCDIR
|
|
export PYTHON_DIR
|
|
|
|
do_configure() {
|
|
sh bootstrap
|
|
oe_runconf
|
|
}
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
do_compile_prepend() {
|
|
for i in $(find . -name "Makefile") ; do
|
|
sed -i -e 's:I/usr/include:I${STAGING_INCDIR}:g' $i
|
|
done
|
|
|
|
for i in $(find . -name "*.mak*" -o -name "Makefile") ; do
|
|
sed -i -e 's:I/usr/include:I${STAGING_INCDIR}:g' -e 's:-rpath \$(libdir):-rpath ${libdir}:g' $i
|
|
done
|
|
}
|
|
|
|
INSANE_SKIP_${PN} = "rpaths"
|
|
|
|
# on ARM architectures xbmc will use GLES which will make the regular wrapper fail, so start it directly
|
|
do_install_append_arm() {
|
|
sed -i -e 's:Exec=xbmc:Exec=${libdir}/xbmc/xbmc.bin:g' ${D}${datadir}/applications/xbmc.desktop
|
|
}
|
|
|
|
FILES_${PN} += "${datadir}/xsessions ${datadir}/icons"
|
|
FILES_${PN}-dbg += "${libdir}/xbmc/.debug ${libdir}/xbmc/*/.debug ${libdir}/xbmc/*/*/.debug ${libdir}/xbmc/*/*/*/.debug"
|
|
|
|
# xbmc uses some kind of dlopen() method for libcec so we need to add it manually
|
|
RRECOMMENDS_${PN}_append = " libcec \
|
|
python \
|
|
python-lang \
|
|
python-re \
|
|
python-netclient \
|
|
libcurl \
|
|
"
|
|
RRECOMMENDS_${PN}_append_libc-glibc = " glibc-charmap-ibm850 glibc-gconv-ibm850"
|