mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
cdb428e7c4
* based on discussion in pndeprecated thread: https://patchwork.openembedded.org/patch/137573/ update the messages to warn possible users that the recipe will be removed before the end of the next development cycle (before Yocto 2.4 is released). * updated with: sed -i 's/^\(PNBLACKLIST.*".*\)"/\1 - the recipe will be removed on 2017-09-01 unless the issue is fixed"/g' `git grep PNBLACKLIST | sed 's/:.*//g' | sort -u | xargs` * then noticed couple recipes being blacklisted only based on DISTRO_FEATURES, so removed those: meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb meta-oe/recipes-connectivity/bluez/bluez-hcidump_2.5.bb meta-oe/recipes-connectivity/bluez/bluez4_4.101.bb meta-oe/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb meta-oe/recipes-navigation/gypsy/gypsy.inc meta-oe/recipes-navigation/navit/navit.inc meta-oe/recipes-support/opensync/libsyncml_0.5.4.bb * if it isn't fixed by this date, it's fair game to be removed whenever someone gets around to i Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
58 lines
1.7 KiB
BlitzBasic
58 lines
1.7 KiB
BlitzBasic
SUMMARY = "Kodi Media Center PVR plugins"
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://src/client.cpp;md5=c8f6b73c5bc1048a3d6506700a7a91d2"
|
|
|
|
DEPENDS = " \
|
|
zip-native \
|
|
p8platform \
|
|
kodi-platform \
|
|
"
|
|
|
|
SRCREV_pvrhts = "7f75b70527922aef953123ff97ebaa22d9fb7cb4"
|
|
|
|
SRCREV_FORMAT = "pvrhts"
|
|
|
|
PV = "2.2.13+gitr${SRCPV}"
|
|
SRC_URI = "git://github.com/kodi-pvr/pvr.hts.git;branch=Jarvis;destsuffix=pvr.hts;name=pvrhts \
|
|
file://0001-Update-to-p8-platform.patch \
|
|
"
|
|
|
|
inherit cmake pkgconfig gettext
|
|
|
|
S = "${WORKDIR}/pvr.hts"
|
|
|
|
EXTRA_OECMAKE = " \
|
|
-DADDONS_TO_BUILD=pvr.hts \
|
|
-DADDON_SRC_PREFIX=${WORKDIR}/git \
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
|
-DCMAKE_INSTALL_PREFIX=${datadir}/kodi/addons \
|
|
-DCMAKE_MODULE_PATH=${STAGING_DIR_HOST}${libdir}/kodi \
|
|
-DCMAKE_PREFIX_PATH=${STAGING_DIR_HOST}${prefix} \
|
|
-DPACKAGE_ZIP=1 \
|
|
"
|
|
|
|
do_compile_prepend() {
|
|
sed -i -e 's:I/usr/include:I${STAGING_INCDIR}:g' \
|
|
-e 's:-pipe:${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS} -pipe:g' \
|
|
${B}/CMakeFiles/*/flags.make
|
|
sed -i -e 's:-pipe:${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS} -pipe:g'\
|
|
${B}/CMakeFiles/*/link.txt
|
|
}
|
|
|
|
# Make zip package for manual installation
|
|
do_install_append() {
|
|
install -d ${D}${datadir}/kodi/addons/packages/
|
|
( cd ${D}${datadir}/kodi/addons
|
|
zip -r ${D}${datadir}/kodi/addons/packages/pvr.hts-${PV}.zip pvr.hts -x '*.debug*' )
|
|
}
|
|
|
|
# Doesn't get added automagically, dlopen()?
|
|
RDEPENDS_${PN} = "libkodiplatform"
|
|
|
|
INSANE_SKIP_${PN} = "dev-so"
|
|
FILES_${PN} += "${datadir}/kodi"
|
|
FILES_${PN}-dbg += "${datadir}/kodi/addons/*/.debug/"
|
|
|
|
PNBLACKLIST[kodi-addon-pvr-hts] ?= "Depends on blacklisted kodi - the recipe will be removed on 2017-09-01 unless the issue is fixed"
|