mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +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>
66 lines
2.5 KiB
BlitzBasic
66 lines
2.5 KiB
BlitzBasic
SUMMARY = "PackageKit package management abstraction"
|
|
SECTION = "libs"
|
|
LICENSE = "GPL-2.0+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
DEPENDS = "gtk+ python polkit dbus dbus-glib glib-2.0 sqlite3 opkg intltool intltool-native"
|
|
RDEPENDS_${PN} = "opkg bash"
|
|
|
|
inherit gnome pythonnative
|
|
|
|
SRC_URI = "http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${PV}.tar.bz2;name=archive \
|
|
file://configurefix.patch \
|
|
file://opkgfixes.patch \
|
|
file://0001-Don-t-call-deprecated-glib-functions-and-use-the-new.patch \
|
|
"
|
|
|
|
SRC_URI[archive.md5sum] = "33a3127e9ed41e26671786aee9fe56ff"
|
|
SRC_URI[archive.sha256sum] = "8dae41493dfb011442746d252b3435bf3204e17bf7c47e396f90fbd215260e14"
|
|
|
|
S = "${WORKDIR}/PackageKit-${PV}"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[service-packs] = "--enable-service-packs,--disable-service-packs,libarchive"
|
|
|
|
EXTRA_OECONF = "--with-security-framework=dummy \
|
|
--with-default-backend=opkg \
|
|
--enable-opkg \
|
|
--disable-tests \
|
|
--disable-ruck \
|
|
--disable-qt \
|
|
--disable-gstreamer-plugin \
|
|
--disable-local \
|
|
--disable-networkmanager \
|
|
--disable-device-rebind \
|
|
ac_cv_path_XMLTO=no \
|
|
"
|
|
|
|
#do_configure_prepend() {
|
|
# mkdir -p m4
|
|
# echo "EXTRA_DIST=" > gtk-doc.make
|
|
#}
|
|
|
|
do_configure_append() {
|
|
for i in $(find . -name Makefile) ; do
|
|
sed -i -e s:${STAGING_DIR_NATIVE}::g \
|
|
-e s:/usr/bin/intltool-merge:${STAGING_BINDIR_NATIVE}/intltool-merge:g \
|
|
$i
|
|
done
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-website"
|
|
FILES_${PN}-website = "${datadir}/PackageKit/website"
|
|
|
|
PACKAGES =+ "${PN}-python"
|
|
FILES_${PN}-python = "${libdir}/python*"
|
|
|
|
PACKAGES =+ "${PN}-gtkmodule"
|
|
FILES_${PN}-gtkmodule = "${libdir}/gtk-2.0/*/*.so"
|
|
|
|
FILES_${PN} += "${libdir}/packagekit-backend/*.so ${libdir}/pm-utils ${datadir}/dbus-1/system-services/ ${datadir}/PolicyKit ${datadir}/PackageKit"
|
|
FILES_${PN}-dbg += "${libdir}/packagekit-backend/.debug/*.so ${libdir}/gtk-2.0/*/.debug"
|
|
FILES_${PN}-dev += "${libdir}/packagekit-backend/*.la ${libdir}/gtk-2.0/*/*.la"
|
|
FILES_${PN}-staticdev += "${libdir}/packagekit-backend/*.a ${libdir}/gtk-2.0/*/*.a"
|
|
|
|
# PackageKit-0.5.6/backends/opkg/pk-backend-opkg.c:31:26: fatal error: libopkg/opkg.h: No such file or directory
|
|
PNBLACKLIST[packagekit] ?= "BROKEN: depends on old deprecated libopkg which is currently disabled and will be removed soon - the recipe will be removed on 2017-09-01 unless the issue is fixed"
|