mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +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>
55 lines
1.8 KiB
BlitzBasic
55 lines
1.8 KiB
BlitzBasic
SUMMARY = "gnome system tools backends"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS = "dbus dbus-glib glib-2.0 polkit"
|
|
|
|
inherit gnome pkgconfig update-rc.d gettext
|
|
|
|
SRC_URI[archive.md5sum] = "edae148b31342aecae035051adc70c74"
|
|
SRC_URI[archive.sha256sum] = "1dbe5177df46a9c7250735e05e77129fe7ec04840771accfa87690111ca2c670"
|
|
|
|
SRC_URI += " \
|
|
file://system-tools-backends \
|
|
"
|
|
|
|
# This needs to move to meta-angstrom
|
|
SRC_URI_append_angstrom = " \
|
|
file://add-angstrom-distro.patch \
|
|
"
|
|
|
|
EXTRA_OECONF = " --with-net-dbus=${libdir}/perl5 "
|
|
|
|
do_configure() {
|
|
rm missing || true
|
|
automake --add-missing
|
|
sed -i -e 's:CC=$(CC):CC="$(CC)":g' ${S}/Net-DBus/Makefile.am
|
|
sed -i -e 's:CC=$(CC):CC="$(CC)":g' ${S}/Net-DBus/Makefile.in
|
|
libtoolize --force --install
|
|
aclocal
|
|
gnu-configize
|
|
oe_runconf
|
|
cp ${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool ${S}
|
|
}
|
|
|
|
do_install_append () {
|
|
install -d ${D}/${sysconfdir}/init.d
|
|
install -m 0755 ${WORKDIR}/system-tools-backends ${D}/${sysconfdir}/init.d/
|
|
}
|
|
|
|
INITSCRIPT_NAME = "system-tools-backends"
|
|
INITSCRIPT_PARAMS = "start 50 2 3 4 5 . stop 70 1 ."
|
|
|
|
# Shadow added so there is a full adduser/deluser
|
|
# (Gnome images tend to pull in shadow anyway)
|
|
RDEPENDS_${PN} = "shadow"
|
|
|
|
FILES_${PN} += " ${sysconfdir}/dbus-1/system.d"
|
|
FILES_${PN} += " ${libdir}/pkgconfig"
|
|
FILES_${PN} += " ${datadir}/dbus-1/system-services"
|
|
FILES_${PN} += " ${datadir}/system-tools-backends-2.0/files"
|
|
FILES_${PN} += " ${datadir}/system-tools-backends-2.0/scripts"
|
|
FILES_${PN} += " ${datadir}/polkit*"
|
|
|
|
PNBLACKLIST[system-tools-backends] ?= "does not build with distroless qemuarm as reported in 'State of bitbake world' thread, nobody volunteered to fix them - the recipe will be removed on 2017-09-01 unless the issue is fixed"
|